@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
    --blue-950: #071b3a;
    --blue-900: #0a2c5f;
    --blue-800: #0f4fa8;
    --blue-700: #1f67cb;
    --blue-100: #ebf3ff;
    --blue-50: #f5f9ff;
    --orange-500: #f47c20;
    --orange-400: #ff9a46;
    --orange-100: #fff1e5;
    --green-500: #1e9957;
    --green-100: #e6f6ed;
    --amber-600: #b46419;
    --amber-100: #fff2e3;
    --ink-900: #101b2d;
    --ink-700: #516176;
    --ink-500: #758398;
    --line: rgba(12, 27, 55, 0.1);
    --surface: #ffffff;
    --surface-soft: #f4f8fd;
    --surface-alt: #eef4fb;
    --shadow-soft: 0 20px 50px rgba(7, 27, 58, 0.08);
    --shadow-strong: 0 32px 72px rgba(7, 27, 58, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 40px));
}

body:not(.dynamic-content-ready) .topbar,
body:not(.dynamic-content-ready) .brand-mark img,
body:not(.dynamic-content-ready) .site-nav .clean-menu,
body:not(.dynamic-content-ready) .footer-contact-panel,
body:not(.dynamic-content-ready) .site-footer .footer-shell,
body:not(.dynamic-content-ready) .site-footer .footer-bottom,
body:not(.dynamic-content-ready) [data-home-banner-slider],
body:not(.dynamic-content-ready) [data-home-stats],
body:not(.dynamic-content-ready) [data-client-logo-grid],
body:not(.dynamic-content-ready) [data-domain-price-row],
body:not(.dynamic-content-ready) [data-domain-price-list],
body:not(.dynamic-content-ready) [data-domain-extension-grid],
body:not(.dynamic-content-ready) [data-vps-app-panel-grid],
body:not(.dynamic-content-ready) [data-pricing-panel],
body:not(.dynamic-content-ready) [data-services-status-list],
body:not(.dynamic-content-ready) [data-promocode-list],
body:not(.dynamic-content-ready) [data-webpage-content],
body:not(.dynamic-content-ready) [data-webpage-footer-links],
body:not(.dynamic-content-ready) [data-webpage-side-list],
body:not(.dynamic-content-ready) [data-blog-list],
body:not(.dynamic-content-ready) [data-blog-detail] {
    opacity: 0;
}

body.dynamic-content-ready .topbar,
body.dynamic-content-ready .brand-mark img,
body.dynamic-content-ready .site-nav .clean-menu,
body.dynamic-content-ready .footer-contact-panel,
body.dynamic-content-ready .site-footer .footer-shell,
body.dynamic-content-ready .site-footer .footer-bottom,
body.dynamic-content-ready [data-home-banner-slider],
body.dynamic-content-ready [data-home-stats],
body.dynamic-content-ready [data-client-logo-grid],
body.dynamic-content-ready [data-domain-price-row],
body.dynamic-content-ready [data-domain-price-list],
body.dynamic-content-ready [data-domain-extension-grid],
body.dynamic-content-ready [data-vps-app-panel-grid],
body.dynamic-content-ready [data-pricing-panel],
body.dynamic-content-ready [data-services-status-list],
body.dynamic-content-ready [data-promocode-list],
body.dynamic-content-ready [data-webpage-content],
body.dynamic-content-ready [data-webpage-footer-links],
body.dynamic-content-ready [data-webpage-side-list],
body.dynamic-content-ready [data-blog-list],
body.dynamic-content-ready [data-blog-detail] {
    opacity: 1;
    transition: opacity 0.18s ease;
}

body.dynamic-content-loading:not(.dynamic-content-ready) {
    min-height: 100vh;
    background: var(--blue-950);
}

body.dynamic-content-loading:not(.dynamic-content-ready)::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99998;
    background:
        radial-gradient(circle at 26% 18%, rgba(244, 124, 32, 0.24), transparent 28%),
        linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

body.dynamic-content-loading:not(.dynamic-content-ready)::after {
    content: "";
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 99999;
    width: 64px;
    height: 64px;
    border: 3px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--orange-500);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: reseller99LoaderSpin 1s linear infinite;
}

@keyframes reseller99LoaderSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.maintenance-page {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(7, 27, 58, 0.9), rgba(15, 79, 168, 0.78)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
}

.maintenance-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
}

.maintenance-card {
    width: min(560px, 100%);
    padding: 42px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    box-shadow: 0 34px 84px rgba(0, 0, 0, 0.24);
}

.maintenance-card img {
    width: 178px;
    height: auto;
    margin-bottom: 22px;
}

.maintenance-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--orange-500);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.maintenance-card h1 {
    margin: 0;
    color: var(--blue-950);
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

.maintenance-card p {
    margin: 16px auto 0;
    max-width: 430px;
    color: var(--ink-700);
    line-height: 1.7;
}

.maintenance-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
}

.maintenance-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    padding: 0 16px;
    background: var(--blue-800);
    color: #fff;
    font-weight: 800;
}

@media (max-width: 980px) {
    html,
    body {
        overflow-x: hidden;
    }

    .concept-home .site-nav {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .cpanel-cloud-hero-grid,
    .cpanel-support-grid {
        grid-template-columns: 1fr;
    }

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

    .cpanel-support-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .home-banner-track,
    .home-banner-content {
        min-height: 260px;
    }

    .home-banner-content {
        width: min(1280px, calc(100% - 36px));
        padding: 28px 0 48px;
    }

    .home-banner-content h2 {
        font-size: 2rem;
    }

    .home-banner-content p {
        font-size: 0.94rem;
    }

    .home-banner-actions .btn {
        min-height: 40px;
        padding: 0 18px;
        font-size: 0.86rem;
    }

    .cpanel-cloud-hero {
        padding: 56px 0 48px;
    }

    .cpanel-cloud-hero-grid {
        gap: 28px;
    }

    .cpanel-cloud-copy h1 {
        font-size: 2.55rem;
    }

    .cpanel-cloud-console,
    .cpanel-plan-card,
    .cpanel-support-grid {
        padding: 22px;
    }

    .cpanel-console-grid {
        grid-template-columns: 1fr;
    }

    .cpanel-plan-card p {
        min-height: 0;
    }

    .cpanel-price strong {
        font-size: 2rem;
    }

    .cpanel-support-actions .btn {
        width: 100%;
    }
}

.clean-menu.is-menu-browsing .nav-link-group > a[aria-current="page"]::after,
.clean-menu.is-menu-browsing > li > a[aria-current="page"]::after {
    transform: scaleX(0) !important;
}

.clean-menu.is-menu-browsing .has-submenu.is-hovered > .nav-link-group > a::after,
.clean-menu.is-menu-browsing .has-submenu.is-open > .nav-link-group > a::after {
    transform: scaleX(1) !important;
}

@media (max-width: 640px) {
    .cpanel-cloud-page .container {
        width: calc(100vw - 40px) !important;
        max-width: 350px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cpanel-cloud-copy,
    .cpanel-cloud-console,
    .cpanel-cloud-copy p {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .cpanel-cloud-copy .concept-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cpanel-cloud-copy .concept-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .legal-page main[data-webpage-master] > .concept-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .concept-home .topbar {
        min-height: 42px;
    }

    .concept-home .topbar .container,
    .concept-home .topbar-inner {
        width: 100% !important;
        max-width: 100% !important;
    }

    .concept-home .topbar-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 42px;
        padding: 0 !important;
        text-align: center;
    }

    .concept-home .topbar-list:first-child,
    .concept-home .topbar .btn {
        display: none !important;
    }

    .concept-home .topbar-list:last-child {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        min-height: 42px;
        margin: 0;
        padding: 0 16px;
        gap: 8px;
    }

    .concept-home .topbar .customer-access-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        padding: 0 12px;
        border-radius: 7px;
        font-size: 0.76rem;
        line-height: 1;
        white-space: nowrap;
    }

    .concept-home .topbar .customer-combo-btn {
        display: inline-flex !important;
        min-height: 32px;
        font-size: 0.76rem;
    }

    .concept-home .topbar-list:last-child a:not(.btn) {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        color: #fff;
        font-size: 0.82rem;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--surface-soft);
    color: var(--ink-900);
    line-height: 1.7;
}

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

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.cpanel-cloud-page {
    background: #f4f8fd;
}

.cpanel-cloud-hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 78px;
    background:
        linear-gradient(135deg, rgba(7, 27, 58, 0.96), rgba(15, 79, 168, 0.86)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
    color: #fff;
}

.cpanel-cloud-hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -42% 52%;
    height: 360px;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.24), transparent 64%);
    pointer-events: none;
}

.cpanel-cloud-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
    gap: 42px;
    align-items: center;
}

.cpanel-cloud-copy h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.cpanel-cloud-copy p {
    max-width: 690px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.cpanel-cloud-console {
    border-radius: 8px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(12px);
}

.cpanel-console-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cpanel-console-head img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 10px;
}

.cpanel-console-head strong {
    font-size: 1.45rem;
    line-height: 1.2;
}

.cpanel-console-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.cpanel-console-grid span {
    min-height: 74px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    text-align: center;
}

.cpanel-cloud-pricing {
    background: #fff;
}

.cpanel-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.cpanel-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(12, 27, 55, 0.1);
    box-shadow: 0 18px 42px rgba(7, 27, 58, 0.08);
}

.cpanel-plan-card.featured {
    border-color: rgba(244, 124, 32, 0.38);
    box-shadow: 0 30px 70px rgba(244, 124, 32, 0.15);
}

.cpanel-plan-card h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: 1.5rem;
}

.cpanel-plan-card p {
    margin: 10px 0 0;
    min-height: 52px;
    color: var(--ink-700);
    line-height: 1.6;
}

.cpanel-price {
    margin: 22px 0;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cpanel-price strong,
.cpanel-price span,
.cpanel-price del {
    display: block;
}

.cpanel-price strong {
    color: var(--blue-950);
    font-size: clamp(1.95rem, 3vw, 2.45rem);
    line-height: 1;
}

.cpanel-price span {
    margin-top: 5px;
    color: var(--ink-700);
    font-weight: 700;
}

.cpanel-price del {
    margin-top: 8px;
    color: var(--ink-500);
    font-weight: 700;
}

.cpanel-plan-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpanel-plan-card li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    color: var(--ink-700);
    border-bottom: 1px solid rgba(12, 27, 55, 0.07);
}

.cpanel-plan-card li::before {
    content: "";
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 9px;
    border-radius: 50%;
    background: var(--orange-500);
}

.cpanel-addon {
    margin: 18px 0;
    padding: 12px 14px;
    border-radius: 8px;
    background: var(--orange-100);
    color: var(--amber-600);
    font-weight: 800;
}

.cpanel-plan-card .order-now {
    margin-top: auto;
}

.cpanel-compare-section {
    background: var(--surface-soft);
}

.cpanel-compare-wrap {
    overflow-x: auto;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(12, 27, 55, 0.1);
    box-shadow: var(--shadow-soft);
}

.cpanel-compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.cpanel-compare-table th,
.cpanel-compare-table td {
    padding: 17px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(12, 27, 55, 0.08);
}

.cpanel-compare-table th {
    background: var(--blue-950);
    color: #fff;
    font-weight: 800;
}

.cpanel-compare-table td:first-child {
    color: var(--blue-950);
    font-weight: 800;
}

.cpanel-compare-table tr:last-child td {
    border-bottom: 0;
}

.cpanel-support-band {
    background: #fff;
}

.cpanel-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.cpanel-support-grid h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.12;
}

.cpanel-support-grid p {
    margin: 12px 0 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
}

.cpanel-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.section {
    padding: 88px 0;
}

.section-tight {
    padding: 66px 0;
}

.page-band {
    background: var(--surface);
}

.page-band.alt {
    background: var(--surface-soft);
}

.page-band.deep {
    background: linear-gradient(180deg, rgba(15, 79, 168, 0.05), rgba(15, 79, 168, 0));
}

.topbar {
    background: var(--blue-950);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
}

.topbar-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.topbar-list span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar .customer-combo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 0 24px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: #fff;
    box-shadow: 0 18px 42px rgba(244, 124, 32, 0.25);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.topbar .customer-combo-btn:hover {
    transform: translateY(-2px);
}

.concept-home .topbar .customer-combo-btn {
    min-height: 0;
    padding: 9px 28px;
    border-radius: 0 0 4px 4px;
    font-size: 0.88rem;
}

.topbar .customer-combo-btn a,
.topbar .customer-combo-btn span {
    color: inherit;
}

.topbar .customer-combo-btn a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 20px;
    background: var(--surface);
    border: 1px solid rgba(12, 27, 55, 0.08);
    box-shadow: var(--shadow-soft);
}

.brand img {
    width: min(245px, 100%);
    height: auto;
}

.nav-toggle {
    display: none;
    border: 0;
    border-radius: 999px;
    background: var(--blue-100);
    color: var(--blue-900);
    padding: 12px 16px;
    font-weight: 600;
}

.site-nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list > li {
    position: relative;
}

.nav-link-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list a,
.submenu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: var(--ink-900);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 12px;
}

.nav-list a:hover,
.nav-list a[aria-current="page"],
.submenu-toggle:hover {
    color: var(--blue-800);
    background: rgba(15, 79, 168, 0.06);
}

.submenu-toggle::after {
    content: "+";
    font-size: 0.92rem;
    font-weight: 700;
}

.has-submenu.is-open .submenu-toggle::after {
    content: "-";
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 230px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid rgba(12, 27, 55, 0.08);
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.submenu li + li {
    margin-top: 4px;
}

.submenu a {
    width: 100%;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.is-open > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.68;
    transform: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    color: #fff;
    box-shadow: 0 18px 42px rgba(15, 79, 168, 0.24);
}

.btn-primary:hover {
    box-shadow: 0 24px 48px rgba(15, 79, 168, 0.28);
}

.btn-secondary {
    background: #fff;
    color: var(--ink-900);
    border-color: rgba(12, 27, 55, 0.12);
}

.btn-dark {
    background: var(--blue-950);
    color: #fff;
}

.btn-accent {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: #fff;
    box-shadow: 0 18px 42px rgba(244, 124, 32, 0.25);
}

.btn-light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    font-weight: 600;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange-500);
}

.section-kicker {
    margin: 0 0 10px;
    color: var(--blue-800);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-heading {
    margin: 0 0 12px;
    font-size: clamp(1.95rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.section-copy {
    margin: 0;
    max-width: 700px;
    color: var(--ink-700);
}

.centered {
    text-align: center;
}

.centered .section-copy {
    margin-inline: auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 30px;
}

.section-header p {
    margin: 0;
    max-width: 620px;
    color: var(--ink-700);
}

.hero-home,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.95), rgba(15, 79, 168, 0.76)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
    color: #fff;
}

.hero-home {
    padding: 72px 0 48px;
}

.page-hero {
    padding: 76px 0;
}

.hero-home::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: auto auto 10% -8%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 124, 32, 0.28), rgba(244, 124, 32, 0));
    pointer-events: none;
}

.hero-grid,
.page-hero-grid,
.cta-grid,
.footer-grid,
.two-column-grid,
.contact-grid,
.section-grid,
.split-grid,
.support-grid {
    display: grid;
    gap: 28px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 420px);
    align-items: center;
}

.page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
}

.hero-copy h1,
.page-hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 1.02;
}

.hero-copy p,
.page-hero-copy p {
    margin: 0;
    max-width: 670px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.04rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-badges,
.inline-badges,
.plan-features,
.feature-list,
.mini-list,
.detail-stack,
.footer-links,
.detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-badges,
.inline-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-badges li,
.inline-badges li,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.94rem;
}

.hero-badges li {
    background: rgba(255, 255, 255, 0.12);
}

.tag {
    background: var(--blue-100);
    color: var(--blue-900);
    font-weight: 600;
}

.hero-plan,
.panel,
.plan-card,
.feature-card,
.info-card,
.stat-card,
.brand-card,
.testimonial-card,
.contact-card,
.support-card,
.step-card,
.search-panel,
.cta-band,
.table-panel,
.faq-wrap,
.form-panel,
.meta-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(12, 27, 55, 0.08);
    box-shadow: var(--shadow-soft);
}

.hero-plan {
    padding: 28px;
    color: var(--ink-900);
    box-shadow: var(--shadow-strong);
}

.hero-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 16px;
}

.hero-plan-title {
    margin: 10px 0 0;
    font-size: 1.65rem;
    line-height: 1.14;
}

