/* =========================================================
   BHOLA VPS — ATOMIC LAYOUT BUNDLE
   The browser receives the base and final refinement rules in one
   render-blocking file, preventing intermediate-width header paints.
========================================================= */

html {
    min-height: 100%;
}

/* Reserve the desktop scrollbar from the first paint. Without this, the
   centered header can move horizontally when page height becomes known. */
@media (min-width: 901px) {
    html {
        overflow-y: scroll;
        scrollbar-gutter: stable;
    }
}

/* Font Awesome glyphs arrive from a font file. Fixed icon boxes prevent
   their late glyph metrics from changing the navigation width. */
.nav-parent-link > i {
    width: 14px;
    flex: 0 0 14px;
    text-align: center;
}

.nav-submenu-toggle {
    flex: 0 0 auto;
}

.client-area-btn > i {
    width: 14px;
    flex: 0 0 14px;
    text-align: center;
}

:root {
    --site-blue: #3157d5;
    --site-blue-dark: #17359a;
    --site-cyan: #36c5d8;
    --site-ink: #0b1220;
    --site-muted: #5f6b7a;
    --site-line: #dfe5ee;
    --site-soft: #f6f8fb;
    --site-white: #ffffff;
    --site-footer: #0c1424;
    --header-height: 78px;
    --site-radius: 18px;
    --site-shadow: 0 24px 70px rgba(22, 38, 72, .10);
    --site-container: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--site-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

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

a {
    color: inherit;
}

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

.site-container,
.container {
    width: var(--site-container);
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 12px;
    z-index: 1000001;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--site-blue);
    color: #fff;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

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

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(220, 226, 235, .9);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(18, 31, 61, .045);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-mark {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(145deg, var(--site-blue), var(--site-blue-dark));
    box-shadow: 0 10px 24px rgba(49, 87, 213, .23);
}

.brand-mark svg {
    width: 25px;
    height: 25px;
}

.brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--site-ink);
    font-size: 20px;
    letter-spacing: -.045em;
}

.brand-text strong {
    font-weight: 850;
}

.brand-text span {
    color: var(--site-blue);
    font-weight: 850;
}

.site-nav {
    margin-left: auto;
}

.nav-list,
.nav-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.nav-item {
    position: relative;
}

.nav-parent-row {
    display: flex;
    align-items: center;
}

.nav-parent-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 8px 0 11px;
    border-radius: 10px 0 0 10px;
    color: #263248;
    font-size: 14px;
    font-weight: 690;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.nav-parent-link i {
    color: #718096;
    font-size: 13px;
}

.nav-submenu-toggle {
    width: 26px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: transparent;
    color: #778398;
    cursor: pointer;
}

.nav-submenu-toggle i {
    font-size: 10px;
    transition: transform .2s ease;
}

.nav-item:hover .nav-parent-link,
.nav-item:hover .nav-submenu-toggle,
.nav-item.is-active .nav-parent-link,
.nav-item.is-active .nav-submenu-toggle {
    color: var(--site-blue);
    background: #f2f5ff;
}

.nav-item:hover .nav-parent-link i,
.nav-item.is-active .nav-parent-link i {
    color: var(--site-blue);
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 245px;
    padding: 8px;
    border: 1px solid #e4e9f1;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 24px 55px rgba(21, 37, 73, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.nav-submenu::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 14px;
}

.nav-submenu a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 12px;
    border-radius: 10px;
    color: #2f3d53;
    font-size: 14px;
    font-weight: 620;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.nav-submenu a i {
    width: 18px;
    color: #7f8ba0;
    text-align: center;
}

.nav-submenu a:hover {
    color: var(--site-blue);
    background: #f4f6fc;
    transform: translateX(2px);
}

.nav-submenu a:hover i {
    color: var(--site-blue);
}

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

.client-area-btn {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(135deg, var(--site-blue), var(--site-blue-dark));
    box-shadow: 0 10px 22px rgba(49, 87, 213, .22);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease;
}

.client-area-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 13px 28px rgba(49, 87, 213, .27);
}

.icon-button {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #e0e5ed;
    border-radius: 11px;
    background: #f7f8fb;
    color: #273449;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.icon-button:hover {
    border-color: #ccd5e2;
    background: #fff;
    color: var(--site-blue);
}

.menu-button,
.nav-client-mobile {
    display: none;
}

@media (min-width: 901px) {
    .nav-dropdown:hover > .nav-submenu,
    .nav-dropdown:focus-within > .nav-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-dropdown:hover .nav-submenu-toggle i,
    .nav-dropdown:focus-within .nav-submenu-toggle i {
        transform: rotate(180deg);
    }
}

/* Footer */
.site-footer {
    position: relative;
    z-index: 2;
    padding: 76px 0 24px;
    background:
        radial-gradient(circle at 88% 4%, rgba(49, 87, 213, .18), transparent 27%),
        var(--site-footer);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 2.15fr .92fr;
    gap: 65px;
    align-items: start;
}

.footer-brand-link {
    color: #fff;
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -.04em;
}

.footer-brand-link .brand-mark {
    width: 42px;
    height: 42px;
}

.footer-brand-block > p,
.footer-contact-block > p {
    margin: 20px 0 0;
    color: #aeb9ca;
    font-size: 14px;
    line-height: 1.8;
}

.footer-account-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.footer-account-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.footer-account-actions .footer-primary-action {
    border-color: transparent;
    background: var(--site-blue);
}

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

.footer-column h2,
.footer-contact-block h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li + li {
    margin-top: 12px;
}

.footer-column a,
.footer-contact-list a,
.footer-contact-list span {
    color: #aeb9ca;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: color .18s ease;
}

.footer-column a:hover,
.footer-contact-list a:hover {
    color: #fff;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 7px;
    margin-top: 18px;
}

.footer-newsletter input {
    min-width: 0;
    height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 10px;
    outline: none;
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.footer-newsletter input::placeholder {
    color: #8491a6;
}

.footer-newsletter input:focus {
    border-color: rgba(100, 130, 255, .65);
}

.footer-newsletter button {
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--site-blue);
    cursor: pointer;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.footer-contact-list a,
.footer-contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-list i {
    width: 16px;
    margin-top: 2px;
    color: #6f8cff;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.footer-socials a:hover {
    background: var(--site-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 58px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
    color: #8390a4;
    font-size: 13px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.payment-badges span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 7px;
    color: #c3ccda;
    background: rgba(255, 255, 255, .045);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
}

.back-to-top {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 99990;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--site-blue), var(--site-blue-dark));
    box-shadow: 0 16px 34px rgba(26, 52, 145, .3);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inner pages */
.inner-page {
    min-height: 70vh;
    padding-top: var(--header-height);
    overflow: hidden;
    background: #fff;
}

.inner-hero {
    position: relative;
    padding: 108px 0 86px;
    background:
        radial-gradient(circle at 9% 24%, rgba(49, 87, 213, .14), transparent 27%),
        radial-gradient(circle at 88% 5%, rgba(54, 197, 216, .16), transparent 24%),
        linear-gradient(180deg, #fafcff, #fff);
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--site-line), transparent);
}

.inner-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 75px;
    align-items: center;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #738096;
    font-size: 12px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--site-blue);
    text-decoration: none;
}

.inner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--site-blue);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.inner-eyebrow::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.inner-hero h1 {
    margin: 0;
    max-width: 740px;
    color: var(--site-ink);
    font-size: clamp(45px, 6.2vw, 76px);
    line-height: 1;
    letter-spacing: -.06em;
    overflow-wrap: anywhere;
}

.inner-hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--site-muted);
    font-size: 17px;
    line-height: 1.75;
}

.inner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.site-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    color: #fff;
    background: var(--site-blue);
    box-shadow: 0 13px 28px rgba(49, 87, 213, .22);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.site-button:hover {
    transform: translateY(-2px);
    background: var(--site-blue-dark);
}

.site-button-secondary {
    border-color: var(--site-line);
    color: var(--site-ink);
    background: #fff;
    box-shadow: none;
}

.site-button-secondary:hover {
    color: var(--site-blue);
    background: #fff;
    box-shadow: 0 13px 28px rgba(18, 31, 61, .08);
}

.inner-visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
}

.inner-visual::before,
.inner-visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.inner-visual::before {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(49, 87, 213, .15);
    box-shadow: 0 0 0 36px rgba(49, 87, 213, .035), 0 0 0 78px rgba(54, 197, 216, .025);
}

.inner-visual::after {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(49, 87, 213, .16), rgba(49, 87, 213, 0));
    filter: blur(12px);
}

.visual-card {
    position: relative;
    z-index: 2;
    width: min(100%, 325px);
    padding: 30px;
    border: 1px solid #dce3ef;
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(14px);
}

.visual-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(145deg, var(--site-blue), var(--site-blue-dark));
    box-shadow: 0 15px 30px rgba(49, 87, 213, .24);
    font-size: 26px;
}

.visual-card h2 {
    margin: 24px 0 0;
    color: var(--site-ink);
    font-size: 24px;
    letter-spacing: -.035em;
}

.visual-card p {
    margin: 10px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

.visual-lines {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.visual-lines span {
    height: 9px;
    border-radius: 999px;
    background: #edf1f7;
}

.visual-lines span:nth-child(1) { width: 100%; }
.visual-lines span:nth-child(2) { width: 75%; }
.visual-lines span:nth-child(3) { width: 55%; }

.inner-section {
    padding: 92px 0;
}

.inner-section-soft {
    background: var(--site-soft);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 44px;
}

.section-heading h2 {
    margin: 0;
    max-width: 720px;
    color: var(--site-ink);
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.section-heading p {
    max-width: 470px;
    margin: 0;
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.75;
}

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

.feature-card {
    min-width: 0;
    padding: 29px;
    border: 1px solid var(--site-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 31, 61, .055);
}

.feature-card-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--site-blue);
    background: #edf2ff;
    font-size: 18px;
}

.feature-card h3 {
    margin: 20px 0 0;
    color: var(--site-ink);
    font-size: 19px;
    letter-spacing: -.025em;
}

.feature-card p {
    margin: 10px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

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

.process-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    border-radius: 18px;
    background: #111a2a;
    color: #fff;
    overflow: hidden;
}

.process-card::after {
    content: attr(data-number);
    position: absolute;
    right: 18px;
    top: 4px;
    color: rgba(255, 255, 255, .07);
    font-size: 92px;
    font-weight: 900;
    line-height: 1;
}

.process-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 20px;
}