.hero-plan-price {
    margin: 14px 0 0;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 700;
    color: var(--blue-900);
}

.hero-plan-price span {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-700);
}

.plan-kicker {
    margin: 0;
    color: var(--blue-800);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.plan-note {
    display: inline-flex;
    align-self: start;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--orange-100);
    color: var(--amber-600);
    font-size: 0.83rem;
    font-weight: 700;
}

.plan-features,
.feature-list,
.mini-list,
.detail-stack,
.detail-list {
    display: grid;
    gap: 12px;
}

.plan-features li,
.feature-list li,
.mini-list li,
.detail-stack li,
.detail-list li {
    position: relative;
    padding-left: 18px;
}

.plan-features li::before,
.feature-list li::before,
.mini-list li::before,
.detail-stack li::before,
.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-500);
}

.hero-plan-footnote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-700);
}

.search-band {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

.search-panel {
    padding: 30px;
}

.search-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 560px);
    gap: 24px;
    align-items: center;
}

.domain-form {
    display: grid;
    gap: 14px;
}

.domain-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.field,
.field-textarea {
    width: 100%;
    border: 1px solid rgba(12, 27, 55, 0.12);
    border-radius: 18px;
    background: var(--surface);
    padding: 16px 18px;
    color: var(--ink-900);
}

.field:focus,
.field-textarea:focus {
    outline: none;
    border-color: rgba(15, 79, 168, 0.4);
    box-shadow: 0 0 0 4px rgba(15, 79, 168, 0.1);
}

.field-textarea {
    min-height: 160px;
    resize: vertical;
}

.domain-result {
    min-height: 26px;
}

.result-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.94rem;
}

.result-chip.is-success {
    background: var(--green-100);
    color: var(--green-500);
}

.result-chip.is-warning {
    background: var(--amber-100);
    color: var(--amber-600);
}

.domain-order-btn,
.domain-card-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(244, 124, 32, 0.22);
}

.domain-order-btn {
    margin-left: 8px;
    padding: 0 18px;
}

.domain-order-btn:disabled {
    cursor: wait;
    opacity: 0.76;
}

.card-grid,
.plan-grid,
.feature-grid,
.brand-grid,
.stats-grid,
.meta-grid,
.steps-grid,
.faq-grid {
    display: grid;
    gap: 24px;
}

.split-grid,
.two-column-grid,
.contact-grid,
.support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.two-up,
.plan-grid.two-up,
.meta-grid.two-up,
.faq-grid.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three-up,
.feature-grid,
.brand-grid,
.stats-grid,
.steps-grid.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-grid.four-up,
.steps-grid.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.feature-card,
.info-card,
.stat-card,
.brand-card,
.testimonial-card,
.contact-card,
.support-card,
.step-card,
.table-panel,
.faq-wrap,
.form-panel,
.meta-card {
    padding: 28px;
}

.info-card,
.feature-card,
.stat-card,
.brand-card,
.testimonial-card,
.contact-card,
.support-card,
.step-card {
    background: linear-gradient(180deg, #fff, #f9fbff);
}

.info-card h3,
.feature-card h3,
.stat-card h3,
.brand-card h3,
.testimonial-card h3,
.contact-card h3,
.support-card h3,
.step-card h3 {
    margin: 10px 0 8px;
    font-size: 1.3rem;
    line-height: 1.2;
}

.info-card p,
.feature-card p,
.brand-card p,
.testimonial-card p,
.contact-card p,
.support-card p,
.step-card p,
.stat-card p {
    margin: 10px 0 0;
    color: var(--ink-700);
}

.feature-number,
.step-number,
.brand-mark-text,
.quote-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.feature-number,
.step-number {
    width: 48px;
    height: 48px;
    background: var(--blue-100);
    color: var(--blue-900);
    font-weight: 700;
}

.brand-mark-text {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(15, 79, 168, 0.15), rgba(244, 124, 32, 0.18));
    color: var(--blue-900);
    font-weight: 700;
}

.quote-mark {
    width: 48px;
    height: 48px;
    background: rgba(15, 79, 168, 0.08);
    color: var(--blue-800);
    font-size: 1.6rem;
    font-weight: 700;
}

.plan-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
}

.plan-card-head {
    padding: 28px 28px 18px;
    background: linear-gradient(180deg, rgba(15, 79, 168, 0.08), rgba(15, 79, 168, 0));
}

.plan-card-head h3 {
    margin: 10px 0 8px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.plan-card-subtitle,
.muted,
.utility-note {
    color: var(--ink-700);
}

.plan-price {
    margin: 14px 0 0;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
    color: var(--blue-900);
}

.plan-price span {
    display: inline-block;
    margin-left: 6px;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink-700);
}

.plan-card-body {
    padding: 0 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.plan-card.featured {
    transform: translateY(-6px);
    border-color: rgba(15, 79, 168, 0.18);
    box-shadow: var(--shadow-strong);
}

.pricing-tabs {
    display: inline-flex;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    background: var(--blue-100);
}

.pricing-tab {
    border: 0;
    background: transparent;
    color: var(--ink-700);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}

.pricing-tab.is-active {
    background: #fff;
    color: var(--blue-900);
    box-shadow: 0 10px 24px rgba(7, 27, 58, 0.08);
}

.pricing-panel {
    margin-top: 28px;
}

.cta-band {
    padding: 36px;
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.97), rgba(15, 79, 168, 0.88)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
    color: #fff;
    box-shadow: var(--shadow-strong);
}

.cta-grid {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
}

.cta-band h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
}

.cta-band p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1;
    color: var(--blue-900);
}

.testimonial-shell {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.35s ease;
}

.testimonial-slide {
    min-width: 100%;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-top: 18px;
}

.testimonial-meta strong {
    display: block;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.carousel-control {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(12, 27, 55, 0.12);
    border-radius: 50%;
    background: #fff;
    color: var(--blue-900);
    font-size: 1.05rem;
    font-weight: 700;
}

.carousel-control:hover {
    background: var(--blue-100);
}

.page-hero-copy p {
    color: rgba(255, 255, 255, 0.84);
}

.hero-side-stack {
    display: grid;
    gap: 18px;
}

.meta-card {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

.meta-card strong {
    display: block;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(12, 27, 55, 0.08);
}

.comparison-table th {
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-700);
}

.comparison-table tr:last-child td {
    border-bottom: 0;
}

.comparison-table strong {
    color: var(--ink-900);
}

.table-scroll {
    overflow-x: auto;
}

.faq-wrap details {
    border-top: 1px solid rgba(12, 27, 55, 0.08);
    padding: 18px 0;
}

.faq-wrap details:first-child {
    border-top: 0;
}

.faq-wrap summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-wrap summary::after {
    content: "+";
    color: var(--blue-800);
}

.faq-wrap details[open] summary::after {
    content: "-";
}

.faq-wrap p {
    margin: 14px 0 0;
    color: var(--ink-700);
}

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

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

.contact-hero {
    padding: 82px 0 68px;
    background:
        linear-gradient(118deg, rgba(7, 59, 139, 0.9), rgba(4, 17, 38, 0.96)),
        url("assets/hero/hosting-data-center.png") center / cover no-repeat;
}

.contact-hero .concept-hero-copy h1,
.contact-hero .concept-hero-copy p {
    color: #fff;
}

.contact-hero-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 34px;
    align-items: center;
}

.contact-hero-checks {
    margin-top: 24px;
}

.contact-quick-card,
.contact-form-panel,
.contact-info-card {
    border: 1px solid rgba(12, 27, 55, 0.09);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 27, 58, 0.12);
}

.contact-quick-card {
    overflow: hidden;
}

.contact-quick-card .vps-start-top {
    border-radius: 0;
}

.contact-quick-list {
    display: grid;
    padding: 22px;
    gap: 12px;
}

.contact-quick-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 64px;
    padding: 14px 16px;
    border: 1px solid #e4ebf4;
    border-radius: 8px;
    color: var(--ink-900);
    text-decoration: none;
}

.contact-quick-list a:hover {
    border-color: rgba(244, 124, 32, 0.55);
    box-shadow: 0 10px 24px rgba(244, 124, 32, 0.12);
}

.contact-quick-list span,
.contact-info-card span,
.contact-page-form label span {
    color: var(--ink-700);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-main-section {
    background: #f6f9fd;
}

.contact-form-panel {
    padding: 30px;
}

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

.contact-page-form label {
    display: grid;
    gap: 8px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    border: 1px solid #dce5ef;
    border-radius: 8px;
    background: #fff;
    color: var(--ink-900);
    font: inherit;
    padding: 15px 16px;
}

.contact-page-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: rgba(15, 79, 168, 0.55);
    box-shadow: 0 0 0 4px rgba(15, 79, 168, 0.1);
}

.contact-page-form .btn {
    justify-self: start;
    min-width: 170px;
}

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

.contact-info-card {
    padding: 22px;
}

.contact-info-card strong {
    display: block;
    margin-top: 6px;
    color: var(--ink-900);
    font-size: 1.1rem;
}

.contact-info-card p {
    margin: 10px 0 0;
    color: var(--ink-700);
    line-height: 1.65;
}

.contact-info-card.accent {
    background: linear-gradient(135deg, #073b8b, #0f4fa8);
    color: #fff;
}

.contact-info-card.accent span,
.contact-info-card.accent strong,
.contact-info-card.accent p {
    color: #fff;
}

.contact-info-card.accent a {
    display: inline-flex;
    margin-top: 14px;
    color: #fff;
    font-weight: 800;
}

.contact-support-section .feature-card {
    border-radius: 8px;
}

.contact-faq-section {
    background: #fff;
}

.contact-page .contact-faq-section {
    padding-bottom: 82px;
}

.map-frame {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 28px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(118deg, rgba(244, 124, 32, 0.14) 0%, transparent 32%),
        linear-gradient(180deg, #071b3a 0%, #041126 100%);
    color: rgba(255, 255, 255, 0.82);
    padding: 48px 0 26px;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--blue-700), var(--orange-400));
}

.footer-contact-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.footer-contact-item {
    display: grid;
    gap: 3px;
    min-width: 0;
    padding: 18px 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-contact-item:first-child {
    border-left: 0;
}

a.footer-contact-item:hover {
    background: rgba(255, 154, 70, 0.1);
    transform: translateY(-1px);
}

.footer-contact-item span {
    color: var(--orange-400);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-contact-item strong {
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 0.96rem;
    line-height: 1.35;
}

.footer-contact-item small {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.76rem;
    line-height: 1.45;
}

.footer-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px 34px;
    align-items: start;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 17px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 0.98rem;
    line-height: 1.25;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--orange-500);
}

.footer-links {
    display: grid;
    gap: 9px;
}

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

.footer-links a {
    position: relative;
    min-width: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.38;
    overflow-wrap: anywhere;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: #fff;
    font-weight: 700;
}

.footer-bottom a:hover {
    color: var(--orange-400);
}

.footer-legal-line {
    width: 100%;
    text-align: center;
}

.footer-seo-line {
    width: 100%;
    margin-top: 6px;
    text-align: center;
}

.footer-social-links {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px;
    vertical-align: middle;
}

.footer-social-links a {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
    transform: translateY(-2px);
    border-color: var(--orange-400);
    background: #d71920;
    color: #ffea00;
}

.footer-social-links svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom-rule {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.photo-card img,
.plan-screenshot {
    border-radius: 24px;
    border: 1px solid rgba(12, 27, 55, 0.08);
    box-shadow: var(--shadow-soft);
}

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

.list-columns ul {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-700);
}

.list-columns li + li {
    margin-top: 10px;
}

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

.kpi-item {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.kpi-item strong {
    display: block;
    font-size: 1.5rem;
}

.kpi-item span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1120px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .header-actions {
        display: none;
    }

    .hero-grid,
    .page-hero-grid,
    .cta-grid,
    .footer-grid,
    .split-grid,
    .contact-grid,
    .two-column-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .plan-grid.four-up,
    .steps-grid.four-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid.three-up,
    .feature-grid,
    .brand-grid,
    .stats-grid,
    .steps-grid.three-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 940px) {
    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        inset: 88px 20px auto 20px;
        background: #fff;
        border: 1px solid rgba(12, 27, 55, 0.08);
        border-radius: 26px;
        box-shadow: var(--shadow-strong);
        padding: 18px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
    }

    body.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .nav-link-group {
        justify-content: space-between;
    }

    .nav-list a,
    .submenu-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 12px;
    }

    .submenu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: var(--surface-soft);
        padding: 8px;
        margin-top: 6px;
        min-width: 0;
    }

    .has-submenu.is-open > .submenu {
        display: block;
    }

    .search-panel-grid,
    .domain-input-row,
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .section {
        padding: 72px 0;
    }

    .section-tight {
        padding: 52px 0;
    }

    .hero-home,
    .page-hero {
        padding: 56px 0 36px;
    }

    .search-band {
        margin-top: -22px;
    }

    .plan-grid.four-up,
    .steps-grid.four-up,
    .card-grid.two-up,
    .plan-grid.two-up,
    .meta-grid.two-up,
    .faq-grid.two-up,
    .card-grid.three-up,
    .feature-grid,
    .brand-grid,
    .stats-grid,
    .steps-grid.three-up,
    .split-grid,
    .contact-grid,
    .two-column-grid,
    .support-grid,
    .kpi-bar,
    .list-columns {
        grid-template-columns: 1fr;
    }

    .hero-plan,
    .panel,
    .feature-card,
    .info-card,
    .stat-card,
    .brand-card,
    .testimonial-card,
    .contact-card,
    .support-card,
    .step-card,
    .search-panel,
    .cta-band,
    .table-panel,
    .faq-wrap,
    .form-panel,
    .meta-card {
        padding-inline: 22px;
    }

    .plan-card-head,
    .plan-card-body {
        padding-inline: 22px;
    }

    .section-header {
        align-items: start;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .hero-plan-footnote,
    .topbar-list {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand img {
        width: min(215px, 100%);
    }

    .site-footer {
        padding: 44px 0 24px;
    }

    .footer-contact-panel {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .footer-contact-item {
        border-left: 0;
        padding: 16px 18px;
    }

    .footer-contact-item + .footer-contact-item {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-shell {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
        margin-top: 26px;
        font-size: 0.72rem;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* Homepage concept match */
.concept-home {
    background: #f5f7fb;
    overflow-x: hidden;
}

.concept-home .container {
    --container: min(1280px, calc(100% - 36px));
}

.concept-home .topbar {
    background: #083a86;
    font-size: 0.9rem;
}

.concept-home .topbar-inner {
    min-height: 38px;
    padding: 0;
}

.concept-home .topbar-list {
    gap: 44px;
    align-items: center;
}

.concept-home .topbar .btn {
    min-height: 0;
    padding: 9px 28px;
    border-radius: 0 0 4px 4px;
    font-size: 0.88rem;
    line-height: 1;
}

.concept-home .site-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 8px 22px rgba(5, 29, 67, 0.08);
    border-bottom: 0;
}

.concept-home .header-inner {
    grid-template-columns: auto 1fr;
    min-height: 74px;
    padding: 8px 0;
}

.concept-home .brand-mark {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.concept-home .brand img {
    width: 178px;
}

.concept-home .site-nav {
    justify-self: end;
}

.concept-home .nav-list {
    gap: 18px;
}

.concept-home .nav-list a,
.concept-home .submenu-toggle {
    min-height: 38px;
    padding: 8px 0;
    border-radius: 0;
    color: #0b1b31;
    font-size: 0.84rem;
    font-weight: 500;
}

.concept-home .nav-list a:hover,
.concept-home .nav-list a[aria-current="page"],
.concept-home .submenu-toggle:hover {
    color: #0b459d;
    background: transparent;
}

.concept-home .nav-list a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 #0b459d;
}

.home-banner-slider {
    position: relative;
    overflow: hidden;
    background: #061f4c;
    color: #fff;
}

.home-banner-track {
    position: relative;
    min-height: 382px;
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-banner-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 13, 33, 0.88), rgba(2, 13, 33, 0.56) 54%, rgba(2, 13, 33, 0.18));
}

.home-banner-content {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    min-height: 382px;
    width: min(1280px, calc(100% - 36px));
    margin: 0 auto;
    padding: 0;
}

.home-banner-content span {
    width: max-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ff741f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-banner-content h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.home-banner-content p {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
}

.home-banner-actions {
    margin-top: 28px;
}

.home-banner-actions .btn {
    min-width: 160px;
    border-radius: 4px;
}

.home-banner-controls {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(-50%);
}

.home-banner-controls button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    font-weight: 900;
}

.home-banner-dots {
    display: flex;
    gap: 7px;
}

.home-banner-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    font-size: 0;
}

.home-banner-dots button.is-active {
    width: 24px;
    background: #ff741f;
}

.concept-hero {
    position: relative;
    min-height: 382px;
    padding: 26px 0 28px;
    background:
        linear-gradient(90deg, rgba(2, 13, 33, 0.92) 0%, rgba(6, 31, 76, 0.78) 48%, rgba(6, 31, 76, 0.4) 100%),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
    color: #fff;
}

.concept-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
    gap: 42px;
}