.process-card p {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: #b7c1d2;
    font-size: 14px;
    line-height: 1.75;
}

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

.plan-card {
    position: relative;
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--site-line);
    border-radius: 20px;
    background: #fff;
}

.plan-card.is-featured {
    border-color: rgba(49, 87, 213, .45);
    box-shadow: 0 24px 60px rgba(49, 87, 213, .12);
}

.plan-label {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--site-blue);
    background: #edf2ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-card h3 {
    margin: 19px 0 0;
    color: var(--site-ink);
    font-size: 25px;
    letter-spacing: -.035em;
}

.plan-card > p {
    min-height: 70px;
    margin: 10px 0 0;
    color: var(--site-muted);
    font-size: 14px;
    line-height: 1.7;
}

.plan-list {
    display: grid;
    gap: 11px;
    margin: 23px 0;
    padding: 0;
    list-style: none;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #354157;
    font-size: 13px;
    line-height: 1.55;
}

.plan-list i {
    margin-top: 3px;
    color: #20a36a;
}

.plan-card .site-button {
    width: 100%;
}

.domain-search-panel {
    padding: 36px;
    border: 1px solid var(--site-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--site-shadow);
}

.domain-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    padding: 7px;
    border: 1px solid #dbe2ed;
    border-radius: 15px;
    background: #f8faff;
}

.domain-search-form input {
    min-width: 0;
    min-height: 52px;
    padding: 0 16px;
    border: 0;
    outline: none;
    color: var(--site-ink);
    background: transparent;
    font-size: 16px;
}

.domain-search-form button {
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 11px;
    color: #fff;
    background: var(--site-blue);
    font-weight: 800;
    cursor: pointer;
}

.tld-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.tld-chips span {
    padding: 7px 10px;
    border: 1px solid var(--site-line);
    border-radius: 999px;
    color: #5c687b;
    background: #fff;
    font-size: 12px;
    font-weight: 750;
}

.content-card {
    padding: 34px;
    border: 1px solid var(--site-line);
    border-radius: 20px;
    background: #fff;
}

.content-card h2,
.content-card h3 {
    color: var(--site-ink);
    letter-spacing: -.03em;
}

.content-card h2 {
    margin: 0 0 18px;
    font-size: 30px;
}

.content-card h3 {
    margin: 28px 0 10px;
    font-size: 20px;
}

.content-card p,
.content-card li {
    color: var(--site-muted);
    font-size: 15px;
    line-height: 1.8;
}

.content-card ul {
    padding-left: 20px;
}

.site-cta {
    padding: 0 0 92px;
}

.site-cta-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    padding: 42px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 10%, rgba(54, 197, 216, .25), transparent 28%),
        linear-gradient(135deg, #18399f, #3157d5);
    overflow: hidden;
}

.site-cta-card h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.site-cta-card p {
    margin: 12px 0 0;
    color: #dce5ff;
    line-height: 1.7;
}

.site-cta-card .site-button {
    color: var(--site-blue);
    background: #fff;
    box-shadow: none;
}

/* Dark mode */
body.dark-mode {
    --site-ink: #f3f6fb;
    --site-muted: #a9b4c4;
    --site-line: #293446;
    --site-soft: #111722;
    background: #0e141e;
    color: #f4f7fb;
}

body.dark-mode .site-header {
    border-color: rgba(54, 65, 84, .85);
    background: rgba(15, 21, 31, .94);
}

body.dark-mode .brand-text,
body.dark-mode .nav-parent-link {
    color: #edf2fa;
}

body.dark-mode .nav-item:hover .nav-parent-link,
body.dark-mode .nav-item:hover .nav-submenu-toggle,
body.dark-mode .nav-item.is-active .nav-parent-link,
body.dark-mode .nav-item.is-active .nav-submenu-toggle {
    background: #1c2635;
}

body.dark-mode .nav-submenu {
    border-color: #2b3648;
    background: #151d29;
}

body.dark-mode .nav-submenu a {
    color: #d9e0ea;
}

body.dark-mode .nav-submenu a:hover {
    background: #202a39;
}

body.dark-mode .icon-button {
    border-color: #2b3648;
    color: #eef2f8;
    background: #1a2230;
}

body.dark-mode .inner-page,
body.dark-mode .inner-section {
    background: #0e141e;
}