.concept-pill {
    display: inline-flex;
    padding: 5px 14px;
    border-radius: 999px;
    background: #ff7b22;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.concept-hero-copy h1 {
    margin: 14px 0 8px;
    max-width: 840px;
    color: #fff;
    font-size: clamp(2.35rem, 3.85vw, 3.65rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.concept-hero-copy h1 span {
    display: block;
    font-size: 1.14em;
}

.concept-hero-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.03rem;
    line-height: 1.45;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 24px;
    margin: 16px 0;
}

.hero-metric {
    display: grid;
    grid-template-columns: 48px auto;
    align-items: center;
    column-gap: 10px;
}

.metric-icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #0d4ba3;
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-metric strong {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.1;
}

.hero-metric small {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    line-height: 1.1;
}

.concept-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
}

.concept-actions .btn {
    min-width: 160px;
    border-radius: 4px;
}

.vps-start-card {
    margin-top: 4px;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    color: #101b2d;
    box-shadow: 0 26px 60px rgba(0, 11, 37, 0.28);
}

.vps-start-top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background: #1262bf;
    color: #fff;
}

.vps-start-top strong,
.vps-start-top span {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 0.83rem;
    text-transform: uppercase;
}

.vps-start-top span {
    background: #ff7424;
    font-weight: 700;
}

.vps-start-card ul {
    margin: 0;
    padding: 10px 26px 8px;
    list-style: none;
}

.vps-start-card li {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    border-bottom: 1px solid #e5e9f0;
}

.vps-start-card li span {
    width: 30px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0b459d;
    border-radius: 4px;
    color: #0b459d;
    font-size: 0.62rem;
    font-weight: 800;
}

.vps-start-card li strong {
    font-size: 0.94rem;
    font-weight: 500;
}

.vps-start-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 26px 18px;
    background: #0b459d;
    color: #fff;
}

.vps-start-bottom small {
    display: block;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
}

.vps-start-bottom strong {
    display: block;
    font-size: 1.7rem;
    line-height: 1;
}

.vps-start-bottom strong span {
    font-size: 0.84rem;
    font-weight: 500;
}

.vps-start-bottom .btn {
    min-height: 40px;
    padding: 0 18px;
    border-radius: 5px;
    font-size: 0.82rem;
}

.domain-strip-wrap {
    position: relative;
    margin-top: 0;
    padding-top: 22px;
    z-index: 3;
    background: #f5f7fb;
}

.domain-strip {
    display: grid;
    grid-template-columns: 250px minmax(300px, 440px) 1fr;
    align-items: center;
    gap: 22px;
    min-height: 92px;
    padding: 18px 28px;
    border-radius: 9px;
    background: #fff;
    border: 1px solid #e3e9f2;
    box-shadow: 0 12px 28px rgba(6, 27, 70, 0.12);
}

.domain-strip-title span {
    display: block;
    color: #18253b;
    font-size: 1.05rem;
    line-height: 1.15;
}

.domain-strip-title strong {
    display: block;
    color: #073b8b;
    font-size: 1.45rem;
    line-height: 1.1;
    white-space: nowrap;
}

.domain-strip-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px 130px;
}

.domain-strip-form input,
.domain-strip-form select,
.domain-strip-form button {
    min-height: 36px;
    border: 1px solid #dde3ec;
    background: #fff;
    color: #18253b;
    font-size: 0.76rem;
}

.domain-strip-form input {
    padding: 0 14px;
    border-radius: 4px 0 0 4px;
}

.domain-strip-form select {
    padding: 0 10px;
    border-left: 0;
    text-align: left;
    text-align-last: left;
}

.domain-strip-form button {
    border-color: #073b8b;
    background: #073b8b;
    color: #fff;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
}

.domain-price-row {
    display: grid;
    grid-template-columns: repeat(6, max-content);
    justify-content: space-between;
    gap: 16px;
}

.domain-price-row span {
    color: #34445d;
    font-size: 0.68rem;
    line-height: 1.2;
    white-space: nowrap;
}

.domain-price-row strong {
    display: block;
    color: #073b8b;
    font-size: 1.25rem;
}

.domain-mini-offer {
    display: inline-flex;
    margin-bottom: 3px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #d71920;
    color: #ffe600;
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.domain-strip .domain-result {
    grid-column: 2 / 4;
    min-height: 0;
}

.domain-strip .domain-result:empty {
    display: none;
}

[data-plan-availability-hidden] {
    display: none !important;
}

.concept-section {
    padding: 22px 0 0;
    background: #f5f7fb;
}

.concept-section.compact {
    padding-top: 8px;
}

.vps-card-section {
    padding-top: 32px;
}

.concept-section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 26px;
    margin: 0 8px 14px;
}

.concept-section-head.slim {
    grid-template-columns: 1fr auto;
}

.concept-section-head p {
    margin: 0 0 3px;
    color: #073b8b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.concept-section-head h2 {
    margin: 0;
    color: #101827;
    font-size: 1.65rem;
    line-height: 1.12;
}

.concept-section-head span {
    display: block;
    margin-top: 3px;
    color: #667085;
    font-size: 0.82rem;
}

.datacenter-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 640px;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid #d8e1ee;
    border-radius: 7px;
    background: #fff;
    color: #34445d;
    font-size: 0.78rem;
    line-height: 1.35;
}

.datacenter-note img {
    flex: 0 0 auto;
    width: 34px;
    height: 22px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(7, 59, 139, 0.1);
}

.datacenter-note span {
    min-width: 0;
}

.app-panel-section {
    padding-top: 32px;
}

.app-panel-section .concept-section-head {
    margin-bottom: 16px;
}

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

.app-logo-card {
    display: grid;
    min-height: 238px;
    padding: 18px 18px 16px;
    border: 1px solid #dde3ec;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(16, 24, 39, 0.04);
}

.app-logo-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    margin-bottom: 14px;
    padding: 10px 14px;
    border: 1px solid #e7edf5;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.app-logo-media img {
    width: min(190px, 92%);
    max-height: 62px;
    object-fit: contain;
}

.app-logo-card h3 {
    margin: 0;
    color: #101827;
    font-size: 0.94rem;
}

.app-logo-card p {
    margin: 7px 0 14px;
    color: #667085;
    font-size: 0.74rem;
    line-height: 1.45;
}

.app-logo-card a {
    align-self: end;
    color: #073b8b;
    font-size: 0.72rem;
    font-weight: 800;
}

.app-logo-card a::after {
    content: " ->";
    color: #ff7424;
}

.os-panel-section {
    padding-top: 10px;
    padding-bottom: 32px;
}

.os-panel-section .concept-section-head {
    margin-bottom: 14px;
}

.os-logo-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid #cfd8e6;
    border-radius: 8px;
    background: #fff;
}

.linux-os-logo-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.windows-os-logo-strip {
    max-width: 940px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-right: auto;
    margin-left: auto;
}

.linux-vps-listing-page .concept-hero-copy h1,
.windows-vps-listing-page .concept-hero-copy h1 {
    max-width: 860px;
}

.linux-shared-hosting-listing-page .concept-hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.45rem, 4.8vw, 4.15rem);
    line-height: 1.06;
    text-transform: none;
}

.linux-vps-listing-page .concept-hero-copy p,
.windows-vps-listing-page .concept-hero-copy p {
    max-width: 690px;
}

.linux-shared-hosting-listing-page .concept-hero-copy p {
    max-width: 610px;
}

.linux-vps-listing-page .vps-card-section,
.windows-vps-listing-page .vps-card-section {
    padding-top: 46px;
}

.linux-shared-hosting-listing-page .vps-card-section {
    padding-top: 46px;
}

.centered-section-head {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.centered-section-head > div {
    justify-self: center;
}

.centered-section-head span {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
}

.linux-vps-info-section,
.windows-vps-info-section,
.shared-hosting-info-section {
    padding-top: 34px;
    padding-bottom: 44px;
}

.linux-vps-info-section .feature-grid,
.windows-vps-info-section .feature-grid,
.shared-hosting-info-section .feature-grid {
    gap: 18px;
}

.linux-vps-info-section .feature-card,
.windows-vps-info-section .feature-card,
.shared-hosting-info-section .feature-card {
    min-height: 232px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.05);
}

.linux-vps-info-section .feature-card:nth-child(2),
.linux-vps-info-section .feature-card:nth-child(5),
.windows-vps-info-section .feature-card:nth-child(2),
.windows-vps-info-section .feature-card:nth-child(5),
.shared-hosting-info-section .feature-card:nth-child(2),
.shared-hosting-info-section .feature-card:nth-child(5) {
    background: linear-gradient(180deg, #fff7f0 0%, #ffffff 78%);
}

.linux-vps-advantages-section,
.windows-vps-advantages-section,
.shared-hosting-advantages-section,
.shared-hosting-specs-section {
    padding-top: 44px;
    padding-bottom: 48px;
    background:
        linear-gradient(180deg, #f5f7fb 0%, #eef4fb 100%);
}

.linux-vps-advantages-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}

.linux-vps-datacenter-card,
.advantage-list {
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 39, 0.06);
}

.linux-vps-datacenter-card {
    display: grid;
    overflow: hidden;
}

.datacenter-media-panel {
    position: relative;
    min-height: 330px;
    background: #071c3c;
}

.datacenter-media-panel img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.datacenter-highlight {
    display: grid;
    gap: 8px;
    padding: 24px;
    background: #073b8b;
    color: #fff;
}

.datacenter-highlight strong {
    font-size: 1.28rem;
    line-height: 1.2;
}

.datacenter-highlight span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
}

.advantage-list {
    display: grid;
    gap: 0;
    padding: 10px 26px;
}

.advantage-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #e4eaf3;
}

.advantage-item:last-child {
    border-bottom: 0;
}

.advantage-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #fff0e5;
    color: #ff741f;
    font-size: 0.82rem;
    font-weight: 900;
}

.advantage-item h3 {
    margin: 0 0 6px;
    color: #101827;
    font-size: 1.05rem;
    line-height: 1.25;
}

.advantage-item p {
    margin: 0;
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.55;
}

.linux-vps-faq-section,
.windows-vps-faq-section,
.shared-hosting-faq-section {
    padding-top: 42px;
    padding-bottom: 42px;
    background: #fff;
}

.shared-hosting-tools-section {
    padding-top: 40px;
    padding-bottom: 46px;
    background: #fff;
}

.shared-feature-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border: 1px solid #e1e9f4;
    border-radius: 10px;
    background: #fff;
}

.shared-feature-media img {
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
}

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

.shared-spec-card {
    min-height: 360px;
    padding: 28px;
    border: 1px solid #d8e1ee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(16, 24, 39, 0.06);
}

.shared-spec-card h3 {
    margin: 0 0 18px;
    color: #101827;
    font-size: 1.18rem;
    line-height: 1.25;
}

.shared-spec-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.shared-spec-card li {
    position: relative;
    padding-left: 20px;
    color: #55657c;
    font-size: 0.9rem;
    line-height: 1.45;
}

.shared-spec-card li::before {
    content: "";
    position: absolute;
    top: 0.48em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff741f;
}

.shared-web-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.shared-web-feature-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 154px;
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.05);
}

.shared-web-feature-card img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.shared-web-feature-card h3 {
    margin: 0 0 8px;
    color: #101827;
    font-size: 1.02rem;
    line-height: 1.25;
}

.shared-web-feature-card p {
    margin: 0;
    color: #667085;
    font-size: 0.88rem;
    line-height: 1.5;
}

.domain-hero {
    min-height: 590px;
}

.domain-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.46fr);
    gap: 42px;
    align-items: center;
}

.domain-registration-page .concept-hero-copy h1 {
    max-width: 850px;
    font-size: clamp(2.45rem, 4.8vw, 4.25rem);
    line-height: 1.05;
}

.domain-registration-page .concept-hero-copy p {
    max-width: 720px;
}

.domain-hero-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px 170px;
    max-width: 780px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.domain-hero-search input,
.domain-hero-search select,
.domain-hero-search button {
    min-height: 58px;
    border: 0;
    font: inherit;
}

.domain-hero-search input {
    min-width: 0;
    padding: 0 20px;
    color: #101827;
    font-weight: 700;
}

.domain-hero-search select {
    border-left: 1px solid #dbe3ef;
    color: #073b8b;
    font-weight: 900;
    padding: 0 18px 0 32px;
    text-align: left;
    text-align-last: left;
}

.domain-strip-form select option,
.domain-hero-search select option {
    text-align: left;
}

.domain-hero-search button {
    background: #ff741f;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
}

.domain-hero .domain-result {
    max-width: 780px;
    margin-top: 12px;
}

.domain-hero-checks {
    margin-top: 24px;
}

.domain-offer-card {
    overflow: hidden;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.domain-offer-card .btn {
    width: calc(100% - 48px);
    margin: 8px 24px 24px;
}

.domain-price-list {
    display: grid;
    padding: 18px 24px 10px;
}

.domain-price-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    border-bottom: 1px solid #e4eaf3;
}

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

.domain-price-list span {
    color: #073b8b;
    font-size: 1.18rem;
    font-weight: 900;
}

.domain-price-list strong {
    color: #101827;
    font-size: 1.04rem;
}

.domain-pricing-section,
.domain-steps-section,
.domain-benefits-section,
.domain-free-services-section,
.domain-faq-section {
    padding-top: 42px;
    padding-bottom: 44px;
}

.domain-pricing-section,
.domain-benefits-section {
    background: #fff;
}

.domain-registration-page .step-card,
.domain-registration-page .domain-free-services-section .feature-card {
    border-radius: 8px;
}

.domain-extension-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.domain-extension-grid article {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
    min-height: 154px;
    padding: 28px 18px 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fbff;
    text-align: center;
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.05);
}

.domain-offer-ribbon {
    position: absolute;
    top: 13px;
    right: -37px;
    z-index: 2;
    min-width: 118px;
    padding: 5px 24px;
    background: #d71920;
    color: #ffe600;
    font-size: 0.7rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(38deg);
    box-shadow: 0 8px 18px rgba(215, 25, 32, 0.24);
}

.domain-extension-grid strong {
    position: relative;
    z-index: 1;
    display: block;
    max-width: calc(100% - 42px);
    margin: 0 auto;
    color: #073b8b;
    font-size: clamp(1.45rem, 1.8vw, 2rem);
    line-height: 1;
    overflow-wrap: anywhere;
}

.domain-extension-grid article:has(.domain-offer-ribbon) strong {
    max-width: 100%;
    margin-top: 56px;
}

.domain-extension-grid span {
    color: #ff741f;
    font-size: 1.05rem;
    font-weight: 900;
}

.domain-extension-grid small {
    color: #667085;
    font-size: 0.78rem;
    line-height: 1.35;
}

.domain-card-order-btn {
    justify-self: center;
    min-height: 38px;
    margin-top: 4px;
    padding: 0 18px;
}

.promo-offers-hero {
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.96), rgba(15, 79, 168, 0.78)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
}

.promo-offers-page #promo-offers-list {
    padding-bottom: 48px;
}

.promo-hero-card {
    align-self: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: #071b3a;
    box-shadow: var(--shadow-strong);
}

.promo-hero-card span {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff0e6;
    color: #e46212;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-hero-card strong {
    display: block;
    margin-bottom: 10px;
    color: #073b8b;
    font-size: 2rem;
    line-height: 1;
}

.promo-hero-card p {
    margin: 0;
    color: #53627a;
    line-height: 1.6;
}

.promo-offers-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.promo-offers-toolbar span {
    color: #53627a;
    font-weight: 800;
}

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

.promo-offer-card,
.promo-loading-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 24px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(16, 24, 39, 0.07);
}

.promo-loading-card {
    grid-column: 1 / -1;
    color: #53627a;
    font-weight: 800;
    text-align: center;
}

.promo-offer-card.is-expired {
    background: #f8fafc;
    opacity: 0.84;
}

.promo-status-ribbon {
    position: absolute;
    top: 14px;
    right: -34px;
    min-width: 132px;
    padding: 7px 28px;
    background: #18a058;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(38deg);
}

.promo-offer-card.is-expired .promo-status-ribbon {
    background: #d71920;
    color: #ffe600;
}

.promo-code-box {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 16px;
    padding: 0 16px;
    border: 1px dashed #ff741f;
    border-radius: 8px;
    background: #fff7ed;
    color: #073b8b;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.promo-offer-card h3 {
    margin: 0 0 8px;
    padding-right: 38px;
    color: #071b3a;
    font-size: 1.2rem;
    line-height: 1.25;
}

.promo-offer-card p {
    margin: 0 0 16px;
    color: #53627a;
    line-height: 1.55;
}

.promo-meta-list {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.promo-meta-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf1f7;
    color: #53627a;
    font-size: 0.88rem;
}

.promo-meta-list strong {
    color: #071b3a;
    text-align: right;
}

.promo-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.promo-card-actions .btn {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.86rem;
}

.promo-copy-status {
    flex-basis: 100%;
    min-height: 18px;
    color: #18a058;
    font-size: 0.78rem;
    font-weight: 800;
}

.services-status-hero {
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.96), rgba(15, 79, 168, 0.78)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
}

.services-status-summary-card {
    align-self: center;
    display: grid;
    gap: 10px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #071b3a;
    box-shadow: var(--shadow-strong);
}

.services-status-summary-card span {
    color: #f47c20;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.services-status-summary-card strong {
    color: #168a4a;
    font-size: 1.8rem;
    line-height: 1.1;
}

.services-status-summary-card strong.has-issue {
    color: #d71920;
}

.services-status-summary-card small {
    color: #53627a;
    font-weight: 700;
}

.services-status-section {
    padding-bottom: 48px;
}

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

.services-status-group {
    display: grid;
    gap: 14px;
}

.services-status-group h2 {
    margin: 0;
    color: #071b3a;
    font-size: 1.24rem;
}

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

.services-status-card {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #dbe3ef;
    border-left: 5px solid #f47c20;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.07);
}

.services-status-card.impact-operational {
    border-left-color: #18a058;
}

.services-status-card.impact-major,
.services-status-card.impact-critical {
    border-left-color: #d71920;
}

.services-status-card-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.services-status-card-head span,
.services-status-card-head em {
    color: #073b8b;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.services-status-card-head em {
    color: #f47c20;
}

.services-status-card strong {
    color: #071b3a;
    font-size: 1.02rem;
}

.services-status-card p {
    margin: 0;
    color: #53627a;
    line-height: 1.6;
}

.services-status-card small {
    color: #667085;
    font-weight: 800;
}

.services-status-card.is-empty {
    border-left-color: #18a058;
    background: #f8fbff;
}

.legal-hero {
    padding: 74px 0 66px;
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.96), rgba(15, 79, 168, 0.82)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
}

.legal-hero .concept-hero-copy {
    max-width: 860px;
}

.legal-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08);
}

.webpage-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
    gap: 28px;
    align-items: start;
}

.webpage-main-column .legal-content,
.webpage-main-column .webpage-pdf-block {
    max-width: none;
}

.webpage-side-panel {
    position: sticky;
    top: 92px;
    padding: 20px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.webpage-side-panel strong {
    display: block;
    margin-bottom: 14px;
    color: #071b3a;
    font-size: 1rem;
}

.webpage-side-list {
    display: grid;
    gap: 9px;
}

.webpage-side-list a {
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid #e3ebf5;
    border-radius: 8px;
    background: #f8fbff;
    color: #073b8b;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
}

.webpage-side-list a:hover,
.webpage-side-list a.is-active {
    border-color: #f47c20;
    background: #fff4ec;
    color: #d85f0d;
}

.legal-page main[data-webpage-master] > .concept-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.seo-landing-page main > .concept-section {
    padding-top: 60px;
    padding-bottom: 72px;
}

.seo-landing-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-content h2 {
    margin: 30px 0 10px;
    color: #073b8b;
    font-size: 1.35rem;
    line-height: 1.25;
}

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

.legal-content p,
.legal-content li {
    color: #53627a;
    font-size: 1rem;
    line-height: 1.75;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

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

.webpage-pdf-block {
    max-width: 960px;
    margin: 24px auto 0;
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08);
}

.webpage-pdf-block[hidden] {
    display: none;
}

.seo-landing-content {
    max-width: none;
    margin: 0;
}

.seo-landing-featured {
    margin: 0 0 24px;
}

.seo-landing-featured img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.seo-service-sidebar {
    position: sticky;
    top: 100px;
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(16, 24, 39, 0.08);
}

.seo-service-sidebar strong {
    color: #071b3a;
    font-size: 1rem;
}

.seo-service-list {
    display: grid;
    gap: 10px;
}

.seo-service-list a {
    display: block;
    padding: 11px 12px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fbff;
    color: #073b8b;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
}

.seo-service-list a:hover {
    border-color: #f47c20;
    background: #fff4ec;
    color: #d85f0d;
}

@media (max-width: 940px) {
    .seo-landing-layout {
        grid-template-columns: 1fr;
    }

    .seo-service-sidebar {
        position: static;
    }
}

.webpage-pdf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.webpage-pdf-head h2 {
    margin: 0;
    color: #073b8b;
    font-size: 1.25rem;
    line-height: 1.25;
}

.webpage-pdf-viewer {
    display: block;
    width: 100%;
    min-height: 680px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fbff;
}

.webpage-pdf-current {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
    font-size: 0.82rem;
    font-weight: 800;
}

.webpage-pdf-current span {
    color: var(--ink-700);
}

.webpage-pdf-current a {
    color: var(--blue-800);
}

.blog-hero {
    padding: 82px 0 70px;
    background:
        linear-gradient(128deg, rgba(7, 27, 58, 0.96), rgba(15, 79, 168, 0.82)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
}

.blog-hero-panel {
    align-self: center;
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.blog-hero-panel span,
.blog-hero-panel p {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.blog-hero-panel strong {
    color: #fff;
    font-size: 2rem;
    line-height: 1.1;
}

.blog-list-section {
    background: #f5f8fc;
}

.blog-page main {
    padding-bottom: 34px;
    background: #f5f8fc;
}

.blog-tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.blog-filter-shell {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.blog-filter-shell > div {
    padding: 18px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
}

.blog-filter-shell strong {
    display: block;
    margin-bottom: 12px;
    color: #071b3a;
    font-size: 0.9rem;
}

.blog-filter-shell .blog-tag-filter {
    margin-bottom: 0;
}

.blog-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.blog-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.blog-sidebar-box {
    padding: 20px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.blog-sidebar-box strong {
    display: block;
    margin-bottom: 14px;
    color: #071b3a;
    font-size: 1rem;
}

.blog-side-list {
    display: grid;
    gap: 9px;
}

.blog-side-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    padding: 9px 12px;
    border: 1px solid #e3ebf5;
    border-radius: 8px;
    background: #f8fbff;
    color: #073b8b;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.25;
    text-decoration: none;
}

.blog-side-list a:hover,
.blog-side-list a.is-active {
    border-color: #f47c20;
    background: #fff4ec;
    color: #d85f0d;
}

.blog-tag-filter a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    color: #073b8b;
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
}

.blog-tag-filter a:hover,
.blog-tag-filter a.is-active {
    border-color: #f47c20;
    background: #fff4ec;
    color: #d85f0d;
}

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

.blog-card {
    overflow: hidden;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(16, 24, 39, 0.08);
}

.blog-card-media {
    display: block;
    overflow: hidden;
    background: #fff;
}

.blog-card-media img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-card-body {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.blog-card > h3,
.blog-card > p {
    margin-left: 22px;
    margin-right: 22px;
}

.blog-card > h3:first-child {
    margin-top: 22px;
}

.blog-card > p:last-child {
    margin-bottom: 22px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.blog-meta span,
.blog-meta a {
    color: #607089;
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
}

.blog-meta a {
    color: #f47c20;
}

.blog-card h3 {
    margin: 0;
    color: #071b3a;
    font-size: 1.25rem;
    line-height: 1.3;
}

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

.blog-card p {
    margin: 0;
    color: #53627a;
    line-height: 1.7;
}

.blog-read-more {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #f47c20;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff9848, #f47c20);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(244, 124, 32, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.blog-read-more::after {
    content: ">";
    font-size: 1rem;
    line-height: 1;
}

.blog-read-more:hover,
.blog-read-more:focus-visible {
    background: linear-gradient(135deg, #f47c20, #d95f0b);
    box-shadow: 0 16px 30px rgba(244, 124, 32, 0.28);
    transform: translateY(-1px);
}

.blog-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.blog-share-mini,
.blog-share-actions button,
.blog-share-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    padding: 9px 14px;
    background: #fff;
    color: #073b8b;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.blog-share-mini:hover,
.blog-share-mini:focus-visible,
.blog-share-actions button:hover,
.blog-share-actions button:focus-visible,
.blog-share-actions a:hover,
.blog-share-actions a:focus-visible {
    border-color: #f47c20;
    background: #fff4ec;
    color: #d85f0d;
    transform: translateY(-1px);
}

.blog-detail-hero .concept-hero-copy {
    max-width: 980px;
}

.blog-detail-tags {
    margin-top: 20px;
}

.blog-detail-section {
    background: #f5f8fc;
}

.blog-featured-image {
    max-width: 960px;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 8px;
    background: #071b3a;
    box-shadow: 0 18px 44px rgba(16, 24, 39, 0.1);
}

.blog-featured-image[hidden] {
    display: none;
}

.blog-featured-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.blog-detail-section .blog-featured-image {
    max-width: none;
    margin: 0 0 18px;
}

.blog-detail-status {
    max-width: 960px;
    margin: 0 auto 14px;
    color: #607089;
    font-weight: 800;
}

.blog-detail-tag-block {
    max-width: 960px;
    margin: 20px auto 0;
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.blog-detail-tag-block[hidden] {
    display: none;
}

.blog-detail-tag-block strong {
    display: block;
    margin-bottom: 12px;
    color: #071b3a;
    font-size: 1rem;
}

.blog-detail-tag-block .blog-detail-tags {
    margin: 0;
}

.blog-share-panel {
    max-width: 960px;
    margin: 20px auto 0;
    padding: 22px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.08);
}

.blog-share-panel[hidden] {
    display: none;
}

.blog-share-panel strong {
    display: block;
    margin-bottom: 14px;
    color: #071b3a;
    font-size: 1rem;
}

.blog-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-share-status {
    display: block;
    min-height: 18px;
    margin-top: 10px;
    color: #53627a;
    font-size: 0.78rem;
    font-weight: 800;
}

.blog-related-list a {
    display: grid;
    justify-content: stretch;
    gap: 5px;
}

.blog-related-list a span {
    color: inherit;
}

.blog-related-list a small {
    color: #607089;
    font-size: 0.72rem;
    font-weight: 800;
}

.blog-related-list a:hover small,
.blog-related-list a.is-active small {
    color: #d85f0d;
}

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    color: #073b8b;
}

.webpage-pdf-remove {
    align-self: end;
    min-height: 46px;
}

@media (max-width: 640px) {
    .legal-page main[data-webpage-master] > .concept-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .webpage-pdf-block {
        padding: 16px;
    }

    .webpage-pdf-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .webpage-pdf-viewer {
        min-height: 520px;
    }

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

    .webpage-side-panel {
        position: static;
    }

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

    .blog-filter-shell {
        grid-template-columns: 1fr;
    }

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

    .blog-sidebar {
        position: static;
    }

    .blog-hero-panel {
        padding: 22px;
    }
}

.shared-tool-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.shared-hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 12px 28px;
    margin: 24px 0 0;
}

.shared-hero-checks span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

.shared-hero-checks span::before {
    content: "";
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: #ff741f;
    box-shadow: inset 0 0 0 4px #ff741f;
}

.shared-hosting-plan-card {
    position: relative;
    min-height: 408px;
    padding: 28px 24px 24px;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(16, 24, 39, 0.06);
}

.shared-hosting-plan-card.featured {
    border-color: #ff741f;
}

.shared-hosting-plan-card .mini-badge {
    position: absolute;
    top: -12px;
    right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 5px;
    background: #ff741f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.shared-hosting-plan-card h3 {
    margin: 0;
    color: #101827;
    font-size: 1.14rem;
    line-height: 1.25;
}

.shared-hosting-plan-card p {
    margin: 6px 0 16px;
    color: #667085;
    font-size: 0.82rem;
}

.shared-hosting-plan-card strong {
    display: block;
    margin-bottom: 18px;
    color: #073b8b;
    font-size: 2.15rem;
    line-height: 1;
}

.shared-hosting-plan-card strong span {
    color: #34445d;
    font-size: 0.92rem;
}

.plan-price-stack {
    display: grid !important;
    gap: 5px;
    align-items: start;
}

.plan-price-regular {
    display: inline-flex !important;
    align-items: baseline;
    gap: 3px;
    width: fit-content;
    color: #7a8799 !important;
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #f47c20;
}

.plan-price-regular span {
    color: #7a8799 !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
}

.plan-price-offer {
    display: inline-flex !important;
    align-items: baseline;
    gap: 3px;
    color: #073b8b !important;
    font-size: 2.15rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

.plan-price-offer span {
    color: #34445d !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
}

.plan-promo-badge {
    display: inline-flex !important;
    width: fit-content;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border: 1px dashed #ff741f;
    border-radius: 999px;
    background: #fff4ea;
    color: #e46212 !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.02em;
    line-height: 1.1 !important;
    text-transform: uppercase;
}

.shared-hosting-plan-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.shared-hosting-plan-card li {
    position: relative;
    padding-left: 20px;
    color: #34445d;
    font-size: 0.83rem;
    line-height: 1.35;
}

.shared-hosting-plan-card li::before {
    content: "";
    position: absolute;
    top: 0.38em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff741f;
}

.shared-hosting-plan-card .order-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    min-height: 44px;
    border-radius: 5px;
    background: #ff741f;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.shared-hosting-info-section .feature-card {
    min-height: 250px;
    text-align: center;
}

.shared-hosting-info-section .feature-number {
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    border-radius: 12px;
    background: #eef5ff;
    color: #073b8b;
    font-size: 0.82rem;
    font-weight: 900;
}

.shared-hosting-info-section .feature-card h3 {
    margin-top: 0;
}

.email-verify-hero {
    background:
        linear-gradient(135deg, rgba(7, 59, 139, 0.92), rgba(0, 128, 128, 0.72)),
        url("assets/hero/hosting-data-center.png") center/cover;
}

.email-verify-hero .concept-hero-copy,
.email-verify-hero .concept-hero-copy h1,
.email-verify-hero .concept-hero-copy p {
    color: #fff;
}

.email-verify-hero .concept-pill,
.email-verify-hero .shared-hero-checks span {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.email-verify-order-section .concept-section-head {
    max-width: 980px;
}

.email-verify-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.email-verify-price-card {
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(14, 35, 64, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 34, 66, 0.08);
}

.email-verify-price-card.is-selected {
    border-color: rgba(255, 116, 31, 0.7);
    box-shadow: 0 24px 58px rgba(255, 116, 31, 0.16);
}

.email-verify-price-card.featured {
    border-color: rgba(0, 128, 128, 0.35);
    box-shadow: 0 22px 56px rgba(0, 128, 128, 0.16);
}

.email-verify-price-card > span {
    color: #008080;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.email-verify-price-card h3 {
    color: var(--text);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.email-verify-price-card p {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0;
}

.email-verify-price-card del {
    color: var(--muted);
    font-size: 1.05rem;
}

.email-verify-price-card p strong {
    color: var(--accent);
    font-size: 1.9rem;
}

.email-verify-price-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.email-verify-price-card li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.94rem;
    font-weight: 700;
}

.email-verify-price-card li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #008080;
}

.email-verify-price-card button.order-now {
    border: 0;
    cursor: pointer;
}

.email-verify-order-section .vps-cart {
    max-width: 430px;
    margin: 26px auto 0;
}

.email-verify-results-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 36px;
    align-items: center;
}

.email-verify-results-section {
    padding-bottom: 72px;
}

.email-verify-result-list {
    overflow: hidden;
    border: 1px solid rgba(14, 35, 64, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 34, 66, 0.08);
}

.email-verify-result-list div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(14, 35, 64, 0.1);
}

.email-verify-result-list div:last-child {
    border-bottom: 0;
}

.email-verify-result-list span {
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
}

.email-verify-result-list strong {
    color: var(--text);
    font-weight: 600;
}

.email-verify-result-list .ok {
    background: #e8f8ef;
    color: #087b35;
}

.email-verify-result-list .bad {
    background: #fff0f0;
    color: #c92929;
}

.email-verify-result-list .warn {
    background: #fff7e7;
    color: #b86100;
}

.email-verify-result-list .neutral {
    background: #f3f1fb;
    color: #514a78;
}

.shared-stats-overlay {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(7, 59, 139, 0.82);
    color: #fff;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.shared-stats-overlay strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.08rem;
    line-height: 1.25;
}

.shared-stats-overlay div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.shared-stats-overlay span {
    display: grid;
    gap: 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
}

.shared-stats-overlay b {
    color: #fff;
    font-size: 1.08rem;
}

.shared-hosting-tools-section .app-logo-card {
    min-height: 146px;
    padding: 14px 12px;
    text-align: center;
}

.shared-hosting-tools-section .app-logo-media {
    min-height: 56px;
    margin-bottom: 10px;
}

.shared-hosting-tools-section .app-logo-media img {
    max-width: 92px;
    max-height: 38px;
}

.shared-hosting-tools-section .app-logo-card h3 {
    margin: 0 0 6px;
    font-size: 0.86rem;
}

.shared-hosting-tools-section .app-logo-card p {
    font-size: 0.72rem;
    line-height: 1.38;
}

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

.linux-vps-faq-grid details {
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 10px 24px rgba(16, 24, 39, 0.04);
}

.linux-vps-faq-grid summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 20px;
    color: #101827;
    font-size: 0.98rem;
    font-weight: 800;
}

.linux-vps-faq-grid summary::-webkit-details-marker {
    display: none;
}

.linux-vps-faq-grid summary::after {
    content: "+";
    float: right;
    color: #ff741f;
    font-size: 1.2rem;
    line-height: 1;
}

.linux-vps-faq-grid details[open] summary::after {
    content: "-";
}

.linux-vps-faq-grid details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #667085;
    font-size: 0.9rem;
    line-height: 1.55;
}

.os-logo-card {
    display: flex;
    min-width: 0;
    min-height: 78px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 8px;
    text-align: center;
}

.os-logo-card img {
    width: auto;
    max-width: 104px;
    max-height: 48px;
    object-fit: contain;
}

.os-logo-card span {
    color: #101827;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
}

.hosting-tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, 190px);
    justify-self: end;
    overflow: hidden;
    border: 1px solid #d9e0ea;
    border-radius: 4px;
}