body.dark-mode .inner-hero {
    background:
        radial-gradient(circle at 9% 24%, rgba(49, 87, 213, .2), transparent 27%),
        radial-gradient(circle at 88% 5%, rgba(54, 197, 216, .12), transparent 24%),
        linear-gradient(180deg, #101826, #0e141e);
}

body.dark-mode .inner-section-soft {
    background: #111722;
}

body.dark-mode .visual-card,
body.dark-mode .feature-card,
body.dark-mode .plan-card,
body.dark-mode .domain-search-panel,
body.dark-mode .content-card,
body.dark-mode .site-button-secondary {
    border-color: #2a3547;
    color: #edf2fa;
    background: #151d2a;
}

body.dark-mode .domain-search-form {
    border-color: #293447;
    background: #101724;
}

body.dark-mode .domain-search-form input,
body.dark-mode .plan-list li {
    color: #d8dfeb;
}

body.dark-mode .visual-lines span {
    background: #263143;
}

body.dark-mode .tld-chips span {
    border-color: #2b3648;
    color: #c1cad7;
    background: #151d2a;
}

/* Responsive */
@media (max-width: 1120px) {
    .header-inner {
        gap: 12px;
    }

    .nav-parent-link {
        padding-inline: 7px 5px;
        font-size: 13px;
    }

    .nav-submenu-toggle {
        width: 22px;
    }

    .client-area-btn {
        padding-inline: 14px;
    }

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

    .footer-contact-block {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px;
    }

    .footer-contact-block h2,
    .footer-contact-block > p {
        grid-column: 1;
    }

    .footer-newsletter {
        grid-column: 1;
    }

    .footer-contact-list,
    .footer-socials {
        grid-column: 2;
    }

    .footer-contact-list {
        grid-row: 1 / span 3;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 70px;
        --site-container: min(100% - 32px, 1180px);
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .brand-mark {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .brand-text {
        font-size: 18px;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        width: 100%;
        max-height: 0;
        margin: 0;
        border-top: 1px solid transparent;
        background: #fff;
        box-shadow: 0 25px 50px rgba(18, 31, 61, .12);
        overflow: hidden;
        transition: max-height .28s ease, border-color .28s ease;
    }

    .site-nav.is-open {
        max-height: calc(100dvh - var(--header-height));
        border-color: #e5eaf1;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-list {
        width: var(--site-container);
        display: block;
        margin: 0 auto;
        padding: 10px 0 24px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #edf0f5;
    }

    .nav-parent-row {
        width: 100%;
    }

    .nav-parent-link {
        min-height: 54px;
        flex: 1;
        padding: 0 8px;
        border-radius: 10px;
        font-size: 15px;
    }

    .nav-submenu-toggle {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        border-radius: 10px;
    }

    .nav-item:hover .nav-parent-link,
    .nav-item:hover .nav-submenu-toggle,
    .nav-item.is-active .nav-parent-link,
    .nav-item.is-active .nav-submenu-toggle {
        background: transparent;
    }

    .nav-submenu {
        position: static;
        min-width: 0;
        max-height: 0;
        padding: 0 0 0 16px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        transition: max-height .25s ease, padding .25s ease;
    }

    .nav-dropdown.submenu-open .nav-submenu {
        max-height: 460px;
        padding-bottom: 10px;
    }

    .nav-dropdown.submenu-open .nav-submenu-toggle i {
        transform: rotate(180deg);
    }

    .nav-submenu a {
        min-height: 44px;
        padding: 9px 12px;
        font-size: 14px;
    }

    .nav-client-mobile {
        display: block;
        padding-top: 16px;
        border-bottom: 0;
    }

    .nav-client-mobile .client-area-btn {
        width: 100%;
    }

    .client-area-desktop {
        display: none;
    }

    .menu-button {
        display: grid;
    }

    body.dark-mode .site-nav {
        background: #111824;
    }

    body.dark-mode .site-nav.is-open,
    body.dark-mode .nav-item {
        border-color: #283244;
    }

    body.dark-mode .nav-submenu {
        background: transparent;
    }

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

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

    .footer-contact-block {
        grid-column: auto;
        display: block;
    }

    .footer-contact-list {
        margin-top: 24px;
    }

    .inner-hero {
        padding: 82px 0 76px;
    }

    .inner-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inner-visual {
        min-height: 360px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .plan-card > p {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    :root {
        --site-container: min(100% - 28px, 1180px);
    }

    .brand-text {
        font-size: 17px;
    }

    .theme-button,
    .menu-button {
        width: 39px;
        height: 39px;
    }

    .site-footer {
        padding-top: 58px;
    }

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

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

    .payment-badges {
        justify-content: flex-start;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        right: 14px;
        bottom: 14px;
    }

    .inner-hero {
        padding: 66px 0 64px;
    }

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

    .inner-hero-copy {
        font-size: 15px;
    }

    .inner-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-button {
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .inner-visual {
        min-height: 310px;
    }

    .inner-visual::before {
        width: 250px;
        height: 250px;
        box-shadow: 0 0 0 26px rgba(49, 87, 213, .035), 0 0 0 55px rgba(54, 197, 216, .025);
    }

    .visual-card {
        width: min(100%, 290px);
        padding: 24px;
    }

    .inner-section {
        padding: 70px 0;
    }

    .section-heading {
        gap: 18px;
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: clamp(32px, 10vw, 44px);
    }

    .feature-card,
    .process-card,
    .plan-card,
    .content-card,
    .domain-search-panel {
        padding: 24px;
    }

    .domain-search-form {
        grid-template-columns: 1fr;
    }

    .domain-search-form button {
        width: 100%;
    }

    .site-cta {
        padding-bottom: 70px;
    }

    .site-cta-card {
        grid-template-columns: 1fr;
        padding: 30px 24px;
    }
}

@media (max-width: 380px) {
    :root {
        --site-container: min(100% - 22px, 1180px);
    }

    .brand-text {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

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

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

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

.feature-card[href] {
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card[href]:hover {
    border-color: rgba(49, 87, 213, .4);
    box-shadow: 0 22px 52px rgba(18, 31, 61, .09);
    transform: translateY(-3px);
}

/* =========================================================
   BHOLA VPS — 2026 HEADER & FOOTER REDESIGN
========================================================= */
:root {
    --site-container: min(1280px, calc(100% - 48px));
    --header-height: 80px;
    --site-footer: #0b1324;
}

.site-header {
    height: var(--header-height);
    border-bottom: 1px solid rgba(213, 221, 234, .82);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 35px rgba(18, 31, 61, .055);
    backdrop-filter: saturate(160%) blur(18px);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, rgba(49, 87, 213, .58) 45%, rgba(54, 197, 216, .52) 62%, transparent 95%);
    opacity: .42;
    pointer-events: none;
}

.header-inner {
    min-height: var(--header-height);
    gap: 20px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: linear-gradient(145deg, #3d63df 0%, #17359a 100%);
    box-shadow: 0 12px 28px rgba(49, 87, 213, .25), inset 0 1px 0 rgba(255,255,255,.22);
}

.brand-text {
    font-size: 21px;
}

.nav-list {
    gap: 5px;
}

.nav-parent-link {
    min-height: 46px;
    padding: 0 8px 0 12px;
    font-weight: 720;
}

.nav-submenu-toggle {
    height: 46px;
}

.nav-parent-link,
.nav-submenu-toggle {
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-item:hover .nav-parent-link,
.nav-item:hover .nav-submenu-toggle,
.nav-item.is-active .nav-parent-link,
.nav-item.is-active .nav-submenu-toggle {
    background: linear-gradient(180deg, #f4f7ff, #eef3ff);
}

.nav-submenu {
    top: calc(100% + 13px);
    padding: 9px;
    border-color: #e3e8f1;
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(18, 31, 61, .16);
}

.nav-submenu a {
    min-height: 43px;
}

.header-actions {
    gap: 8px;
}

.client-area-btn {
    min-height: 44px;
    padding-inline: 19px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3a60df, #263eb6);
    box-shadow: 0 12px 25px rgba(49, 87, 213, .24);
}

.icon-button {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

/* Footer */
.site-footer {
    overflow: hidden;
    padding: 82px 0 26px;
    background:
        radial-gradient(circle at 92% 8%, rgba(66, 96, 222, .22), transparent 27%),
        radial-gradient(circle at 7% 110%, rgba(54, 197, 216, .10), transparent 30%),
        linear-gradient(180deg, #0d172a 0%, #09111f 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(111, 140, 255, .75), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.05fr) minmax(480px, 2.05fr) minmax(300px, 1fr);
    gap: clamp(36px, 4vw, 66px);
    align-items: start;
}

.footer-brand-block > p {
    max-width: 350px;
    margin-top: 22px;
    color: #a8b5c8;
    font-size: 14px;
    line-height: 1.85;
}

.footer-brand-link {
    font-size: 25px;
}

.footer-brand-link .brand-mark {
    width: 44px;
    height: 44px;
}

.footer-account-actions a {
    border-radius: 11px;
}

.footer-links-grid {
    gap: 26px;
}

.footer-column h2,
.footer-contact-block h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 11px;
    font-size: 16px;
}

.footer-column h2::after,
.footer-contact-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #6f8cff, #36c5d8);
}

.footer-column li + li {
    margin-top: 13px;
}

.footer-column a,
.footer-contact-list a,
.footer-contact-list span {
    font-size: 13.5px;
}

.footer-contact-block {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
    box-shadow: 0 24px 55px rgba(0, 0, 0, .16);
}

.footer-contact-block > p {
    margin-top: 0;
    color: #a8b5c8;
    line-height: 1.7;
}

.footer-mini-label {
    display: inline-flex;
    margin-bottom: 9px;
    color: #7793ff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .15em;
}

.footer-newsletter {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 8px;
    width: 100%;
    margin-top: 19px;
}

.footer-newsletter input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 15px;
    border-radius: 12px;
    background: rgba(4, 10, 21, .34);
}

.footer-newsletter button {
    width: 112px;
    height: 50px;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #4164e1, #2c46be);
    box-shadow: 0 10px 22px rgba(49, 87, 213, .25);
    transition: transform .2s ease, filter .2s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.newsletter-message {
    grid-column: 1 / -1;
    min-height: 0;
    color: #8fcaa9;
    font-size: 12px;
}

.footer-contact-list {
    margin-top: 22px;
}

.footer-socials a {
    border-radius: 10px;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 24px;
}

.payment-badges {
    max-width: 620px;
}

.payment-badges span {
    min-height: 30px;
    padding: 0 10px;
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.055);
}

.back-to-top {
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 12px 32px rgba(17, 33, 74, .25);
}

body.dark-mode .site-header {
    background: rgba(13, 20, 31, .91);
}

body.dark-mode .site-header::after {
    opacity: .6;
}

@media (max-width: 1180px) {
    .footer-grid {
        grid-template-columns: minmax(230px, .85fr) minmax(0, 1.65fr);
        gap: 48px;
    }

    .footer-contact-block {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
        column-gap: 44px;
        align-items: start;
    }

    .footer-contact-block .footer-mini-label,
    .footer-contact-block h2,
    .footer-contact-block > p,
    .footer-newsletter {
        grid-column: 1;
    }

    .footer-contact-list,
    .footer-socials {
        grid-column: 2;
    }

    .footer-contact-list {
        grid-row: 1 / span 4;
        margin-top: 0;
        padding-top: 10px;
    }
}

@media (max-width: 900px) {
    :root {
        --site-container: min(100% - 32px, 1280px);
        --header-height: 72px;
    }

    .site-header,
    .header-inner {
        height: var(--header-height);
        min-height: var(--header-height);
    }

    .site-nav {
        inset: var(--header-height) 0 auto;
    }

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

    .footer-contact-block {
        grid-column: auto;
        display: block;
    }

    .footer-contact-list {
        margin-top: 22px;
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    :root {
        --site-container: min(100% - 28px, 1280px);
    }

    .site-footer {
        padding: 62px 0 22px;
    }

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

    .footer-contact-block {
        padding: 22px 18px;
        border-radius: 17px;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 108px;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        height: 48px;
    }

    .footer-newsletter button {
        width: 108px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
    }

    .payment-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 420px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   BHOLA VPS — PROFESSIONAL HUMAN-CRAFTED REFINEMENT
   Loaded after the original stylesheet to preserve the project
   structure while replacing overly decorative UI treatments.
========================================================= */
:root {
    --site-blue: #2449c7;
    --site-blue-dark: #17358f;
    --site-cyan: #2ba9bf;
    --site-ink: #111827;
    --site-muted: #5d6878;
    --site-line: #dde3eb;
    --site-soft: #f5f7fa;
    --site-footer: #0d172b;
    --site-radius: 12px;
    --site-shadow: 0 16px 42px rgba(20, 35, 65, .08);
    --site-container: min(1460px, calc(100% - 64px));
    --header-height: 78px;
}

body {
    background: #fff;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Header: simple, stable and intentionally restrained. */
.site-header {
    height: var(--header-height);
    border-bottom: 1px solid #e5e9ef;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 3px 14px rgba(20, 35, 65, .045);
    backdrop-filter: none;
}

.site-header::after {
    display: none;
}

.header-inner {
    min-height: var(--header-height);
    gap: 24px;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--site-blue);
    box-shadow: none;
}

.brand-text {
    font-size: 21px;
    letter-spacing: -.035em;
}

.nav-list {
    gap: 7px;
}

.nav-parent-link {
    min-height: 42px;
    padding: 0 8px 0 11px;
    border-radius: 6px;
    color: #313b4c;
    font-size: 13px;
    font-weight: 650;
}

.nav-submenu-toggle {
    height: 42px;
    border-radius: 6px;
}

.nav-item:hover .nav-parent-link,
.nav-item:hover .nav-submenu-toggle,
.nav-item.is-active .nav-parent-link,
.nav-item.is-active .nav-submenu-toggle {
    color: var(--site-blue);
    background: #f2f5fb;
}

.nav-submenu {
    top: calc(100% + 12px);
    padding: 8px;
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 35, 65, .13);
}

.nav-submenu a {
    min-height: 42px;
    border-radius: 6px;
}

.client-area-btn {
    min-height: 42px;
    padding-inline: 18px;
    border-radius: 8px;
    background: var(--site-blue);
    box-shadow: 0 8px 18px rgba(36, 73, 199, .18);
}

.icon-button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

/* Inner pages */
.inner-page {
    background: #fff;
}

.inner-hero {
    padding: 86px 0 76px;
    border-bottom: 1px solid #e3e8ef;
    background: #f7f9fc;
}

.inner-hero::after {
    display: none;
}

.inner-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 410px);
    gap: clamp(50px, 6vw, 96px);
}

.breadcrumb {
    margin-bottom: 18px;
    color: #6f7a8a;
    font-size: 12px;
    font-weight: 650;
}

.inner-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
}

.inner-eyebrow::before {
    width: 20px;
    height: 2px;
    border-radius: 0;
}

.inner-hero h1 {
    max-width: 820px;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -.048em;
}

.inner-hero-copy {
    max-width: 720px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
}

.inner-actions {
    margin-top: 28px;
}

.site-button {
    min-height: 48px;
    padding: 0 21px;
    border-radius: 8px;
    background: var(--site-blue);
    box-shadow: 0 8px 18px rgba(36, 73, 199, .16);
    font-weight: 750;
}

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

.site-button-secondary {
    box-shadow: none;
}

.site-button-secondary:hover {
    box-shadow: 0 7px 18px rgba(20, 35, 65, .07);
}

.inner-visual {
    min-height: 330px;
    align-items: center;
    justify-items: end;
}

.inner-visual::before {
    width: calc(100% - 26px);
    height: 286px;
    border: 1px solid #d8e0ee;
    border-radius: 14px;
    background: #e9eef8;
    box-shadow: none;
    transform: translate(18px, 18px);
}

.inner-visual::after {
    display: none;
}

.visual-card {
    width: 100%;
    max-width: 380px;
    padding: 30px;
    border: 1px solid #d8e0ea;
    border-left: 4px solid var(--site-blue);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 15px 34px rgba(20, 35, 65, .09);
    backdrop-filter: none;
}

.visual-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: var(--site-blue);
    box-shadow: none;
    font-size: 21px;
}

.visual-card h2 {
    margin-top: 21px;
    font-size: 23px;
    letter-spacing: -.025em;
}

.visual-card p {
    line-height: 1.65;
}

.visual-details {
    display: grid;
    margin-top: 23px;
    border-top: 1px solid #e2e7ee;
}

.visual-details > div {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 43px;
    border-bottom: 1px solid #e8ecf1;
    font-size: 12px;
}

.visual-details span {
    color: #7a8594;
}

.visual-details strong {
    color: #273246;
    font-weight: 720;
    overflow-wrap: anywhere;
}

.inner-section {
    padding: 82px 0;
}

.inner-section-soft {
    background: #f5f7fa;
}

.section-heading {
    gap: 44px;
    margin-bottom: 38px;
}

.section-heading h2 {
    max-width: 760px;
    font-size: clamp(32px, 3.8vw, 50px);
    line-height: 1.08;
    letter-spacing: -.038em;
}

.section-heading p {
    line-height: 1.7;
}

.feature-grid,
.plan-grid {
    gap: 16px;
}

.feature-card,
.plan-card,
.domain-search-panel,
.content-card {
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(20, 35, 65, .045);
}

.feature-card {
    padding: 27px;
    border-top: 3px solid transparent;
}

.feature-card[href]:hover {
    border-top-color: var(--site-blue);
    border-right-color: var(--site-line);
    border-bottom-color: var(--site-line);
    border-left-color: var(--site-line);
    box-shadow: 0 13px 32px rgba(20, 35, 65, .075);
    transform: translateY(-2px);
}

.feature-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 7px;
    color: var(--site-blue);
    background: #edf1fb;
}

.feature-card h3 {
    margin-top: 19px;
}

.process-grid {
    gap: 16px;
}

.process-card {
    padding: 28px;
    border: 1px solid var(--site-line);
    border-top: 3px solid var(--site-blue);
    border-radius: 10px;
    color: var(--site-ink);
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 35, 65, .045);
}

.process-card::after {
    top: 16px;
    right: 20px;
    color: #e7ebf2;
    font-size: 42px;
    font-weight: 800;
}

.process-card p {
    color: var(--site-muted);
}

.plan-card {
    padding: 28px;
}

.plan-card.is-featured {
    border-color: var(--site-blue);
    box-shadow: 0 13px 35px rgba(36, 73, 199, .10);
}

.plan-label {
    padding: 6px 9px;
    border-radius: 4px;
}

.domain-search-panel {
    padding: 30px;
}

.domain-search-form {
    gap: 7px;
    padding: 6px;
    border-radius: 9px;
    background: #f8fafc;
}

.domain-search-form button {
    border-radius: 6px;
}

.tld-chips span {
    border-radius: 4px;
}

.site-cta {
    padding: 0 0 82px;
}

.site-cta-card {
    padding: 38px 42px;
    border-radius: 11px;
    background: #1e3f9f;
}

.site-cta-card h2 {
    font-size: clamp(29px, 3.5vw, 43px);
}

/* Footer closely follows the supplied reference: flat navy background,
   six practical columns, visible heading rules, and a wide layout. */
.site-footer {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    color: #fff;
    background: #0d172b;
}

.site-footer::before {
    display: none;
}

.footer-container {
    width: min(1500px, calc(100% - 72px));
    margin-inline: auto;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) repeat(4, minmax(115px, .72fr)) minmax(285px, 1.55fr);
    gap: clamp(28px, 3.6vw, 64px);
    align-items: start;
}

.footer-brand-block {
    min-width: 0;
}

.footer-brand-link {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -.035em;
}

.footer-brand-link .brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 7px;
}

.footer-brand-block > p {
    max-width: 350px;
    margin: 18px 0 0;
    color: #c0cad8;
    font-size: 13px;
    line-height: 1.75;
}

.footer-brand-block > .footer-brand-detail {
    margin-top: 17px;
    color: #93a1b5;
}

.footer-account-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #7888a0;
    font-size: 12px;
}

.footer-account-links a {
    color: #b9c5d7;
    text-decoration: none;
}

.footer-account-links a:hover {
    color: #fff;
}

.footer-column h2,
.footer-newsletter-block h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 21px;
    padding-bottom: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 750;
    letter-spacing: 0;
}

.footer-column h2::after,
.footer-newsletter-block h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 72px;
    height: 1px;
    background: rgba(255, 255, 255, .9);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li + li {
    margin-top: 13px;
}

.footer-column a {
    color: #c0cad8;
    font-size: 13px;
    line-height: 1.55;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-newsletter-block {
    min-width: 0;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 0;
    width: 100%;
    margin-top: 6px;
}

.footer-newsletter input {
    width: 100%;
    min-width: 0;
    height: 45px;
    padding: 0 13px;
    border: 1px solid #e2e6ed;
    border-right: 0;
    border-radius: 0;
    outline: none;
    color: #1f2937;
    background: #fff;
    font-size: 12px;
}

.footer-newsletter input::placeholder {
    color: #7d8797;
}

.footer-newsletter input:focus {
    border-color: #9eb0e8;
}

.footer-newsletter button {
    width: 96px;
    height: 45px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: #314fca;
    box-shadow: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.footer-newsletter button:hover {
    background: #2443b3;
    transform: none;
    filter: none;
}

.newsletter-message {
    grid-column: 1 / -1;
    min-height: 18px;
    padding-top: 7px;
    color: #8bd3a8;
    font-size: 11px;
}

.footer-contact-list {
    display: grid;
    gap: 11px;
    margin-top: 11px;
}

.footer-contact-list a,
.footer-contact-list > span {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #c0cad8;
    font-size: 12px;
    line-height: 1.5;
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list i {
    width: 15px;
    margin-top: 2px;
    color: #506bd8;
    text-align: center;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.footer-socials a {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    color: #fff;
    background: transparent;
    text-decoration: none;
}

.footer-socials a:hover {
    border-color: #506bd8;
    background: #314fca;
    transform: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 50px;
    padding: 22px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-bottom p {
    margin: 0;
    color: #8593a9;
    font-size: 12px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    max-width: 660px;
}

.payment-badges span {
    min-height: 26px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    color: #aeb9c9;
    background: rgba(255, 255, 255, .035);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .035em;
}

.back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 7px;
    background: var(--site-blue);
    box-shadow: 0 9px 24px rgba(20, 35, 65, .22);
}

/* Homepage refinements. These deliberately flatten common AI-style
   gradients, glass cards and excessive rounded geometry. */
.home-page {
    --home-blue: #2449c7;
    --home-blue-dark: #17358f;
    --home-line: #dde3eb;
    --home-soft: #f5f7fa;
    --home-shadow: 0 16px 42px rgba(20, 35, 65, .08);
}

.home-section {
    padding: 88px 0;
}

.home-hero {
    min-height: 650px;
    padding: 88px 0 104px;
    background: #f7f9fc;
}

.home-hero::after {
    background: #e1e6ed;
}

.home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(430px, .88fr);
    gap: clamp(42px, 5vw, 78px);
}

.home-hero-badge {
    padding: 8px 11px 8px 8px;
    border-radius: 6px;
    background: #fff;
    box-shadow: none;
    backdrop-filter: none;
}

.home-hero h1 {
    font-size: clamp(50px, 6vw, 78px);
    letter-spacing: -.052em;
}

.home-hero h1 span::after {
    height: 7px;
    border-radius: 0;
    background: rgba(43, 169, 191, .22);
}

.home-btn {
    border-radius: 8px;
}

.home-btn-primary {
    box-shadow: 0 8px 18px rgba(36, 73, 199, .17);
}

.home-btn-primary:hover {
    box-shadow: 0 10px 23px rgba(36, 73, 199, .21);
}

.home-btn-secondary:hover {
    box-shadow: 0 7px 18px rgba(20, 35, 65, .07);
}

.home-server-stage::before {
    width: 385px;
    height: 330px;
    border: 1px solid #d8e0ee;
    border-radius: 18px;
    background: #e9eef8;
    box-shadow: none;
    transform: rotate(-4deg);
}

.home-server-visual {
    filter: drop-shadow(0 26px 27px rgba(27, 49, 94, .12));
}

.home-floating-chip {
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(20, 35, 65, .11);
    backdrop-filter: none;
    animation: none !important;
}

.home-domain-wrap {
    margin-top: -48px;
}

.home-domain-card {
    padding: 28px 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(20, 35, 65, .09);
    backdrop-filter: none;
}

.home-domain-form {
    border-radius: 8px;
}

.home-domain-form button {
    border-radius: 5px;
}

.home-performance {
    padding: 80px 0 40px;
}

.home-performance-card {
    padding: 48px;
    border-radius: 12px;
    background: #14233d;
    box-shadow: 0 18px 45px rgba(16, 31, 63, .14);
}

.home-performance-card::before {
    display: none;
}

.home-performance-tags span,
.home-route-board::after {
    border-radius: 4px;
}

.home-route-board {
    border-radius: 10px;
}

.home-services-head {
    margin-bottom: 44px;
}

.home-service-tab {
    border-radius: 8px;
}

.home-service-tab:hover {
    transform: translateX(2px);
}

.home-service-tab.is-active {
    box-shadow: 0 7px 18px rgba(20, 35, 65, .06);
}

.home-service-tab-icon {
    border-radius: 7px;
}

.home-service-panel {
    min-height: 500px;
    border-radius: 11px;
    box-shadow: 0 12px 32px rgba(20, 35, 65, .07);
}

.home-panel-item {
    padding: 44px;
}

.home-panel-art {
    border-radius: 9px;
}

.home-network-board {
    border-radius: 11px;
    background: rgba(255, 255, 255, .025);
}

.home-node {
    border-radius: 8px;
    background: #13233c;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
    backdrop-filter: none;
}

.home-plan-toggle {
    border-radius: 8px;
}

.home-plan-toggle button {
    border-radius: 5px;
}

.home-plan-card {
    padding: 30px;
    border-radius: 10px;
}

.home-plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(20, 35, 65, .08);
}

.home-plan-card.is-featured {
    box-shadow: 0 13px 33px rgba(36, 73, 199, .11);
}

.home-popular-tag {
    border-radius: 0 0 5px 5px;
}

.home-support-main-card {
    border-radius: 11px;
    box-shadow: 0 16px 40px rgba(17, 31, 53, .17);
}

.home-support-main-card::after {
    display: none;
}

.home-support-float {
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(20, 35, 65, .10);
}

.home-final {
    padding: 40px 0 88px;
}

.home-final-card {
    padding: 47px 52px;
    border-radius: 11px;
    background: #2449c7;
    box-shadow: 0 15px 38px rgba(36, 73, 199, .18);
}

.home-final-card::before,
.home-final-card::after {
    display: none;
}

/* Dark mode retains the same restrained design language. */
body.dark-mode .site-header {
    border-color: #283345;
    background: rgba(14, 20, 30, .98);
}

body.dark-mode .nav-item:hover .nav-parent-link,
body.dark-mode .nav-item:hover .nav-submenu-toggle,
body.dark-mode .nav-item.is-active .nav-parent-link,
body.dark-mode .nav-item.is-active .nav-submenu-toggle {
    background: #1a2433;
}

body.dark-mode .inner-hero {
    border-color: #263143;
    background: #111823;
}

body.dark-mode .inner-visual::before {
    border-color: #2c394e;
    background: #182235;
}

body.dark-mode .visual-card,
body.dark-mode .feature-card,
body.dark-mode .plan-card,
body.dark-mode .domain-search-panel,
body.dark-mode .content-card,
body.dark-mode .process-card {
    border-color: #2a3547;
    background: #151d2a;
}

body.dark-mode .visual-details,
body.dark-mode .visual-details > div {
    border-color: #2a3547;
}

body.dark-mode .visual-details strong,
body.dark-mode .process-card {
    color: #eef2f7;
}

body.dark-mode .home-hero {
    background: #111823;
}

body.dark-mode .home-server-stage::before {
    border-color: #2c394e;
    background: #182235;
}

/* Responsive footer and page refinements. */
@media (max-width: 1240px) {
    :root {
        --site-container: min(100% - 48px, 1460px);
    }

    .footer-container {
        width: min(100% - 48px, 1500px);
    }

    .footer-main-grid {
        grid-template-columns: minmax(230px, 1.3fr) repeat(4, minmax(105px, .75fr));
        gap: 38px 28px;
    }

    .footer-newsletter-block {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(300px, .9fr);
        column-gap: 48px;
        align-items: start;
        padding-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .footer-newsletter-block h2,
    .footer-newsletter {
        grid-column: 1;
    }

    .footer-contact-list,
    .footer-socials {
        grid-column: 2;
    }

    .footer-contact-list {
        grid-row: 1 / span 2;
        margin-top: 7px;
    }
}

@media (max-width: 900px) {
    :root {
        --site-container: min(100% - 32px, 1460px);
        --header-height: 72px;
    }

    .site-header,
    .header-inner {
        height: var(--header-height);
        min-height: var(--header-height);
    }

    .site-nav {
        inset: var(--header-height) 0 auto;
    }

    .inner-hero {
        padding: 72px 0 68px;
    }

    .inner-hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .inner-visual {
        min-height: 300px;
        justify-items: start;
    }

    .visual-card {
        max-width: 430px;
    }

    .footer-container {
        width: min(100% - 32px, 1500px);
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px 36px;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-newsletter-block {
        grid-column: 1 / -1;
        display: block;
    }

    .footer-contact-list {
        margin-top: 13px;
    }

    .home-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --site-container: min(100% - 28px, 1460px);
    }

    .site-footer {
        padding-top: 54px;
    }

    .footer-container {
        width: min(100% - 28px, 1500px);
    }

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

    .footer-brand-block,
    .footer-newsletter-block {
        grid-column: 1 / -1;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 94px;
    }

    .footer-newsletter button {
        width: 94px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 40px;
    }

    .payment-badges {
        justify-content: flex-start;
    }

    .inner-section {
        padding: 68px 0;
    }

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

    .inner-visual::before {
        width: calc(100% - 18px);
        height: 250px;
        transform: translate(12px, 12px);
    }

    .home-section {
        padding: 70px 0;
    }

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

    .home-performance-card,
    .home-panel-item,
    .home-final-card {
        padding: 28px 23px;
    }
}

@media (max-width: 420px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-block,
    .footer-newsletter-block {
        grid-column: auto;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .footer-newsletter input {
        border-right: 1px solid #e2e6ed;
    }

    .footer-newsletter button {
        width: 100%;
    }
}

/* Content remains visible even when JavaScript or an animation observer is unavailable. */
.home-reveal,
.home-reveal.is-visible {
    opacity: 1;
    transform: none;
}


/* =========================================================
   MOBILE HEADER / FOOTER FIXES — AUG 2026 REVISION
========================================================= */
.header-inner {
    justify-content: space-between;
}

.header-actions {
    margin-left: auto;
    flex: 0 0 auto;
}

.brand-logo-wrap,
.footer-logo-wrap {
    display: inline-flex;
    align-items: center;
}

.brand-logo-wrap {
    width: clamp(160px, 14vw, 210px);
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
}

.brand-logo-dark {
    display: none;
}

body.dark-mode .brand-logo-light {
    display: none;
}

body.dark-mode .brand-logo-dark {
    display: block;
}

.footer-logo-wrap {
    width: min(220px, 100%);
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
}

.footer-account-links {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.footer-account-links span {
    display: none;
}

.footer-account-button {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #fff;
    background: var(--site-blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-account-button:hover {
    text-decoration: none;
    background: #1d40b7;
}

.footer-account-button-outline {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.04);
}

.footer-account-button-outline:hover {
    background: rgba(255,255,255,.10);
}

.footer-main-grid {
    grid-template-columns: minmax(240px, 1.35fr) repeat(6, minmax(110px, .70fr)) minmax(275px, 1.4fr);
}

.payment-gateway-strip {
    width: min(430px, 100%);
}

.payment-gateway-strip img {
    display: block;
    width: 100%;
    height: auto;
}

.nav-mobile-account-buttons {
    display: none;
}

@media (max-width: 1280px) {
    .footer-main-grid {
        grid-template-columns: minmax(220px, 1.2fr) repeat(6, minmax(100px, .74fr));
        gap: 36px 22px;
    }

    .footer-newsletter-block {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(300px, .95fr);
        column-gap: 46px;
        padding-top: 10px;
        border-top: 1px solid rgba(255,255,255,.08);
    }

    .footer-newsletter-block h2,
    .footer-newsletter,
    .newsletter-message {
        grid-column: 1;
    }

    .footer-contact-list,
    .footer-socials {
        grid-column: 2;
    }

    .footer-contact-list {
        grid-row: 1 / span 2;
        margin-top: 8px;
    }
}

@media (max-width: 900px) {
    .brand-logo-wrap {
        width: 180px;
    }

    .menu-button {
        display: grid;
        position: relative;
        z-index: 100002;
    }

    .theme-button {
        position: relative;
        z-index: 100002;
    }

    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        z-index: 100001;
        width: 100%;
        max-height: 0;
        margin: 0;
        border-top: 1px solid transparent;
        background: #fff;
        box-shadow: 0 16px 38px rgba(18,31,61,.12);
        overflow: hidden;
        transition: max-height .25s ease, border-color .25s ease;
    }

    .site-nav.is-open {
        max-height: calc(100dvh - var(--header-height));
        border-color: #e5eaf1;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .nav-list {
        width: var(--site-container);
        display: block;
        margin: 0 auto;
        padding: 6px 0 14px;
    }

    .nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #edf0f5;
    }

    .nav-parent-row {
        width: 100%;
        align-items: center;
    }

    .nav-parent-link {
        min-height: 48px;
        flex: 1 1 auto;
        padding: 0 10px 0 0;
        border-radius: 0;
        font-size: 15px;
    }

    .nav-submenu-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        margin-right: 0;
        border-radius: 6px;
    }

    .nav-submenu {
        position: static;
        min-width: 0;
        max-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        transition: max-height .25s ease, padding .25s ease;
    }

    .nav-dropdown.submenu-open .nav-submenu {
        max-height: 460px;
        padding: 0 0 8px 0;
    }

    .nav-submenu a {
        min-height: 42px;
        padding: 8px 0 8px 16px;
        border-radius: 0;
        font-size: 14px;
    }

    .nav-client-mobile {
        display: block;
        padding-top: 14px;
        border-bottom: 0;
    }

    .nav-mobile-account-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nav-mobile-account-buttons a {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }

    .nav-mobile-outline {
        border: 1px solid #d9e1ec;
        color: #2b3747;
        background: #fff;
    }

    .nav-mobile-fill {
        color: #fff;
        background: var(--site-blue);
    }

    .client-area-desktop {
        display: none;
    }

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

    .footer-brand-block,
    .footer-newsletter-block {
        grid-column: 1 / -1;
    }

    .footer-newsletter-block {
        display: block;
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 640px) {
    .brand-logo-wrap {
        width: 165px;
    }

    .header-actions {
        gap: 8px;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 18px;
    }

    .footer-column h2,
    .footer-newsletter-block h2 {
        margin-bottom: 16px;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 0;
    }

    .footer-newsletter input {
        border-right: 0;
    }

    .footer-newsletter button {
        width: 104px;
    }

    .footer-bottom {
        margin-top: 34px;
    }

    .payment-gateway-strip {
        width: min(360px, 100%);
    }
}

@media (max-width: 420px) {
    .brand-logo-wrap {
        width: 152px;
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 98px;
        gap: 0;
    }

    .footer-newsletter button {
        width: 98px;
    }
}


/* FOOTER ALIGNMENT / LOGO CLS / MOBILE ACTIVE-STATE FIX — AUG 2026 */
:root {
    --site-container: min(1600px, calc(100% - 48px));
}

.brand {
    min-width: 0;
}

.brand-logo-wrap {
    width: auto;
    height: 42px;
    flex: 0 0 auto;
    overflow: hidden;
}

.brand-logo {
    width: auto;
    height: 42px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
}

.footer-logo-wrap {
    width: auto;
    height: 44px;
    overflow: hidden;
}

.footer-logo {
    width: auto;
    height: 44px;
    max-width: min(100%, 225px);
    object-fit: contain;
    object-position: left center;
}

.footer-container {
    width: var(--site-container);
}

.footer-main-grid {
    grid-template-columns: minmax(205px, 1.28fr) repeat(6, minmax(0, .69fr)) minmax(235px, 1.23fr);
    gap: clamp(18px, 1.75vw, 34px);
    width: 100%;
}

.footer-main-grid > * {
    min-width: 0;
}

.footer-newsletter-block,
.footer-newsletter,
.footer-newsletter input,
.footer-contact-list,
.footer-contact-list a,
.footer-contact-list > span {
    min-width: 0;
    max-width: 100%;
}

.footer-contact-list span,
.footer-contact-list a span {
    overflow-wrap: anywhere;
}

.payment-gateway-strip {
    width: min(440px, 100%);
    min-width: 0;
}

.payment-gateway-strip img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Laptop layout: brand and newsletter on the first row,
   all six navigation groups aligned below them. */
@media (min-width: 901px) and (max-width: 1280px) {
    .footer-container {
        width: var(--site-container);
    }

    .footer-main-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 42px 24px;
    }

    .footer-brand-block {
        grid-column: 1 / 4;
        grid-row: 1;
    }

    .footer-newsletter-block {
        grid-column: 4 / 7;
        grid-row: 1;
        display: block;
        padding-top: 0;
        border-top: 0;
    }

    .footer-menu-domain { grid-column: 1; grid-row: 2; }
    .footer-menu-services { grid-column: 2; grid-row: 2; }
    .footer-menu-server { grid-column: 3; grid-row: 2; }
    .footer-menu-company { grid-column: 4; grid-row: 2; }
    .footer-menu-support { grid-column: 5; grid-row: 2; }
    .footer-menu-legal { grid-column: 6; grid-row: 2; }

    .footer-newsletter-block h2,
    .footer-newsletter,
    .footer-contact-list,
    .footer-socials {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-contact-list {
        margin-top: 13px;
        padding-top: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --site-container: min(1600px, calc(100% - 28px));
    }

    .brand-logo-wrap,
    .brand-logo {
        height: 40px;
    }

    /* Keep active/current/touch-hover menu rows visually neutral. */
    .nav-item:hover .nav-parent-link,
    .nav-item:hover .nav-submenu-toggle,
    .nav-item.is-active .nav-parent-link,
    .nav-item.is-active .nav-submenu-toggle,
    .nav-parent-link:active,
    .nav-submenu-toggle:active,
    .nav-parent-link:focus-visible,
    .nav-submenu-toggle:focus-visible {
        color: #313b4c;
        background: transparent;
        box-shadow: none;
        outline: none;
    }

    .nav-item:hover .nav-parent-link i,
    .nav-item.is-active .nav-parent-link i,
    .nav-parent-link:active i,
    .nav-parent-link:focus-visible i {
        color: #718096;
    }

    body.dark-mode .nav-item:hover .nav-parent-link,
    body.dark-mode .nav-item:hover .nav-submenu-toggle,
    body.dark-mode .nav-item.is-active .nav-parent-link,
    body.dark-mode .nav-item.is-active .nav-submenu-toggle,
    body.dark-mode .nav-parent-link:active,
    body.dark-mode .nav-submenu-toggle:active,
    body.dark-mode .nav-parent-link:focus-visible,
    body.dark-mode .nav-submenu-toggle:focus-visible {
        color: #e7edf7;
        background: transparent;
    }

    body.dark-mode .nav-item:hover .nav-parent-link i,
    body.dark-mode .nav-item.is-active .nav-parent-link i,
    body.dark-mode .nav-parent-link:active i,
    body.dark-mode .nav-parent-link:focus-visible i {
        color: #91a0b6;
    }

    .footer-container {
        width: var(--site-container);
    }

    .footer-main-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 20px;
    }

    .footer-brand-block,
    .footer-newsletter-block {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: center;
        text-align: center;
    }

    .footer-bottom p {
        width: 100%;
        text-align: center;
    }

    .payment-gateway-strip {
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .brand-logo-wrap,
    .brand-logo {
        height: 38px;
    }

    .footer-logo-wrap,
    .footer-logo {
        height: 40px;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 100px;
    }

    .footer-newsletter button {
        width: 100px;
    }

    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 390px) {
    .brand-logo-wrap,
    .brand-logo {
        height: 35px;
    }

    .footer-main-grid {
        gap: 28px 14px;
    }

    .footer-newsletter {
        grid-template-columns: minmax(0, 1fr) 92px;
    }

    .footer-newsletter button {
        width: 92px;
        font-size: 11px;
    }
}


/* FINAL CONTACT / N8N / NAV-STATE REVISION — AUG 2026 */
.footer-brand-block > .footer-brand-detail + .footer-brand-detail {
    margin-top: 12px;
}

.footer-account-button {
    gap: 9px;
}

.footer-account-button i {
    font-size: 11px;
    transition: transform .18s ease;
}

.footer-account-button:hover i {
    transform: translateX(3px);
}

/* Keep the primary desktop navigation neutral on hover and on the current page. */
.nav-item:hover .nav-parent-link,
.nav-item:hover .nav-submenu-toggle,
.nav-item.is-active .nav-parent-link,
.nav-item.is-active .nav-submenu-toggle,
.nav-parent-link:active,
.nav-submenu-toggle:active,
.nav-parent-link:focus-visible,
.nav-submenu-toggle:focus-visible {
    color: #313b4c;
    background: transparent;
    box-shadow: none;
}

.nav-item:hover .nav-parent-link i,
.nav-item.is-active .nav-parent-link i,
.nav-parent-link:active i,
.nav-parent-link:focus-visible i {
    color: #718096;
}

body.dark-mode .nav-item:hover .nav-parent-link,
body.dark-mode .nav-item:hover .nav-submenu-toggle,
body.dark-mode .nav-item.is-active .nav-parent-link,
body.dark-mode .nav-item.is-active .nav-submenu-toggle,
body.dark-mode .nav-parent-link:active,
body.dark-mode .nav-submenu-toggle:active,
body.dark-mode .nav-parent-link:focus-visible,
body.dark-mode .nav-submenu-toggle:focus-visible {
    color: #e7edf7;
    background: transparent;
    box-shadow: none;
}

body.dark-mode .nav-item:hover .nav-parent-link i,
body.dark-mode .nav-item.is-active .nav-parent-link i,
body.dark-mode .nav-parent-link:active i,
body.dark-mode .nav-parent-link:focus-visible i {
    color: #91a0b6;
}

@media (max-width: 640px) {
    /* Header and footer logos use the same restrained mobile height. */
    .brand-logo-wrap,
    .brand-logo,
    .footer-logo-wrap,
    .footer-logo {
        height: 32px;
    }

    .footer-brand-block > p {
        max-width: none;
    }
}

@media (max-width: 390px) {
    .brand-logo-wrap,
    .brand-logo,
    .footer-logo-wrap,
    .footer-logo {
        height: 30px;
    }
}


/* FIXED LOGO BOXES FOR ZERO LAYOUT SHIFT — AUG 2026 */
.brand-logo-wrap {
    width: 211px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.brand-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.footer-logo-wrap {
    width: 221px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.footer-logo {
    width: 100%;
    height: 100%;
    max-width: none;
    display: block;
    object-fit: contain;
    object-position: left center;
}

@media (max-width: 640px) {
    .brand-logo-wrap,
    .footer-logo-wrap {
        width: 160px;
        height: 32px;
    }

    .brand-logo,
    .footer-logo {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 390px) {
    .brand-logo-wrap,
    .footer-logo-wrap {
        width: 150px;
        height: 30px;
    }
}


/* HEADER ACCOUNT / SINGLE-LOGO FINAL REVISION — AUG 2026 */
/* Use one logo asset everywhere. The footer and dark header are made white by CSS. */
.site-footer .footer-logo {
    filter: brightness(0) invert(1);
}

body.dark-mode .brand-logo {
    filter: brightness(0) invert(1);
}

.brand-logo,
.footer-logo {
    transition: filter .18s ease;
}

/* Desktop navigation begins directly after the logo; actions stay at the far right. */
@media (min-width: 901px) {
    .header-inner {
        justify-content: flex-start;
    }

    .site-nav {
        margin-left: 34px;
        margin-right: 0;
        flex: 0 1 auto;
    }

    .header-actions {
        margin-left: auto;
    }
}

.client-area-btn {
    gap: 9px;
}

.client-area-btn i {
    flex: 0 0 auto;
}

/* Mobile account order: Register on the left and Client Area on the right. */
@media (max-width: 900px) {
    .nav-mobile-account-buttons {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .nav-mobile-account-buttons a {
        white-space: nowrap;
    }
}

@media (max-width: 390px) {
    .nav-mobile-account-buttons a {
        gap: 6px;
        padding-inline: 8px;
        font-size: 13px;
    }
}

@media (min-width: 901px) and (max-width: 1080px) {
    .brand-logo-wrap {
        width: 180px;
        height: 36px;
    }

    .site-nav {
        margin-left: 14px;
    }

    .nav-list {
        gap: 1px;
    }

    .nav-parent-link {
        padding-inline: 7px 5px;
        font-size: 12px;
    }

    .nav-submenu-toggle {
        width: 22px;
    }

    .client-area-btn {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .icon-button {
        width: 40px;
        height: 40px;
    }
}


/* RIGHT-ALIGNED DESKTOP NAVIGATION / COMPACT CHEVRONS — AUG 2026 */
/* Keep the logo at the left, while the full navigation cluster sits against
   the Client Area and theme controls on the right side of the header. */
@media (min-width: 901px) {
    .header-inner {
        justify-content: flex-start;
    }

    .site-nav {
        flex: 0 1 auto;
        margin-left: auto;
        margin-right: 0;
    }

    .header-actions {
        flex: 0 0 auto;
        margin-left: 12px;
    }

    .nav-list {
        justify-content: flex-end;
        gap: 4px;
    }

    .nav-parent-row {
        gap: 0;
    }

    .nav-parent-link {
        padding-right: 2px;
    }

    .nav-submenu-toggle {
        width: 18px;
        margin-left: -1px;
    }

    .nav-submenu-toggle i {
        font-size: 9px;
    }
}

/* Make sure the text appears before each footer arrow on every viewport. */
.footer-account-button {
    gap: 9px;
}

@media (min-width: 901px) and (max-width: 1080px) {
    .site-nav {
        margin-left: auto;
    }

    .header-actions {
        margin-left: 8px;
    }

    .nav-list {
        gap: 0;
    }

    .nav-parent-link {
        padding-right: 1px;
    }

    .nav-submenu-toggle {
        width: 16px;
        margin-left: -2px;
    }
}


/* FOOTER SPACING / MOBILE BOTTOM ORDER REVISION — AUG 2026 */
/* Keep the contact details visually connected to the newsletter field. */
.newsletter-message:empty {
    display: none;
}

.footer-contact-list {
    margin-top: 14px;
}

/* On mobile, show the payment gateway image first, then the copyright line.
   Extra bottom space keeps the fixed back-to-top control clear of the text. */
@media (max-width: 900px) {
    .footer-bottom {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 18px;
        padding-bottom: 82px;
    }

    .payment-gateway-strip {
        order: 1;
        margin-inline: auto;
    }

    .footer-bottom p {
        order: 2;
        width: 100%;
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .footer-contact-list {
        margin-top: 14px;
    }

    .footer-bottom {
        padding-bottom: 88px;
    }
}



/* SERVICE CATALOG PRICING CARDS — AUG 2026 */
.plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
    align-items: stretch;
    gap: 20px;
}

.plan-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 30px 26px;
    overflow: hidden;
}

.plan-card h3 {
    margin-bottom: 0;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    min-height: 55px;
    margin: 15px 0 14px;
    color: var(--site-ink);
    white-space: nowrap;
}

.plan-currency {
    align-self: flex-start;
    margin-top: 8px;
    color: var(--site-blue);
    font-size: 20px;
    font-weight: 800;
}

.plan-price strong {
    font-size: clamp(34px, 3vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
}

.plan-billing {
    margin-bottom: 5px;
    color: var(--site-muted);
    font-size: 13px;
    font-weight: 650;
}

.plan-card > p {
    min-height: 0;
    margin-top: 0;
}

.plan-list {
    flex: 1 1 auto;
    margin-bottom: 24px;
}

.plan-list li {
    align-items: flex-start;
}

.plan-list i {
    margin-top: 3px;
}

.plan-card .site-button {
    width: 100%;
    margin-top: auto;
    gap: 9px;
}

body.dark-mode .plan-price {
    color: #f5f7fb;
}

@media (min-width: 901px) and (max-width: 1440px) {
    .footer-bottom {
        padding-right: 76px;
        padding-bottom: 58px;
    }

    .payment-gateway-strip {
        max-width: calc(100% - 24px);
    }
}

@media (max-width: 640px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 27px 22px;
    }
}


/* YEARLY BILLING / CURRENCY SWITCHER — AUG 2026 */
.currency-switcher {
    position: relative;
    flex: 0 0 auto;
}

.currency-button {
    width: 58px;
    padding: 0;
}

.currency-symbol-pair {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #263248;
    font-size: 14px;
    line-height: 1;
}

.currency-symbol-pair b {
    font-weight: 800;
}

.currency-symbol-pair i {
    color: #95a0af;
    font-style: normal;
    font-weight: 500;
}

.currency-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 100020;
    width: 150px;
    padding: 7px;
    border: 1px solid #dfe5ed;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20,35,65,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(7px);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.currency-switcher.is-open .currency-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-menu button {
    width: 100%;
    min-height: 40px;
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 8px;
    align-items: center;
    padding: 0 10px;
    border: 0;
    border-radius: 7px;
    color: #334155;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.currency-menu button:hover,
.currency-menu button.is-active {
    color: var(--site-blue);
    background: #f1f5ff;
}

.currency-menu button span {
    font-size: 17px;
    font-weight: 800;
    text-align: center;
}

.currency-menu button strong {
    font-size: 12px;
    letter-spacing: .04em;
}

body.dark-mode .currency-symbol-pair {
    color: #f1f5f9;
}

body.dark-mode .currency-menu {
    border-color: #2d3748;
    background: #111824;
}

body.dark-mode .currency-menu button {
    color: #d7deea;
}

body.dark-mode .currency-menu button:hover,
body.dark-mode .currency-menu button.is-active {
    color: #fff;
    background: #1a2740;
}

@media (min-width: 901px) {
    .header-actions {
        gap: 8px;
    }

    .currency-switcher { order: 1; }
    .theme-button { order: 2; }
    .client-area-desktop { order: 3; }
    .menu-button { order: 4; }
}

@media (max-width: 900px) {
    .header-actions {
        gap: 7px;
    }

    .currency-button {
        width: 52px;
        height: 40px;
    }

    .currency-switcher { order: 1; }
    .theme-button { order: 2; }
    .menu-button { order: 3; }

    .currency-menu {
        position: fixed;
        top: calc(var(--header-height) - 3px);
        right: 14px;
    }
}

@media (max-width: 390px) {
    .currency-button {
        width: 48px;
    }

    .currency-symbol-pair {
        gap: 3px;
        font-size: 13px;
    }
}

.pricing-section-heading {
    align-items: flex-end;
}

.pricing-section-heading > div:first-child {
    min-width: 0;
}

.billing-cycle-switch {
    flex: 0 0 auto;
    display: inline-flex;
    padding: 4px;
    border: 1px solid #dbe2ec;
    border-radius: 10px;
    background: #fff;
}

.billing-cycle-switch button {
    min-width: 92px;
    min-height: 40px;
    padding: 0 15px;
    border: 0;
    border-radius: 7px;
    color: #5e6979;
    background: transparent;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
}

.billing-cycle-switch button.is-active {
    color: #fff;
    background: var(--site-blue);
    box-shadow: 0 7px 16px rgba(36,73,199,.18);
}

.pricing-cycle-note {
    margin: -20px 0 28px;
    color: #778294;
    font-size: 12px;
    line-height: 1.6;
}

.plan-price-meta {
    display: inline-flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1px;
    margin: 0 0 4px 2px;
}

.plan-price-code {
    color: #8a95a5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

body.dark-mode .billing-cycle-switch {
    border-color: #2b374a;
    background: #121b2a;
}

body.dark-mode .billing-cycle-switch button {
    color: #aeb9ca;
}

body.dark-mode .pricing-cycle-note,
body.dark-mode .plan-price-code {
    color: #8d9ab0;
}

@media (max-width: 900px) {
    .pricing-section-heading {
        align-items: flex-start;
    }

    .billing-cycle-switch {
        margin-top: 3px;
    }

    .pricing-cycle-note {
        margin-top: -12px;
    }
}

@media (max-width: 520px) {
    .billing-cycle-switch {
        width: 100%;
    }

    .billing-cycle-switch button {
        flex: 1 1 50%;
        min-width: 0;
    }

    .pricing-cycle-note {
        margin-bottom: 22px;
    }
}


/* ACTIVE CURRENCY SYMBOL / PRICE TYPOGRAPHY — AUG 2026 */
.currency-button {
    width: 44px;
}

.currency-current-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #263248;
    font-size: 20px;
    font-weight: 850;
    line-height: 1;
}

body.dark-mode .currency-current-symbol {
    color: #f1f5f9;
}

.plan-price {
    align-items: center;
    gap: 5px;
}

.plan-currency {
    align-self: center;
    margin-top: 0;
    color: var(--site-blue);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.045em;
}

.plan-price-meta {
    align-self: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    margin: 1px 0 0 3px;
}

.plan-price-code {
    order: 1;
    color: #6f7b8d;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .07em;
    line-height: 1.15;
}

.plan-billing {
    order: 2;
    margin-bottom: 0;
    color: var(--site-muted);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.15;
}

@media (max-width: 900px) {
    .currency-button {
        width: 40px;
    }

    .currency-current-symbol {
        font-size: 19px;
    }
}

@media (max-width: 390px) {
    .currency-button {
        width: 38px;
    }

    .currency-current-symbol {
        font-size: 18px;
    }
}


/* PLAN CARD / BILLING / LAPTOP FOOTER FINAL REFINEMENT — AUG 2026 */
/* Plan names replace the old marketing badges and remain centered. */
.plan-card {
    position: relative;
    padding-top: 30px;
}

.plan-card .plan-label {
    display: none !important;
}

.plan-card .plan-title,
.plan-card h3 {
    width: 100%;
    margin: 0;
    padding-inline: 38px;
    color: var(--site-ink);
    text-align: center;
    line-height: 1.25;
}

/* Thick diagonal corner ribbon used only for the selected plan. */
.plan-featured-ribbon {
    position: absolute;
    top: 22px;
    right: -48px;
    z-index: 3;
    width: 158px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    color: #fff;
    background: var(--site-blue);
    box-shadow: 0 4px 10px rgba(36, 73, 199, .22);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .075em;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(45deg);
    transform-origin: center;
    pointer-events: none;
}

.plan-card.is-featured {
    border-color: var(--site-blue);
}

body.dark-mode .plan-card .plan-title,
body.dark-mode .plan-card h3 {
    color: #f5f7fb;
}

/* Keep the savings message outside the billing switch and aligned under Yearly. */
.billing-cycle-control {
    flex: 0 0 auto;
    display: grid;
    justify-items: end;
}

.billing-save-note {
    width: 50%;
    margin-top: 6px;
    color: #17865f;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

body.dark-mode .billing-save-note {
    color: #62d6aa;
}

/* Desktop/laptop: copyright stays flush left and payment artwork flush right.
   Bottom clearance prevents the fixed back-to-top button from touching it. */
@media (min-width: 901px) {
    .footer-bottom {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding-right: 0 !important;
        padding-bottom: 86px !important;
    }

    .footer-bottom p {
        flex: 0 1 auto;
        margin-right: 28px;
        text-align: left;
    }

    .payment-gateway-strip {
        flex: 0 1 430px;
        width: clamp(300px, 34vw, 430px);
        max-width: 430px !important;
        margin-right: 0;
        margin-left: auto;
    }

    .payment-gateway-strip img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: right center;
    }
}

@media (max-width: 900px) {
    .billing-cycle-control {
        width: 100%;
        justify-items: stretch;
    }

    .billing-save-note {
        justify-self: end;
    }
}

@media (max-width: 520px) {
    .plan-card .plan-title,
    .plan-card h3 {
        padding-inline: 32px;
    }

    .plan-featured-ribbon {
        top: 19px;
        right: -46px;
        width: 146px;
        height: 31px;
        font-size: 9.5px;
    }
}

/* FOOTER CONTACT ICON ALIGNMENT FIX — AUG 2026 */
.footer-contact-list a,
.footer-contact-list > span {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: center;
    column-gap: 9px;
}

.footer-contact-list i {
    width: 16px;
    height: 1.5em;
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    line-height: 1;
    text-align: center;
}

.footer-contact-list a > span,
.footer-contact-list > span > span {
    line-height: 1.5;
}

/* NEWSLETTER CONTACT START + ROW ALIGNMENT FIX — AUG 2026
   Keep the full contact block a clear, equal distance below the email field,
   and place each icon on the exact same horizontal line as its text. */
.footer-newsletter-block .footer-contact-list {
    margin-top: 18px !important;
    padding-top: 0 !important;
    display: grid;
    row-gap: 11px;
}

.footer-newsletter-block .footer-contact-list a,
.footer-newsletter-block .footer-contact-list > span {
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 20px;
}

.footer-newsletter-block .footer-contact-list i {
    width: 16px;
    height: 20px;
    flex: 0 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    align-self: center;
    line-height: 20px;
    vertical-align: middle;
    transform: translateY(1px);
}

.footer-newsletter-block .footer-contact-list a > span,
.footer-newsletter-block .footer-contact-list > span > span {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

/* =========================================================
   FOOTER CONTACT ROW — CROSS-DEVICE BASELINE ALIGNMENT
   Uses identical row boxes for the icon and its text on
   desktop, laptop and mobile. No breakpoint-specific offset.
========================================================= */
.footer-newsletter-block .footer-contact-list {
    --footer-contact-row-height: 24px;
    --footer-contact-icon-width: 18px;
    display: grid;
    row-gap: 11px;
    margin-top: 18px !important;
    padding: 0 !important;
}

.footer-newsletter-block .footer-contact-list > a,
.footer-newsletter-block .footer-contact-list > span {
    display: grid !important;
    grid-template-columns: var(--footer-contact-icon-width) minmax(0, 1fr);
    align-items: center !important;
    column-gap: 10px;
    min-height: var(--footer-contact-row-height);
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

.footer-newsletter-block .footer-contact-list > a > i,
.footer-newsletter-block .footer-contact-list > span > i {
    grid-column: 1;
    width: var(--footer-contact-icon-width) !important;
    height: var(--footer-contact-row-height) !important;
    min-width: var(--footer-contact-icon-width);
    min-height: var(--footer-contact-row-height);
    display: grid !important;
    place-items: center;
    align-self: center !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    top: auto !important;
    line-height: 1 !important;
    vertical-align: initial !important;
    transform: none !important;
}

.footer-newsletter-block .footer-contact-list > a > i::before,
.footer-newsletter-block .footer-contact-list > span > i::before {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-newsletter-block .footer-contact-list > a > span,
.footer-newsletter-block .footer-contact-list > span > span {
    grid-column: 2;
    min-width: 0;
    min-height: var(--footer-contact-row-height);
    display: flex !important;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: var(--footer-contact-row-height) !important;
    position: static !important;
    top: auto !important;
    vertical-align: initial !important;
    transform: none !important;
}

/* Re-assert the same geometry after all responsive rules. */
@media (max-width: 900px) {
    .footer-newsletter-block .footer-contact-list {
        --footer-contact-row-height: 24px;
        --footer-contact-icon-width: 18px;
    }

    .footer-newsletter-block .footer-contact-list > a,
    .footer-newsletter-block .footer-contact-list > span {
        align-items: center !important;
    }
}

/* =========================================================
   FOOTER CONTACT — DESKTOP OPTICAL CENTERING
   Font Awesome glyphs render fractionally high at the smaller
   desktop footer font size. Keep the mobile geometry unchanged
   and lower only the desktop icon box by one device-independent
   pixel so each icon sits level with its corresponding text.
========================================================= */
@media (min-width: 901px) {
    .footer-newsletter-block .footer-contact-list > a > i,
    .footer-newsletter-block .footer-contact-list > span > i {
        transform: translateY(1px) !important;
    }
}

/* =========================================================
   FOOTER CONTACT — FINAL CROSS-DEVICE OPTICAL ALIGNMENT
   Keep icon and text in the same 24px row box. Font Awesome
   glyphs sit slightly high on desktop, so only the glyph is
   optically lowered there; mobile keeps its existing alignment.
========================================================= */
.footer-newsletter-block .footer-contact-list {
    --footer-contact-row-height: 24px;
    --footer-contact-icon-width: 18px;
    --footer-contact-icon-optical-offset: 0px;
}

.footer-newsletter-block .footer-contact-list > a,
.footer-newsletter-block .footer-contact-list > span {
    display: grid !important;
    grid-template-columns: var(--footer-contact-icon-width) minmax(0, 1fr);
    align-items: center !important;
    column-gap: 10px;
    min-height: var(--footer-contact-row-height);
    line-height: var(--footer-contact-row-height) !important;
}

.footer-newsletter-block .footer-contact-list > a > i,
.footer-newsletter-block .footer-contact-list > span > i {
    width: var(--footer-contact-icon-width) !important;
    height: var(--footer-contact-row-height) !important;
    display: grid !important;
    place-items: center !important;
    align-self: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    transform: none !important;
}

.footer-newsletter-block .footer-contact-list > a > i::before,
.footer-newsletter-block .footer-contact-list > span > i::before {
    display: block;
    position: relative;
    top: var(--footer-contact-icon-optical-offset);
    margin: 0;
    padding: 0;
    line-height: 1 !important;
}

.footer-newsletter-block .footer-contact-list > a > span,
.footer-newsletter-block .footer-contact-list > span > span {
    min-height: var(--footer-contact-row-height);
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: var(--footer-contact-row-height) !important;
    transform: none !important;
}

@media (min-width: 901px) {
    .footer-newsletter-block .footer-contact-list {
        --footer-contact-icon-optical-offset: 2px;
    }
}

@media (max-width: 900px) {
    .footer-newsletter-block .footer-contact-list {
        --footer-contact-icon-optical-offset: 0px;
    }
}