.hosting-tabs a,
.hosting-tabs button {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0 16px;
    color: #101827;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    background: #fff;
}

.hosting-tabs img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(17%) sepia(31%) saturate(1661%) hue-rotate(184deg) brightness(92%) contrast(95%);
}

.hosting-tabs a.active,
.hosting-tabs .is-active {
    background: #073b8b;
    color: #fff;
    box-shadow: none;
}

.hosting-tabs a.active img,
.hosting-tabs .is-active img {
    filter: brightness(0) invert(1);
}

.view-link {
    color: #073b8b;
    font-size: 0.78rem;
    font-weight: 600;
}

.hosting-card-grid {
    display: block;
}

.hosting-plan-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hosting-mini-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 86px;
    gap: 12px;
    min-height: 194px;
    padding: 18px 18px 16px 24px;
    border: 1px solid #dde3ec;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.hosting-mini-card.featured {
    border-color: #ff7424;
    box-shadow: 0 10px 26px rgba(255, 116, 36, 0.12);
}

.mini-badge {
    position: absolute;
    top: -3px;
    right: 14px;
    min-width: 82px;
    padding: 6px 12px;
    border-radius: 0 0 5px 5px;
    background: #ff7424;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.66rem;
    font-weight: 800;
}

.hosting-mini-card h3 {
    margin: 0;
    color: #101827;
    font-size: 0.9rem;
}

.hosting-mini-card > div {
    min-width: 0;
}

.hosting-mini-card h3.plan-title-nowrap {
    white-space: nowrap;
}

.hosting-mini-card p {
    margin: 1px 0 8px;
    color: #667085;
    font-size: 0.76rem;
}

.hosting-mini-card p.plan-subtitle-nowrap {
    white-space: nowrap;
}

.hosting-mini-card strong {
    display: block;
    color: #073b8b;
    font-size: 1.55rem;
    line-height: 1;
}

.hosting-mini-card strong span,
.home-vps-card strong span {
    color: #34445d;
    font-size: 0.74rem;
    font-weight: 500;
}

.hosting-mini-card .plan-price-stack {
    gap: 4px;
    margin: 2px 0 0;
}

.hosting-mini-card .plan-price-regular {
    font-size: 0.78rem !important;
}

.hosting-mini-card .plan-price-regular span {
    font-size: 0.58rem !important;
}

.hosting-mini-card .plan-price-offer {
    font-size: 1.5rem !important;
}

.hosting-mini-card .plan-price-offer span {
    font-size: 0.74rem !important;
}

.hosting-mini-card .plan-promo-badge {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 0.56rem !important;
}

.hosting-mini-card ul {
    display: grid;
    gap: 4px;
    margin: 11px 0 0;
    padding: 0;
    list-style: none;
    color: #475467;
    font-size: 0.72rem;
}

.hosting-mini-card li {
    min-width: 0;
}

.hosting-mini-card li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #073b8b;
}

.hosting-mini-card .plan-feature-storage {
    white-space: nowrap;
}

.order-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    margin-top: 14px;
    padding: 0 15px;
    border-radius: 5px;
    background: #ff7424;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.order-now:hover {
    background: #073b8b;
}

.plan-server-icon {
    align-self: end;
    justify-self: center;
    width: 74px;
    height: 74px;
    object-fit: contain;
    opacity: 0.34;
}

.server-art {
    align-self: end;
    justify-self: center;
    width: 70px;
    height: 64px;
    border-radius: 12px;
    background:
        linear-gradient(170deg, #f3f6fb 0 32%, #b6c2d4 33% 43%, #eef2f8 44% 100%);
    box-shadow: 12px 10px 0 rgba(7, 59, 139, 0.08);
    transform: skewY(-12deg);
}

.server-art::before,
.server-art::after {
    content: "";
    position: absolute;
}

.vps-and-help {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: end;
}

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

.home-vps-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 76px;
    padding: 14px;
    border: 1px solid #dde3ec;
    border-radius: 7px;
    background: #fff;
    text-align: center;
}

.home-vps-card small {
    color: #0b2348;
    font-size: 0.67rem;
    font-weight: 700;
}

.home-vps-card strong {
    margin-top: 5px;
    color: #073b8b;
    font-size: 1.55rem;
    line-height: 1;
}

.home-vps-card.best > span {
    position: absolute;
    top: -2px;
    right: 12px;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    background: #1262bf;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.help-banner {
    display: grid;
    grid-template-columns: 1fr 112px;
    align-items: end;
    min-height: 118px;
    padding: 22px 20px;
    background:
        linear-gradient(120deg, #073b8b, #0b55b6);
    color: #fff;
}

.help-banner h3 {
    margin: 0 0 5px;
    font-size: 1rem;
}

.help-banner p {
    max-width: 310px;
    margin: 0 0 13px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.74rem;
    line-height: 1.42;
}

.help-banner .btn {
    min-height: 38px;
    border-radius: 5px;
    padding: 0 16px;
    font-size: 0.72rem;
}

.support-person {
    justify-self: end;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 50% 50% 8px 8px;
    background: linear-gradient(180deg, #ffffff, #dfe8f8);
    color: #073b8b;
    font-weight: 800;
    box-shadow: inset 0 -26px 0 #102340;
}

.concept-stats-section {
    padding: 18px 0 10px;
    background: #f5f7fb;
}

.concept-stats-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 18px 28px;
    border: 1px solid #cfd8e6;
    border-radius: 8px;
    background: #f9fbff;
}

.concept-stats-strip div {
    text-align: center;
}

.concept-stats-strip strong {
    display: block;
    color: #073b8b;
    font-size: 1.35rem;
    line-height: 1.1;
}

.concept-stats-strip span {
    color: #34445d;
    font-size: 0.67rem;
}

.client-trust-section {
    padding: 44px 0 52px;
    background: #f5f7fb;
}

.client-trust-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

.client-trust-head p {
    margin: 0 0 10px;
    color: #be2424;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.client-trust-head h2 {
    margin: 0;
    color: #101827;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.08;
}

.client-trust-head span {
    display: block;
    max-width: 740px;
    margin: 22px auto 0;
    color: #667085;
    font-size: 1.05rem;
    line-height: 1.55;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.client-logo-card {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border: 1px solid #d9e2ef;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 24, 39, 0.04);
}

.client-logo-card img {
    width: auto;
    max-width: 148px;
    max-height: 58px;
    object-fit: contain;
}

.home-cta-section {
    padding: 0 0 52px;
    background: #f5f7fb;
}

.home-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    min-height: 220px;
    padding: 34px 40px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(105deg, rgba(7, 27, 58, 0.96), rgba(7, 59, 139, 0.82)),
        url("assets/hero/hosting-data-center.png") center/cover no-repeat;
    box-shadow: 0 22px 42px rgba(7, 27, 58, 0.16);
    color: #fff;
}

.home-cta-card p {
    margin: 0 0 8px;
    color: #ff9a46;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-cta-card h2 {
    max-width: 740px;
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 1.12;
}

.home-cta-card span {
    display: block;
    max-width: 760px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.92rem;
    line-height: 1.55;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.home-cta-btn {
    display: inline-flex;
    min-height: 44px;
    min-width: 136px;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 5px;
    font-size: 0.82rem;
    font-weight: 800;
}

.home-cta-btn.primary {
    background: #ff7424;
    color: #fff;
}

.home-cta-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.vps-config-page {
    background: var(--surface-soft);
}

.vps-config-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(4, 17, 38, 0.96) 0%, rgba(7, 27, 58, 0.88) 48%, rgba(7, 27, 58, 0.7) 100%),
        url("assets/hero/hosting-data-center.png") center / cover;
    padding: 74px 0 58px;
}

.vps-config-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 34px;
    align-items: end;
}

.vps-config-hero-copy h1 {
    margin: 12px 0 14px;
    max-width: 760px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.vps-config-hero-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.7;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--orange-400);
    font-size: 0.82rem;
    font-weight: 800;
}

.vps-spec-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.vps-spec-strip span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
}

.vps-spec-strip strong {
    color: #fff;
    font-size: 1.02rem;
}

.vps-config-quick-card {
    padding: 26px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.vps-config-quick-card span {
    display: block;
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.vps-config-quick-card strong {
    display: block;
    margin-top: 6px;
    color: var(--blue-950);
    font-size: 2.8rem;
    line-height: 1;
}

.vps-config-quick-card small {
    color: var(--ink-700);
    font-size: 1rem;
}

.vps-config-quick-card p {
    margin: 16px 0 0;
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.65;
}

.vps-config-section {
    padding: 58px 0 72px;
}

.vps-config-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    align-items: start;
}

.vps-config-main {
    display: grid;
    gap: 22px;
}

.config-step {
    padding: 26px;
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 27, 58, 0.06);
}

.config-step-head {
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
}

.config-step-head span {
    color: var(--orange-500);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.config-step-head h2 {
    margin: 0;
    color: var(--ink-900);
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.2;
}

.config-step-head p {
    max-width: 680px;
    margin: 0;
    color: var(--ink-700);
    font-size: 0.9rem;
    line-height: 1.65;
}

.config-summary-card {
    display: grid;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(31, 103, 203, 0.18);
    border-radius: 8px;
    background: linear-gradient(145deg, #f7fbff, #fff);
}

.config-summary-card strong {
    display: block;
    color: var(--blue-950);
    font-size: 1.06rem;
}

.config-summary-card small {
    color: var(--ink-700);
}

.config-summary-card ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.config-summary-card li {
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-950);
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(12, 27, 55, 0.08);
}

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

.region-grid,
.image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.term-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.config-option {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 112px;
    padding: 17px;
    border: 1px solid rgba(12, 27, 55, 0.12);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.config-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.clean-submenu .menu-ribbon {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
    min-width: 32px;
    margin-left: 8px;
    padding: 2px 6px;
    flex: 0 0 auto;
    font-size: 0.54rem;
    vertical-align: middle;
}

.clean-submenu a {
    display: flex;
    align-items: center;
}

.clean-submenu a > span {
    min-width: 0;
}

.config-option span {
    color: var(--blue-950);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.25;
}

.config-option strong {
    color: var(--orange-500);
    font-size: 0.98rem;
    line-height: 1.3;
}

.config-option small {
    color: var(--ink-700);
    font-size: 0.76rem;
    line-height: 1.45;
}

.app-option-with-logo {
    padding-right: 92px;
}

.app-option-logo {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 62px;
    max-height: 42px;
    object-fit: contain;
    transform: translateY(-50%);
}

.app-option-icon-logo {
    width: 48px;
    opacity: 0.58;
}

.region-option-logo {
    width: 46px;
    max-height: 34px;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(7, 27, 58, 0.12);
}

.app-option-text-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 34px;
    padding: 0 8px;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-800);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: inset 0 0 0 1px rgba(31, 103, 203, 0.16);
}

.config-option:hover,
.config-option.is-selected {
    border-color: rgba(31, 103, 203, 0.52);
    background: var(--blue-50);
    box-shadow: 0 14px 34px rgba(31, 103, 203, 0.1);
    transform: translateY(-1px);
}

.recommended-option::after {
    content: "Recommended";
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #d71920;
    color: #ffea00;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
}

.vps-cart {
    position: sticky;
    top: 98px;
}

.vps-cart-card {
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 64px rgba(7, 27, 58, 0.14);
}

.cart-top {
    display: grid;
    gap: 4px;
    padding: 20px 22px;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
    color: #fff;
}

.cart-top span {
    color: var(--orange-400);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-top strong {
    font-size: 1.15rem;
    line-height: 1.25;
}

.cart-price {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    padding: 20px 22px 10px;
    color: var(--blue-950);
}

.cart-price strong {
    font-size: 2.5rem;
    line-height: 1;
}

.cart-price span {
    padding-bottom: 5px;
    color: var(--ink-700);
    font-weight: 700;
}

.cart-lines {
    display: grid;
    padding: 8px 22px 18px;
}

.cart-lines div,
.cart-total-box div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 27, 55, 0.08);
}

.cart-lines div:first-child {
    display: grid;
    gap: 6px;
}

.cart-lines div:first-child strong {
    text-align: left;
    line-height: 1.45;
}

.cart-lines span,
.cart-total-box span {
    color: var(--ink-700);
    font-size: 0.78rem;
}

.cart-lines strong,
.cart-total-box strong {
    color: var(--blue-950);
    font-size: 0.82rem;
    text-align: right;
}

.cart-total-box {
    margin: 0 22px;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--blue-50);
}

.cart-total-box div:last-child {
    border-bottom: 0;
}

.cart-total-box div:last-child strong {
    color: var(--orange-500);
    font-size: 1rem;
}

.cart-renewal-card {
    margin: 14px 22px 0;
    padding: 10px 14px;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    background: #fff7ed;
    color: #9a3412;
    font-size: 0.78rem;
    line-height: 1.3;
}

.cart-renewal-card span {
    display: inline;
    margin: 0 8px 0 0;
    color: #9a3412;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-renewal-card strong {
    display: inline;
    color: #c2410c;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cart-renewal-card strong span {
    display: inline;
    margin: 0;
    color: inherit;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: none;
}

.cart-note {
    margin: 16px 22px 0;
    color: var(--ink-700);
    font-size: 0.74rem;
    line-height: 1.55;
}

.cart-primary-btn,
.cart-secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 14px 22px 0;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
}

.cart-primary-btn {
    background: var(--orange-500);
    color: #fff;
}

.cart-primary-btn:hover {
    background: #e96c12;
}

.cart-order-btn {
    width: calc(100% - 44px);
    border: 0;
}

.cart-secondary-btn {
    margin-bottom: 0;
    border: 1px solid rgba(31, 103, 203, 0.24);
    color: var(--blue-800);
}

.cart-secondary-btn:hover {
    border-color: var(--blue-700);
    color: var(--blue-950);
}

.cart-quotation-btn {
    width: calc(100% - 44px);
    margin-bottom: 22px;
    background: #fff;
}

.quotation-modal[hidden] {
    display: none;
}

.quotation-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.quotation-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 17, 38, 0.72);
}

.quotation-dialog {
    position: relative;
    width: min(620px, 100%);
    max-height: min(760px, calc(100vh - 44px));
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.quotation-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-950);
    font-size: 1.4rem;
    line-height: 1;
}

.quotation-dialog-head {
    padding: 28px 30px 18px;
    border-bottom: 1px solid rgba(12, 27, 55, 0.1);
}

.quotation-dialog-head span {
    color: var(--orange-500);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.quotation-dialog-head h2 {
    margin: 6px 0 6px;
    color: var(--blue-950);
    font-size: 1.65rem;
    line-height: 1.2;
}

.quotation-dialog-head p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.88rem;
}

.quotation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px 30px 30px;
}

.quotation-form label {
    display: grid;
    gap: 6px;
}

.quotation-form label:first-child {
    grid-column: 1 / -1;
}

.quotation-form span {
    color: var(--blue-950);
    font-size: 0.78rem;
    font-weight: 800;
}

.quotation-form input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(12, 27, 55, 0.14);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--ink-900);
    outline: 0;
}

.quotation-form input:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 3px rgba(31, 103, 203, 0.12);
}

.quotation-submit {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    border: 0;
}

.quotation-form small {
    grid-column: 1 / -1;
    color: var(--ink-700);
    font-size: 0.74rem;
    line-height: 1.55;
}

.quotation-status {
    grid-column: 1 / -1;
    min-height: 18px;
    color: var(--blue-800);
    font-size: 0.78rem;
    font-weight: 700;
}

.order-modal[hidden] {
    display: none;
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.order-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 17, 38, 0.76);
}

.order-dialog {
    position: relative;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    width: min(1040px, 100%);
    max-height: min(860px, calc(100vh - 44px));
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.order-payment-panel {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 32px 28px;
    background:
        linear-gradient(145deg, rgba(244, 124, 32, 0.18), transparent 38%),
        linear-gradient(180deg, var(--blue-950), #041126);
    color: #fff;
}

.order-payment-panel > span {
    color: var(--orange-400);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.order-payment-panel h2 {
    margin: 0;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.15;
}

.order-payment-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.84rem;
    line-height: 1.65;
}

.order-pay-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-950);
}

.order-pay-card small {
    color: var(--ink-700);
    font-weight: 800;
    text-transform: uppercase;
}

.order-pay-card > strong {
    color: var(--orange-500);
    font-size: 2rem;
    line-height: 1;
}

.order-pay-card img {
    width: 178px;
    height: 178px;
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 8px;
}

.order-upi-link {
    width: 100%;
    margin: 0;
}

.order-pay-card p {
    color: var(--ink-700);
    text-align: center;
}

.order-mini-summary {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.45;
}

.order-mini-summary div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 8px;
}

.order-mini-summary strong {
    color: #fff;
    text-align: right;
}

.order-form-panel {
    min-width: 0;
    overflow: auto;
    padding: 30px;
}

.order-mode-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 20px;
}

.order-mode-tabs button {
    min-height: 42px;
    border: 1px solid rgba(31, 103, 203, 0.18);
    border-radius: 8px;
    background: #fff;
    color: var(--blue-800);
    font-size: 0.82rem;
    font-weight: 800;
}

.order-mode-tabs button.is-active {
    background: var(--blue-800);
    color: #fff;
}

.order-form {
    display: grid;
    gap: 18px;
}

.order-form-section {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 8px;
    background: #fff;
}

.order-form-section > span {
    color: var(--orange-500);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.order-form-section h3 {
    margin: 0;
    color: var(--blue-950);
    font-size: 1.15rem;
    line-height: 1.25;
}

.order-form-section p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.84rem;
    line-height: 1.6;
}

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

.order-field-grid label {
    display: grid;
    gap: 6px;
    color: var(--blue-950);
    font-size: 0.76rem;
    font-weight: 800;
}

.order-field-grid .wide-field {
    grid-column: 1 / -1;
}

.order-field-grid input,
.order-field-grid select {
    min-height: 42px;
    width: 100%;
    border: 1px solid rgba(12, 27, 55, 0.14);
    border-radius: 8px;
    padding: 0 11px;
    outline: 0;
    background: #fff;
}

.order-field-grid input:focus,
.order-field-grid select:focus {
    border-color: var(--blue-700);
    box-shadow: 0 0 0 3px rgba(31, 103, 203, 0.12);
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-700);
    font-size: 0.82rem;
    line-height: 1.5;
}

.terms-check input {
    margin-top: 3px;
}

.order-submit {
    width: 100%;
    justify-content: center;
    border: 0;
}

.customer-otp-secondary-form {
    margin-top: 10px;
}

.checkout-page {
    background: var(--surface-soft);
}

.not-found-section {
    min-height: 58vh;
    display: grid;
    align-items: center;
    padding: 90px 0;
    background:
        linear-gradient(120deg, rgba(244, 124, 32, 0.11), transparent 35%),
        linear-gradient(135deg, #06162f, #092452 60%, #041126);
}

.not-found-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
    text-align: center;
}

.not-found-card > span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--orange-500);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.not-found-card h1 {
    margin: 0 0 12px;
    color: var(--blue-950);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.08;
}

.not-found-card p {
    max-width: 520px;
    margin: 0 auto 24px;
    color: var(--ink-700);
    line-height: 1.7;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.checkout-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(4, 17, 38, 0.96), rgba(7, 27, 58, 0.84)),
        url("assets/hero/hosting-data-center.png") center / cover;
    padding: 68px 0 52px;
}

.checkout-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
    align-items: end;
}

.checkout-hero-copy h1 {
    margin: 12px 0 12px;
    color: #fff;
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1.02;
}

.checkout-hero-copy p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.checkout-hero-total {
    display: grid;
    gap: 7px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-950);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.checkout-hero-total span,
.checkout-panel-head span {
    color: var(--orange-500);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-hero-total strong {
    color: var(--orange-500);
    font-size: 2.4rem;
    line-height: 1;
}

.checkout-hero-total small {
    color: var(--ink-700);
    font-weight: 700;
}

.checkout-section {
    padding: 44px 0 76px;
}

.checkout-notice {
    margin: 0 0 18px;
    padding: 13px 16px;
    border: 1px solid rgba(180, 100, 25, 0.22);
    border-radius: 8px;
    background: var(--amber-100);
    color: var(--amber-600);
    font-size: 0.88rem;
    font-weight: 700;
}

.checkout-notice.success {
    border-color: rgba(36, 133, 78, 0.24);
    background: #e8f7ee;
    color: #17683d;
}

.self-captcha-field {
    display: grid;
    gap: 8px;
}

.self-captcha-field strong {
    color: var(--orange-500);
    font-weight: 900;
}

.self-captcha-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.self-captcha-row .btn {
    min-height: 48px;
    white-space: nowrap;
}

.forgot-password-link {
    display: inline-flex;
    margin-top: 12px;
    border: 0;
    background: transparent;
    padding: 0;
    color: var(--blue-700);
    font-size: 0.86rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
}

.auth-page-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 28px;
    background: var(--surface-soft);
}

.auth-card {
    width: min(520px, 100%);
    padding: 30px;
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(7, 27, 58, 0.1);
}

.auth-card h1 {
    margin: 12px 0 8px;
    color: var(--blue-950);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1.1;
}

.auth-card p {
    margin: 0 0 20px;
    color: var(--ink-700);
    line-height: 1.7;
}

.customer-hero,
.customer-dashboard-hero {
    padding: 74px 0;
    background:
        linear-gradient(120deg, rgba(244, 124, 32, 0.15), transparent 34%),
        linear-gradient(135deg, #06162f, #092452 58%, #041126);
    color: #fff;
}

.customer-hero-grid,
.customer-dashboard-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 34px;
    align-items: center;
}

.customer-hero-copy h1,
.customer-dashboard-head h1 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.04;
}

.customer-hero-copy p,
.customer-dashboard-head p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.customer-dashboard-head > div > span,
.customer-login-card > span,
.customer-panel-head span,
.customer-stat-card span {
    color: var(--orange-500);
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
}

.customer-login-card {
    padding: 30px;
    border-radius: 8px;
    background: #fff;
    color: var(--ink-900);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.customer-login-card h2 {
    margin: 8px 0 18px;
    color: var(--blue-950);
    font-size: 1.6rem;
}

.customer-register-grid {
    grid-template-columns: minmax(260px, 0.75fr) minmax(620px, 1.35fr);
    align-items: start;
}

.customer-register-grid .customer-login-card {
    width: 100%;
    max-width: 820px;
    justify-self: end;
}

.customer-register-grid .order-field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-auth-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 16px;
    margin-top: 14px;
}

.customer-dashboard-section {
    padding: 44px 0 76px;
    background: var(--surface-soft);
}

.customer-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.customer-stat-card,
.customer-panel {
    border: 1px solid rgba(12, 27, 55, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 27, 58, 0.07);
}

.customer-stat-card {
    display: grid;
    gap: 8px;
    padding: 22px;
}

.customer-stat-card strong {
    color: var(--blue-950);
    font-size: 2rem;
    line-height: 1;
}

.customer-panel {
    margin-top: 24px;
    overflow: hidden;
}

.customer-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(12, 27, 55, 0.08);
}

.customer-panel-head h2 {
    margin: 6px 0 0;
    color: var(--blue-950);
    font-size: 1.35rem;
}

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

.customer-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.customer-table th,
.customer-table td {
    padding: 15px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(12, 27, 55, 0.08);
}

.customer-table th {
    color: var(--ink-700);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.customer-table tr:last-child td {
    border-bottom: 0;
}

.customer-table strong {
    color: var(--blue-950);
}

.customer-table small {
    display: block;
    margin-top: 6px;
    color: var(--ink-700);
    font-size: 0.76rem;
    font-weight: 700;
}

.customer-status {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    border-radius: 999px;
    padding: 0 10px;
    background: rgba(31, 103, 203, 0.1);
    color: var(--blue-800);
    font-size: 0.76rem;
    font-weight: 800;
}

.customer-status.is-paid,
.customer-status.is-complete {
    background: #dff7e8;
    color: #17683d;
}

.customer-status.is-payment-pending,
.customer-status.is-alert {
    background: #fde8e8;
    color: #b42318;
}

.customer-status.is-pending {
    background: #fff1d8;
    color: #9a5b00;
}

.customer-status.is-sent {
    background: #e8f0ff;
    color: var(--blue-800);
}

.customer-status.is-neutral {
    background: #eef2f7;
    color: #475569;
}

.customer-empty-state {
    padding: 24px;
    color: var(--ink-700);
    font-weight: 700;
}

.config-empty-option {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed rgba(12, 27, 55, 0.18);
    border-radius: 8px;
    background: #f8fbff;
    color: var(--ink-700);
    font-size: 0.88rem;
    font-weight: 700;
}

.single-column {
    grid-template-columns: 1fr;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.checkout-payment-panel,
.checkout-form-panel {
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.checkout-payment-panel {
    position: sticky;
    top: 112px;
    overflow: hidden;
}

.checkout-form-panel {
    overflow: visible;
    background: #fff;
    border: 1px solid rgba(12, 27, 55, 0.08);
}

.checkout-panel-head {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.checkout-panel-head h2 {
    margin: 0;
    color: var(--blue-950);
    font-size: 1.45rem;
    line-height: 1.2;
}

.checkout-panel-head p {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.88rem;
    line-height: 1.6;
}

.checkout-edit-link {
    display: inline-flex;
    justify-content: center;
    min-height: 42px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    color: #fff;
    font-size: 0.84rem;
    font-weight: 800;
}

.checkout-edit-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkout-promo-form {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: end;
    margin: 16px 0;
    padding: 14px;
    border: 1px solid rgba(255, 121, 31, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.checkout-promo-form label {
    display: grid;
    gap: 6px;
    margin: 0;
}

.checkout-promo-form label span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 800;
}

.checkout-promo-form input {
    min-width: 0;
    min-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--blue-950);
    font-weight: 800;
    text-transform: uppercase;
}

.checkout-promo-form .admin-btn {
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    padding: 0 14px;
    background: var(--orange-500);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.checkout-promo-form .admin-btn.secondary {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.checkout-promo-form small {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.checkout-promo-form small.is-success {
    color: #86efac;
}

.checkout-promo-form small.is-error {
    color: #fecaca;
}

.success-hero {
    min-height: 650px;
    display: grid;
    align-items: center;
    padding: 76px 0;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(4, 17, 38, 0.96), rgba(10, 44, 95, 0.86)),
        url("assets/hero/hosting-data-center.png") center / cover;
}

.success-shell {
    max-width: 880px;
    margin: 0 auto;
    padding: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
    text-align: center;
    backdrop-filter: blur(14px);
}

.success-icon {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 18px 46px rgba(30, 153, 87, 0.36);
}

.success-icon span {
    width: 34px;
    height: 18px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg) translate(2px, -2px);
}

.success-kicker {
    color: var(--orange-400);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.success-shell h1 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: clamp(2.1rem, 4.4vw, 4.3rem);
    line-height: 1.02;
}

.success-shell > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.15rem;
}

.success-shell > p strong {
    color: #fff;
}

.success-message {
    display: grid;
    gap: 8px;
    max-width: 660px;
    margin: 28px auto 0;
    padding: 22px;
    border-radius: 8px;
    background: #fff;
    color: var(--blue-950);
}

.success-message strong {
    color: var(--blue-950);
    font-size: 1.12rem;
}

.success-message span {
    color: var(--ink-700);
}

.success-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 660px;
    margin: 22px auto 0;
    text-align: left;
}

.success-summary div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.success-summary span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.success-summary strong {
    color: #fff;
    font-size: 0.86rem;
    text-align: right;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1180px) {
    .vps-config-hero-grid,
    .vps-config-layout,
    .checkout-hero-grid,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .vps-cart,
    .checkout-payment-panel {
        position: static;
    }

    .vps-cart-card {
        max-width: 620px;
    }
}

@media (max-width: 940px) {
    .linux-vps-advantages-grid,
    .linux-vps-faq-grid,
    .shared-spec-grid,
    .shared-web-feature-grid,
    .domain-hero-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .datacenter-media-panel,
    .datacenter-media-panel img {
        min-height: 260px;
    }

    .shared-hero-checks {
        grid-template-columns: 1fr;
    }

    .domain-hero-search {
        grid-template-columns: 1fr;
    }

    .domain-hero-search select {
        border-top: 1px solid #dbe3ef;
        border-left: 0;
    }

    .promo-offers-grid {
        grid-template-columns: 1fr;
    }

    .services-status-grid {
        grid-template-columns: 1fr;
    }

    .promo-offers-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .promo-offers-toolbar .btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .vps-config-hero {
        padding: 52px 0 42px;
    }

    .checkout-hero {
        padding: 50px 0 40px;
    }

    .success-hero {
        padding: 52px 0;
    }

    .success-shell {
        padding: 30px 22px;
    }

    .vps-spec-strip {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vps-spec-strip span {
        width: 100%;
        overflow-wrap: anywhere;
    }

    .vps-config-quick-card,
    .config-step {
        padding: 22px;
    }

    .option-grid,
    .region-grid,
    .image-grid,
    .two-up-options,
    .config-summary-card ul {
        grid-template-columns: 1fr;
    }

    .vps-config-layout {
        gap: 24px;
    }

    .quotation-form {
        grid-template-columns: 1fr;
    }

    .order-dialog {
        grid-template-columns: 1fr;
        overflow: auto;
    }

    .order-payment-panel,
    .order-form-panel {
        padding: 24px 22px;
    }

    .checkout-hero-total {
        padding: 22px;
    }

    .order-field-grid,
    .order-mode-tabs,
    .success-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1180px) {
    .concept-home .nav-list {
        gap: 10px;
    }

    .concept-home .nav-list a,
    .concept-home .submenu-toggle {
        font-size: 0.76rem;
    }

    .domain-strip {
        grid-template-columns: 1fr;
    }

    .domain-strip .domain-result {
        grid-column: auto;
    }

    .domain-price-row {
        grid-template-columns: repeat(3, max-content);
        justify-content: start;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    .concept-home .topbar-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) max-content;
        align-items: center;
        justify-content: space-between;
        min-height: 38px;
        gap: 10px;
    }

    .concept-home .topbar-list {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        min-width: 0;
    }

    .concept-home .topbar-list:first-child span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .concept-home .topbar-list:first-child span:nth-child(3),
    .concept-home .topbar-list:last-child span {
        display: none;
    }

    .concept-home .topbar-list:last-child .customer-combo-btn,
    .concept-home .topbar-list:last-child .customer-combo-btn span {
        display: inline-flex !important;
    }

    .concept-home .topbar .btn {
        min-height: 32px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .concept-home .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 68px;
        gap: 14px;
    }

    .concept-home .brand {
        min-width: 0;
    }

    .concept-home .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        margin-left: auto;
        min-width: 76px;
        min-height: 40px;
        padding: 0 16px;
        white-space: nowrap;
        overflow: visible;
    }

    .concept-home .site-nav {
        inset: 112px 18px auto 18px;
        justify-self: stretch;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
        border-radius: 14px;
    }

    .concept-home .nav-list {
        gap: 8px;
    }

    .concept-home .nav-list a[aria-current="page"] {
        box-shadow: none;
    }

    .concept-hero-grid,
    .contact-hero-grid,
    .contact-page-grid,
    .vps-and-help {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .hosting-plan-panel,
    .home-vps-grid,
    .email-verify-price-grid,
    .app-logo-grid,
    .os-logo-strip,
    .concept-stats-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .email-verify-results-grid {
        grid-template-columns: 1fr;
    }

    .client-trust-head h2 {
        font-size: 2.2rem;
    }

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

    .home-cta-actions {
        justify-content: flex-start;
    }

    .concept-section-head,
    .concept-section-head.slim {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-template-columns: 1fr;
        align-items: start;
    }

    .concept-section-head > div {
        min-width: 0;
        max-width: 100%;
    }

    .concept-section-head h2 {
        max-width: 100%;
        font-size: 1.45rem;
        overflow-wrap: anywhere;
    }

    .vps-start-card {
        max-width: 420px;
    }

    .contact-quick-card {
        max-width: 520px;
    }
}

@media (max-width: 620px) {
    body.concept-home {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .two-column-links {
        grid-template-columns: 1fr;
    }

    .footer-contact-item small,
    .footer-links a {
        font-size: 0.76rem;
    }

    .footer-contact-item strong {
        font-size: 0.9rem;
    }

    .concept-home .container {
        width: min(calc(100vw - 36px), 360px) !important;
        max-width: min(calc(100vw - 36px), 360px) !important;
        margin-left: auto;
        margin-right: auto;
        min-width: 0;
    }

    .concept-home .topbar {
        font-size: 0.74rem;
    }

    .concept-home .topbar-inner {
        display: flex;
        justify-content: flex-start;
    }

    .concept-home .topbar-list:first-child span:nth-child(2) {
        display: none;
    }

    .concept-home .topbar-list:last-child {
        display: none;
    }

    .concept-home .brand img {
        width: 168px;
    }

    .concept-home .header-inner {
        min-height: 64px;
        position: relative;
    }

    .concept-section-head,
    .concept-section-head.slim {
        width: 100%;
        max-width: 100%;
        margin: 0 0 14px;
        gap: 14px;
        overflow: hidden;
    }

    .concept-section-head > div {
        width: 100%;
    }

    .concept-section-head h2 {
        width: 100%;
        max-width: 100%;
        font-size: 1.32rem;
        line-height: 1.18;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .concept-home .nav-toggle {
        position: fixed;
        top: 58px;
        right: auto;
        left: min(316px, 72vw);
        z-index: 80;
        width: 44px;
        min-width: 44px;
        height: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 999px;
        font-size: 0;
        transform: none;
    }

    .concept-home .nav-toggle::before {
        content: "";
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    }

    .concept-home .topbar-list {
        gap: 10px;
    }

    .concept-hero {
        padding-top: 34px;
    }

    .contact-hero {
        padding: 44px 0 42px;
    }

    .contact-form-panel {
        padding: 22px;
    }

    .contact-quick-list,
    .contact-info-card {
        padding: 18px;
    }

    .contact-quick-list a {
        display: grid;
        min-height: 0;
    }

    .contact-page-form .form-row,
    .contact-page-form .form-row.two {
        grid-template-columns: 1fr;
    }

    .contact-page-form .btn {
        width: 100%;
    }

    .concept-home .concept-hero-grid {
        width: min(86vw, 354px) !important;
        max-width: min(86vw, 354px) !important;
        margin-left: 18px;
        margin-right: auto;
    }

    .concept-hero-copy h1 {
        font-size: 2.35rem;
    }

    .concept-hero-copy,
    .concept-hero-copy h1,
    .concept-hero-copy p,
    .hero-metrics,
    .concept-actions {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .concept-hero-copy p {
        overflow-wrap: break-word;
    }

    .vps-start-card {
        width: 100%;
        max-width: 100%;
    }

    .concept-actions {
        gap: 12px;
        margin-top: 18px;
    }

    .concept-actions .btn {
        min-width: 0;
        flex: 1 1 0;
        min-height: 50px;
        padding: 0 8px;
        font-size: 0.86rem;
    }

    .hero-metrics,
    .hosting-plan-panel,
    .email-verify-price-grid,
    .home-vps-grid,
    .app-logo-grid,
    .os-logo-strip,
    .concept-stats-strip,
    .domain-price-row {
        grid-template-columns: 1fr;
    }

    .email-verify-price-card {
        min-height: 0;
        padding: 22px;
    }

    .email-verify-results-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .email-verify-result-list div {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px;
    }

    .client-trust-section {
        padding: 34px 0 38px;
    }

    .client-trust-head {
        margin-bottom: 22px;
    }

    .client-trust-head h2 {
        font-size: 1.75rem;
    }

    .client-trust-head span {
        margin-top: 12px;
        font-size: 0.9rem;
    }

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

    .client-logo-card {
        min-height: 82px;
        padding: 12px;
    }

    .client-logo-card img {
        max-width: 118px;
        max-height: 48px;
    }

    .home-cta-section {
        padding-bottom: 38px;
    }

    .home-cta-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .home-cta-card h2 {
        font-size: 1.48rem;
    }

    .home-cta-card span {
        font-size: 0.84rem;
    }

    .home-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home-cta-btn {
        width: 100%;
    }

    .hosting-card-grid,
    .hosting-plan-panel {
        width: 100%;
        max-width: 100% !important;
        min-width: 0;
        overflow: hidden;
    }

    .domain-strip {
        padding: 18px;
        min-width: 0;
    }

    .domain-strip-form {
        grid-template-columns: 1fr;
    }

    .domain-strip-form input,
    .domain-strip-form select,
    .domain-strip-form button {
        border-radius: 4px;
        border: 1px solid #dde3ec;
    }

    .domain-strip-form button {
        border-color: #073b8b;
    }

    .hosting-tabs {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: stretch;
        border-radius: 6px;
    }

    .hosting-tabs button,
    .hosting-tabs a {
        min-height: 48px;
        gap: 5px;
        padding: 0 4px;
        min-width: 0;
        max-width: 100%;
        font-size: 0.66rem;
        line-height: 1.15;
        white-space: normal;
        text-align: center;
        overflow-wrap: anywhere;
    }

    .hosting-tabs img {
        width: 14px;
        height: 14px;
        flex: 0 0 auto;
    }

    .datacenter-note {
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        overflow-wrap: anywhere;
    }

    .datacenter-note span {
        overflow-wrap: anywhere;
    }

    .hosting-mini-card,
    .app-logo-card,
    .os-logo-card,
    .help-banner {
        grid-template-columns: 1fr;
    }

    .os-logo-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 8px;
        gap: 10px;
    }

    .os-logo-card {
        min-height: 88px;
        border: 1px solid #e7edf5;
        border-radius: 7px;
    }

    .hosting-mini-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        min-height: 258px;
        padding: 24px 20px 24px 24px;
    }

    .hosting-mini-card > div {
        padding-right: 64px;
    }

    .hosting-mini-card .plan-feature-storage {
        font-size: clamp(0.66rem, 3vw, 0.72rem);
    }

    .hosting-mini-card h3 {
        white-space: normal;
    }

    .plan-server-icon {
        position: absolute;
        right: 58px;
        bottom: 26px;
        width: 58px;
        height: 58px;
        opacity: 0.32;
        pointer-events: none;
    }

    .support-person {
        display: none;
    }
}

@media (max-width: 760px) {
    .customer-hero,
    .customer-dashboard-hero {
        padding: 50px 0 42px;
    }

    .customer-hero-grid,
    .customer-dashboard-head,
    .customer-stat-grid {
        grid-template-columns: 1fr;
    }

    .customer-login-card,
    .customer-stat-card,
    .customer-panel-head,
    .customer-empty-state {
        padding: 22px;
    }

    .customer-register-grid .customer-login-card {
        max-width: none;
        justify-self: stretch;
    }

    .customer-register-grid .order-field-grid {
        grid-template-columns: 1fr;
    }

    .customer-dashboard-head {
        gap: 22px;
    }

    .customer-dashboard-head .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .concept-home .container {
        width: calc(100vw - 48px) !important;
        max-width: calc(100vw - 48px) !important;
    }

    .concept-section-head h2 {
        font-size: 1.22rem;
    }

    .hosting-tabs button,
    .hosting-tabs a {
        gap: 4px;
        padding: 0 3px;
        font-size: 0.58rem;
    }

    .hosting-tabs img {
        width: 13px;
        height: 13px;
    }

    .hosting-mini-card {
        padding: 22px 18px 22px 20px;
    }

    .hosting-mini-card > div {
        padding-right: 56px;
    }

    .mini-badge {
        right: 10px;
        min-width: 74px;
        padding: 6px 9px;
        font-size: 0.58rem;
    }

    .plan-server-icon {
        right: 24px;
    }
}

/* Unified professional site menu */
.concept-home .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 20px;
}

.concept-home .site-nav {
    justify-self: end;
    min-width: 0;
}

.professional-menu {
    gap: 5px;
    padding: 6px;
    border: 1px solid rgba(12, 27, 55, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 42px rgba(7, 27, 58, 0.08);
}

.professional-menu > li > a,
.professional-menu .nav-link-group > a,
.professional-menu .submenu-toggle {
    min-height: 42px;
    border-radius: 9px;
}

.professional-menu > li > a,
.professional-menu .nav-link-group > a {
    gap: 8px;
    padding: 8px 10px;
    color: var(--blue-950);
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.professional-menu .nav-link-group {
    gap: 2px;
    padding: 0 3px 0 0;
    border-radius: 10px;
}

.professional-menu .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #eef5ff;
    border: 1px solid #d8e6f7;
    color: var(--blue-800);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
    flex: 0 0 auto;
}

.professional-menu .nav-icon-domain,
.professional-menu .nav-icon-hosting,
.professional-menu .nav-icon-dedicated {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}

.professional-menu > li > a:hover,
.professional-menu .nav-link-group > a:hover,
.professional-menu > li > a[aria-current="page"],
.professional-menu .nav-link-group > a[aria-current="page"] {
    background: var(--blue-800);
    color: #fff;
}

.professional-menu > li > a:hover .nav-icon,
.professional-menu .nav-link-group > a:hover .nav-icon,
.professional-menu > li > a[aria-current="page"] .nav-icon,
.professional-menu .nav-link-group > a[aria-current="page"] .nav-icon {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.professional-menu .submenu-toggle {
    width: 28px;
    padding: 0;
    color: var(--blue-800);
}

.professional-menu .submenu-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.professional-menu .has-submenu:hover .submenu-toggle,
.professional-menu .has-submenu:focus-within .submenu-toggle,
.professional-menu .has-submenu.is-open .submenu-toggle {
    background: #eef5ff;
}

.professional-menu .has-submenu.is-open .submenu-toggle::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.professional-submenu {
    top: calc(100% + 14px);
    min-width: 285px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #dce6f2;
    background: #fff;
    box-shadow: 0 24px 58px rgba(7, 27, 58, 0.18);
}

.professional-submenu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #dce6f2;
    border-top: 1px solid #dce6f2;
    transform: rotate(45deg);
}

.professional-submenu a {
    position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 9px 11px;
    border-radius: 8px;
    color: var(--blue-950);
    font-size: 0.86rem;
    font-weight: 800;
}

.professional-submenu a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    padding: 4px;
    border-radius: 7px;
    background: #f5f9ff;
    border: 1px solid #e2ebf5;
}

.professional-submenu a::after {
    content: "";
    justify-self: end;
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.35;
}

.professional-submenu a:hover,
.professional-submenu a[aria-current="page"] {
    background: #f5f9ff;
    color: var(--blue-800);
}

@media (max-width: 1160px) {
    .professional-menu > li > a,
    .professional-menu .nav-link-group > a {
        font-size: 0.72rem;
        padding-inline: 7px;
    }

    .professional-menu .nav-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 940px) {
    .professional-menu {
        display: grid;
        gap: 8px;
        padding: 12px;
        border: 0;
        border-radius: 14px;
        box-shadow: none;
    }

    .professional-menu > li > a,
    .professional-menu .nav-link-group > a {
        min-height: 48px;
        padding: 10px 12px;
        font-size: 0.9rem;
        justify-content: flex-start;
    }

    .professional-menu .nav-link-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 8px;
        padding: 0;
    }

    .professional-menu .submenu-toggle {
        width: 44px;
        min-height: 48px;
        background: #eef5ff;
    }

    .professional-submenu {
        position: static;
        min-width: 0;
        margin: 8px 0 0;
        padding: 8px;
        border-radius: 10px;
        box-shadow: none;
        transform: none;
    }

    .professional-submenu::before {
        display: none;
    }

    .professional-submenu a {
        min-height: 46px;
        font-size: 0.84rem;
    }
}

@media (max-width: 420px) {
    .professional-menu > li > a,
    .professional-menu .nav-link-group > a {
        font-size: 0.82rem;
    }

    .professional-menu .nav-icon {
        width: 24px;
        height: 24px;
        font-size: 0.58rem;
    }
}

/* Clean text-only menu */
.concept-home .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
}

.concept-home .site-nav {
    justify-self: end;
    min-width: 0;
}

.clean-menu {
    gap: 2px;
    padding: 6px;
    border: 1px solid #dfe7f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 27, 58, 0.08);
}

.clean-menu > li > a,
.clean-menu .nav-link-group > a {
    min-height: 42px;
    padding: 10px 13px;
    border-radius: 6px;
    color: var(--blue-950);
    font-size: 0.84rem;
    font-weight: 800;
    white-space: nowrap;
}

.clean-menu .nav-link-group {
    gap: 0;
    padding: 0 4px 0 0;
    border-radius: 6px;
}

.clean-menu > li > a:hover,
.clean-menu .nav-link-group > a:hover,
.clean-menu > li > a[aria-current="page"],
.clean-menu .nav-link-group > a[aria-current="page"] {
    background: #073b8b;
    color: #fff;
}

.clean-menu .submenu-toggle {
    width: 30px;
    min-height: 42px;
    padding: 0;
    border-radius: 6px;
    color: var(--blue-800);
}

.clean-menu .submenu-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.clean-menu .has-submenu:hover .submenu-toggle,
.clean-menu .has-submenu:focus-within .submenu-toggle,
.clean-menu .has-submenu.is-open .submenu-toggle {
    background: #eef5ff;
}

.clean-submenu {
    top: calc(100% + 9px);
    min-width: 240px;
    padding: 8px;
    border: 1px solid #dfe7f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(7, 27, 58, 0.16);
}

.clean-submenu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--blue-950);
    font-size: 0.86rem;
    font-weight: 800;
}

.clean-submenu a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.4;
}

.clean-submenu a:hover,
.clean-submenu a[aria-current="page"] {
    background: #f3f7fd;
    color: var(--blue-800);
}

@media (max-width: 1180px) {
    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        padding-inline: 9px;
        font-size: 0.78rem;
    }
}

@media (max-width: 940px) {
    .clean-menu {
        display: grid;
        gap: 8px;
        padding: 12px;
        border: 0;
        box-shadow: none;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        min-height: 48px;
        padding: 11px 13px;
        font-size: 0.92rem;
    }

    .clean-menu .nav-link-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 8px;
        padding: 0;
    }

    .clean-menu .submenu-toggle {
        width: 44px;
        min-height: 48px;
        background: #eef5ff;
    }

    .clean-submenu {
        position: static;
        min-width: 0;
        margin: 8px 0 0;
        padding: 8px;
        border-radius: 8px;
        box-shadow: none;
        transform: none;
    }
}

/* Simple premium menu v2 */
.concept-home .site-header {
    background: #fff;
    border-bottom: 1px solid #e7edf5;
    box-shadow: 0 8px 24px rgba(7, 27, 58, 0.06);
}

.concept-home .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    min-height: 68px;
}

.concept-home .brand {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.concept-home .site-nav {
    justify-self: end;
}

.clean-menu {
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.clean-menu > li {
    position: relative;
}

.clean-menu > li > a,
.clean-menu .nav-link-group > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 68px;
    padding: 0 8px;
    border-radius: 0;
    color: #061a3a;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0;
}

.menu-ribbon {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 34px;
    padding: 2px 7px;
    border-radius: 999px;
    background: var(--orange-500);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(244, 124, 32, 0.24);
    pointer-events: none;
}

.clean-submenu .menu-ribbon {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
    min-width: 32px;
    margin-left: 8px;
    padding: 2px 6px;
    flex: 0 0 auto;
    font-size: 0.54rem;
    vertical-align: middle;
}

.clean-submenu .menu-ribbon {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none;
    min-width: 32px;
    margin-left: 8px;
    padding: 2px 6px;
    flex: 0 0 auto;
    font-size: 0.54rem;
    vertical-align: middle;
}

.clean-menu > li > a::after,
.clean-menu .nav-link-group > a::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: #ff741f;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.18s ease;
}

.clean-menu > li > a:hover,
.clean-menu .nav-link-group > a:hover,
.clean-menu > li > a[aria-current="page"],
.clean-menu .nav-link-group > a[aria-current="page"] {
    background: transparent;
    color: #073b8b;
}

.clean-menu > li > a:hover::after,
.clean-menu .nav-link-group > a:hover::after,
.clean-menu > li > a[aria-current="page"]::after,
.clean-menu .nav-link-group > a[aria-current="page"]::after {
    transform: scaleX(1);
}

.clean-menu:has(.has-submenu:hover) .nav-link-group > a[aria-current="page"]::after,
.clean-menu:has(.has-submenu:focus-within) .nav-link-group > a[aria-current="page"]::after,
.clean-menu:has(.has-submenu.is-open) .nav-link-group > a[aria-current="page"]::after {
    transform: scaleX(0);
}

.clean-menu .has-submenu:hover > .nav-link-group > a::after,
.clean-menu .has-submenu:focus-within > .nav-link-group > a::after,
.clean-menu .has-submenu.is-open > .nav-link-group > a::after {
    transform: scaleX(1);
}

.clean-menu .nav-link-group {
    gap: 0;
    padding: 0;
}

.clean-menu .submenu-toggle {
    width: 22px;
    min-height: 68px;
    padding: 0;
    border-radius: 0;
    color: #073b8b;
}

.clean-menu .submenu-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.clean-menu .has-submenu:hover .submenu-toggle,
.clean-menu .has-submenu:focus-within .submenu-toggle,
.clean-menu .has-submenu.is-open .submenu-toggle {
    background: transparent;
    color: #ff741f;
}

.clean-submenu {
    top: calc(100% + 0px);
    left: 0;
    min-width: 250px;
    padding: 8px;
    border: 1px solid #e0e8f2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(7, 27, 58, 0.16);
}

.clean-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 6px;
    color: #10223f;
    font-size: 0.86rem;
    font-weight: 800;
}

.clean-submenu a > span {
    min-width: 0;
}

.clean-submenu a::after {
    display: none;
}

.clean-submenu a:hover,
.clean-submenu a[aria-current="page"] {
    background: #f2f7ff;
    color: #073b8b;
}

@media (max-width: 1200px) {
    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        padding-inline: 6px;
        font-size: 0.76rem;
    }
}

@media (max-width: 940px) {
    .concept-home .header-inner {
        min-height: 68px;
    }

    .clean-menu {
        display: grid;
        gap: 6px;
        padding: 10px;
        border: 0;
        background: #fff;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        min-height: 46px;
        padding: 0 12px;
        border-radius: 6px;
        font-size: 0.9rem;
    }

    .clean-menu > li > a::after,
    .clean-menu .nav-link-group > a::after {
        display: none;
    }

    .clean-menu > li > a:hover,
    .clean-menu .nav-link-group > a:hover,
    .clean-menu > li > a[aria-current="page"],
    .clean-menu .nav-link-group > a[aria-current="page"] {
        background: #073b8b;
        color: #fff;
    }

    .clean-menu .nav-link-group {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 8px;
    }

    .clean-menu .submenu-toggle {
        width: 42px;
        min-height: 46px;
        border-radius: 6px;
        background: #edf4ff;
    }

    .clean-submenu {
        position: static;
        min-width: 0;
        margin-top: 7px;
        padding: 7px;
        border-radius: 8px;
        box-shadow: none;
    }
}

/* Final compact desktop + fixed mobile menu */
@media (min-width: 941px) {
    .concept-home .header-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        min-height: 62px;
    }

    .concept-home .brand img {
        width: 190px;
    }

    .concept-home .site-nav {
        justify-self: end;
    }

    .clean-menu {
        gap: 0;
        align-items: center;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        min-height: 62px !important;
        padding: 0 6px !important;
        font-size: 0.82rem !important;
        line-height: 1;
    }

    .clean-menu .submenu-toggle {
        width: 16px !important;
        min-height: 62px !important;
    }

    .clean-menu .nav-link-group {
        gap: 0 !important;
        padding: 0 !important;
    }

    .clean-menu > li > a::after,
    .clean-menu .nav-link-group > a::after {
        left: 5px;
        right: 5px;
    }

    .clean-submenu {
        min-width: 200px !important;
        padding: 6px !important;
    }

    .clean-submenu a {
        min-height: 38px !important;
        padding: 8px 10px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 940px) {
    .concept-home .site-header {
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .concept-home .header-inner {
        display: grid !important;
        grid-template-columns: minmax(0, auto) 44px !important;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        gap: 12px;
    }

    .concept-home .brand {
        justify-self: start;
        min-width: 0;
    }

    .concept-home .brand img {
        width: 168px;
        max-width: 62vw;
    }

    .concept-home .nav-toggle {
        position: static !important;
        justify-self: end;
        display: inline-flex;
        width: 44px !important;
        min-width: 44px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 !important;
        margin: 0 !important;
        border-radius: 7px;
        font-size: 0;
        background: #073b8b;
        color: #fff;
        box-shadow: none;
    }

    .concept-home .nav-toggle::before {
        content: "";
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    }

    .concept-home .site-nav {
        position: fixed !important;
        top: 102px !important;
        left: 0 !important;
        right: auto !important;
        inset: 102px auto auto 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: calc(100vh - 95px);
        overflow-y: auto;
        border: 0;
        border-top: 1px solid #e3ebf5;
        border-bottom: 1px solid #d8e3f0;
        border-radius: 0;
        background: #fff;
        box-shadow: 0 18px 42px rgba(7, 27, 58, 0.18);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
    }

    .concept-home.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .clean-menu {
        display: grid;
        gap: 5px;
        width: min(100% - 36px, 430px);
        margin: 0 auto;
        padding: 12px 0 14px;
        background: #fff;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        min-height: 42px !important;
        padding: 0 12px !important;
        border-radius: 6px;
        font-size: 0.88rem !important;
    }

    .clean-menu .nav-link-group {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 40px;
        gap: 6px !important;
    }

    .clean-menu .submenu-toggle {
        width: 40px !important;
        min-height: 42px !important;
        border-radius: 6px;
        background: #eef5ff;
    }

    .clean-submenu {
        position: static;
        min-width: 0;
        margin-top: 5px;
        padding: 6px;
        border-radius: 7px;
        background: #f8fbff;
        border: 1px solid #e4edf7;
    }

    .clean-submenu a {
        min-height: 38px;
        padding: 8px 12px;
        font-size: 0.84rem;
    }
}

/* Mobile menu redesign */
@media (max-width: 940px) {
    .concept-home .site-header {
        background: #fff;
        border-bottom: 1px solid #e7edf5;
        box-shadow: 0 8px 22px rgba(7, 27, 58, 0.08);
    }

    .concept-home .header-inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 42px !important;
        align-items: center;
        min-height: 72px !important;
        gap: 18px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .concept-home .brand {
        justify-self: start;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .concept-home .brand img {
        width: 148px;
        max-width: 56vw;
    }

    .concept-home .nav-toggle {
        position: static !important;
        justify-self: end;
        width: 40px !important;
        min-width: 40px !important;
        height: 38px !important;
        min-height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid #073b8b;
        border-radius: 8px;
        background: #073b8b;
        color: #fff;
        font-size: 0;
        box-shadow: 0 10px 22px rgba(7, 59, 139, 0.18);
    }

    .concept-home .nav-toggle::before {
        content: "";
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
    }

    .concept-home.nav-open .nav-toggle::before {
        width: 18px;
        height: 2px;
        background: currentColor;
        box-shadow: none;
        transform: rotate(45deg);
    }

    .concept-home.nav-open .nav-toggle::after {
        content: "";
        position: absolute;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transform: rotate(-45deg);
    }

    .concept-home .site-nav {
        position: fixed !important;
        inset: 72px 0 auto 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        border: 0;
        border-top: 1px solid #e7edf5;
        border-bottom: 1px solid #d8e3f0;
        border-radius: 0;
        background: #fff;
        box-shadow: 0 18px 40px rgba(7, 27, 58, 0.16);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.16s ease, visibility 0.16s ease, transform 0.16s ease;
    }

    .concept-home.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .clean-menu {
        display: grid;
        width: min(100% - 32px, 430px);
        margin: 0 auto;
        padding: 12px 0;
        gap: 2px;
        background: #fff;
    }

    .clean-menu > li {
        border-bottom: 1px solid #eef3f9;
    }

    .clean-menu > li:last-child {
        border-bottom: 0;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        min-height: 42px !important;
        padding: 0 4px !important;
        border-radius: 0;
        background: transparent !important;
        color: #071b3a !important;
        font-size: 0.9rem !important;
        font-weight: 800;
        justify-content: flex-start;
    }

    .clean-menu > li > a[aria-current="page"],
    .clean-menu .nav-link-group > a[aria-current="page"] {
        color: #073b8b !important;
    }

    .clean-menu > li > a::after,
    .clean-menu .nav-link-group > a::after {
        display: none;
    }

    .clean-menu .nav-link-group {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 34px;
        align-items: center;
        gap: 6px !important;
        padding: 0 !important;
    }

    .clean-menu .submenu-toggle {
        width: 34px !important;
        min-height: 42px !important;
        border-radius: 6px;
        background: transparent;
        color: #ff741f;
    }

    .clean-menu .submenu-toggle::after {
        content: "";
        display: block;
        width: 7px;
        height: 7px;
        border-top: 0;
        border-left: 0;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        margin: 0 auto;
        transform: rotate(45deg);
    }

    .clean-menu .has-submenu.is-open .submenu-toggle::after {
        transform: rotate(225deg);
    }

    .clean-submenu {
        display: none;
        position: static;
        min-width: 0;
        margin: 0 0 10px;
        padding: 6px 0 6px 12px;
        border: 0;
        border-left: 2px solid #ff741f;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .clean-menu .has-submenu.is-open > .clean-submenu {
        display: grid;
        gap: 2px;
    }

    .clean-submenu a {
        min-height: 36px;
        padding: 0 8px;
        border-radius: 5px;
        background: transparent;
        color: #33445f;
        font-size: 0.82rem;
        font-weight: 700;
    }

    .clean-submenu a:hover,
    .clean-submenu a[aria-current="page"] {
        background: #f3f7fd;
        color: #073b8b;
    }
}

.menu-ribbon {
    background: #d71920 !important;
    color: #ffea00 !important;
}

.clean-submenu .menu-ribbon {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: none !important;
    min-width: 32px;
    margin-left: 8px;
    padding: 2px 6px;
    flex: 0 0 auto;
    font-size: 0.54rem;
    vertical-align: middle;
}

.clean-submenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.clean-submenu a > span {
    min-width: 0;
}

@media (max-width: 1460px) and (min-width: 941px) {
    .concept-home .brand img {
        width: 175px;
    }

    .clean-menu > li > a,
    .clean-menu .nav-link-group > a {
        padding: 0 5px !important;
        font-size: 0.78rem !important;
    }

    .clean-menu .submenu-toggle {
        width: 14px !important;
    }
}

@media (max-width: 980px) {
    html,
    body {
        overflow-x: hidden;
    }

    .concept-home .site-nav {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
}

@media (max-width: 980px) {
    .cpanel-cloud-hero-grid,
    .cpanel-support-grid {
        grid-template-columns: 1fr !important;
    }

    .cpanel-plan-grid {
        grid-template-columns: 1fr !important;
    }

    .cpanel-support-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .cpanel-cloud-hero {
        padding: 52px 0 48px;
    }

    .cpanel-cloud-hero-grid {
        gap: 28px;
    }

    .cpanel-cloud-copy h1 {
        font-size: 2.55rem;
    }

    .cpanel-cloud-copy p {
        max-width: none;
        font-size: 0.98rem;
    }

    .cpanel-cloud-console,
    .cpanel-plan-card,
    .cpanel-support-grid {
        width: 100%;
        padding: 22px;
    }

    .cpanel-console-head {
        align-items: center;
    }

    .cpanel-console-head img {
        width: 72px;
        height: 72px;
    }

    .cpanel-console-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cpanel-console-grid span {
        min-height: 72px;
        padding: 0 8px;
        overflow-wrap: anywhere;
    }

    .cpanel-plan-card p {
        min-height: 0;
    }

    .cpanel-price strong {
        font-size: 2rem;
    }

    .cpanel-support-actions .btn {
        width: 100%;
    }
}

.wordpress-benefits-section,
.wordpress-specs-section,
.wordpress-plan-details-section,
.wordpress-faq-section {
    padding-top: 74px;
    padding-bottom: 74px;
}

.wordpress-benefits-section {
    background: #fff;
}

.wordpress-specs-section,
.wordpress-faq-section {
    background: #f5f8fc;
}

.wordpress-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.wordpress-feature-card,
.wordpress-spec-card,
.wordpress-detail-card {
    border: 1px solid #dfe8f3;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(7, 27, 58, 0.06);
}

.wordpress-feature-card {
    min-height: 230px;
    padding: 24px 18px;
    text-align: center;
}

.wordpress-feature-card img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    margin: 0 auto 16px;
}

.wordpress-feature-card h3,
.wordpress-spec-card h3 {
    margin: 0 0 10px;
    color: #073b8b;
    font-size: 1rem;
    line-height: 1.28;
}

.wordpress-feature-card p,
.wordpress-detail-card p {
    margin: 0;
    color: #556783;
    font-size: 0.92rem;
    line-height: 1.65;
}

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

.wordpress-spec-card {
    padding: 26px;
}

.wordpress-spec-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wordpress-spec-card li {
    position: relative;
    padding-left: 18px;
    color: #52637d;
    font-size: 0.93rem;
    line-height: 1.5;
}

.wordpress-spec-card li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff741f;
}

.wordpress-plan-details-section {
    background: #fff;
}

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

.wordpress-detail-card {
    padding: 24px;
}

.wordpress-detail-card strong {
    display: block;
    margin-bottom: 10px;
    color: #071b3a;
    font-size: 1.02rem;
}

.wordpress-faq-wrap {
    max-width: 1040px;
    margin: 0 auto;
}

.wordpress-faq-wrap details {
    background: #fff;
}

.wordpress-hosting-page .site-footer {
    margin-top: 0;
}

@media (max-width: 1180px) {
    .wordpress-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

@media (max-width: 760px) {
    .wordpress-benefits-section,
    .wordpress-specs-section,
    .wordpress-plan-details-section,
    .wordpress-faq-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .wordpress-feature-grid,
    .wordpress-spec-grid,
    .wordpress-detail-grid {
        grid-template-columns: 1fr;
    }

    .wordpress-feature-card {
        min-height: 0;
        padding: 22px;
    }
}

.customer-order-remarks {
    max-width: 260px;
    padding: 10px 12px;
    border: 1px solid rgba(15, 79, 168, 0.14);
    border-radius: 8px;
    background: #f6f9fd;
    color: var(--ink-700);
    font-size: 0.86rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.customer-order-remarks-list {
    display: grid;
    gap: 8px;
}

.customer-order-remarks strong {
    color: var(--blue-900);
    font-size: 0.72rem;
}

.customer-muted {
    color: var(--ink-500);
    font-size: 0.84rem;
}
