:root {
    --ink: #07111f;
    --navy: #071733;
    --navy-2: #0b214b;
    --blue: #1d64f2;
    --blue-2: #0956ff;
    --cyan: #19c5ff;
    --soft-blue: #eaf2ff;
    --mint: #2fc486;
    --paper: #f5f8fd;
    --white: #ffffff;
    --line: #dde7f3;
    --muted: #63728a;
    --shadow: 0 24px 70px rgba(10, 32, 67, .16);
    --container: 1540px;
    --container-gutter: clamp(40px, 19vw, 360px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-top: 212px;
    color: var(--ink);
    background: var(--paper);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    font-weight: 500;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - var(--container-gutter)));
    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;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 30;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(7, 17, 31, .06);
    transition: box-shadow .24s ease;
}

.site-header,
.site-header a,
.site-header button {
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.site-header.is-scrolled {
    box-shadow: 0 18px 42px rgba(7, 17, 31, .12);
}

.promo-bar {
    min-height: 66px;
    max-height: 66px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(29, 100, 242, .35), transparent 26%),
        radial-gradient(circle at 86% 0%, rgba(25, 197, 255, .18), transparent 26%),
        linear-gradient(90deg, #061026 0%, #061329 48%, #08255c 100%);
    color: var(--white);
    transition: max-height .24s ease, min-height .24s ease, opacity .18s ease;
}

.promo-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 28px;
    min-height: 66px;
}

.promo-copy,
.promo-countdown,
.utility-left,
.utility-right,
.header-actions,
.main-nav a,
.domain-search,
.hero-metric-pills,
.hero-metric-pills span {
    display: flex;
    align-items: center;
}

.promo-copy {
    gap: 14px;
    min-width: 0;
    font-size: 18px;
    letter-spacing: 0;
}

.promo-copy svg {
    width: 28px;
    height: 28px;
    color: var(--cyan);
    flex: 0 0 auto;
}

.promo-copy strong {
    min-width: 0;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.promo-copy span {
    color: var(--cyan);
}

.promo-countdown {
    gap: 22px;
    font-size: 20px;
    font-weight: 800;
}

.promo-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
}

.utility-bar {
    min-height: 52px;
    max-height: 52px;
    overflow: hidden;
    background: #eef3f9;
    border-bottom: 1px solid var(--line);
    color: #687693;
    transition: max-height .24s ease, min-height .24s ease, opacity .18s ease, border-color .18s ease;
}

.site-header.is-scrolled .promo-bar,
.site-header.is-scrolled .utility-bar {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    border-color: transparent;
    border-width: 0;
    pointer-events: none;
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    min-height: 52px;
}

.utility-left,
.utility-right {
    gap: 18px;
    min-width: 0;
}

.utility-left a,
.utility-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    font-weight: 500;
    white-space: nowrap;
}

.utility-right a+a,
.utility-left a+a {
    border-left: 1px solid #d6deea;
    padding-left: 18px;
}

.utility-right .accent {
    color: var(--blue);
}

.utility-bar svg,
.main-nav svg,
.nav-toggle svg,
.promo-copy svg,
.header-actions svg,
.domain-icon svg,
.btn svg,
.contact-form button svg,
.feature-icon svg,
.price-card li svg,
.hero-metric-pills svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.utility-bar svg {
    width: 20px;
    height: 20px;
}

.main-header {
    background: var(--white);
    transition: background .24s ease, backdrop-filter .24s ease;
}

.site-header.is-scrolled .main-header {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.main-header-inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 94px;
    transition: min-height .24s ease;
}

.site-header.is-scrolled .main-header-inner {
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.brand-mark {
    display: grid;
    align-items: center;
    justify-items: start;
    width: 240px;
    height: 54px;
    overflow: visible;
    transition: width .24s ease, height .24s ease;
}

.brand-mark img {
    width: 234px;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
    transition: width .24s ease, max-height .24s ease;
}

.site-header.is-scrolled .brand-mark {
    width: 214px;
    height: 46px;
}

.site-header.is-scrolled .brand-mark img {
    width: 208px;
    max-height: 46px;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

.main-nav a {
    gap: 5px;
    color: #232935;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--blue);
    outline: none;
}

.main-nav svg {
    width: 14px;
    height: 14px;
    color: #64708a;
}

.header-actions {
    gap: 12px;
}

.cart-action,
.login-action,
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 700;
}

.cart-action {
    width: 54px;
    height: 54px;
    border: 1px solid #cfe0ff;
    background: #f2f7ff;
    color: var(--blue);
}

.login-action {
    gap: 8px;
    min-height: 54px;
    padding: 0 22px;
    background: var(--blue);
    color: var(--white);
    font-size: 18px;
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-weight: 700 !important;
    letter-spacing: 0;
    transition: min-height .24s ease, padding .24s ease;
}

.site-header.is-scrolled .cart-action {
    width: 48px;
    height: 48px;
}

.site-header.is-scrolled .login-action {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 17px;
}

.header-actions svg {
    width: 22px;
    height: 22px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid #cfe0ff;
    background: #f2f7ff;
    color: var(--blue);
}

.nav-toggle svg {
    width: 23px;
    height: 23px;
}

.nav-toggle .icon-close {
    display: none;
}

.hero {
    position: relative;
    min-height: 624px;
    overflow: hidden;
    background: var(--navy);
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(7, 12, 28, .96) 0%, rgba(7, 18, 44, .72) 38%, rgba(7, 18, 44, .18) 62%, rgba(7, 18, 44, 0) 100%),
        url("../img/hero-turbyte-ai.png");
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 130px;
    background:
        radial-gradient(ellipse at 35% 100%, rgba(29, 100, 242, .45), transparent 45%),
        linear-gradient(180deg, transparent, rgba(1, 8, 25, .65));
    content: "";
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    min-height: 624px;
}

.hero-copy-panel {
    display: grid;
    align-content: center;
    width: min(840px, 58%);
    min-height: 624px;
    padding-bottom: 52px;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    color: var(--white);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 3.45vw, 64px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

h1 span {
    color: var(--cyan);
    font-weight: 700;
}

.hero-copy-panel p {
    max-width: 700px;
    margin: 24px 0 28px;
    color: rgba(255, 255, 255, .92);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: 500;
    line-height: 1.35;
}

.hero-metric-pills {
    flex-wrap: wrap;
    gap: 18px;
}

.hero-metric-pills span {
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 999px;
    background: rgba(4, 13, 32, .58);
    color: var(--white);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
}

.hero-metric-pills svg {
    width: 25px;
    height: 25px;
    color: var(--cyan);
}

.hero-floating {
    position: absolute;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: 78px;
    border: 2px solid rgba(73, 153, 255, .65);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 100, 242, .92), rgba(25, 197, 255, .78));
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: 0 22px 54px rgba(0, 42, 132, .34);
}

.hero-floating strong {
    display: block;
    font-size: 24px;
}

.hero-floating-domain {
    right: 24%;
    top: 45%;
    width: 360px;
    padding: 0 28px;
    text-transform: uppercase;
}

.hero-floating-ssl {
    right: 7.5%;
    top: 20%;
    width: 190px;
    padding: 0 24px;
    text-align: right;
}

.domain-card-section {
    position: relative;
    z-index: 3;
    margin-top: -38px;
}

.domain-card {
    padding: 22px;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 18px 60px rgba(9, 30, 66, .18);
}

.domain-search {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 148px;
    gap: 14px;
    width: 100%;
    min-height: 58px;
    padding: 0 12px 0 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
}

.domain-icon {
    display: grid;
    place-items: center;
    color: var(--blue);
}

.domain-icon svg {
    width: 24px;
    height: 24px;
}

.domain-search input {
    min-width: 0;
    height: 58px;
    border: 0;
    background: transparent;
    color: var(--ink);
    outline: none;
    font-size: 19px;
    font-weight: 500;
}

.domain-search button,
.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
}

.domain-result {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--navy-2);
    font-size: 14px;
    font-weight: 600;
}

.domain-search:focus-within,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(29, 100, 242, .62);
    box-shadow: 0 0 0 4px rgba(29, 100, 242, .1);
}

.trust-strip {
    position: relative;
    z-index: 2;
    padding-top: 36px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--line);
    box-shadow: 0 18px 50px rgba(13, 37, 66, .1);
}

.stat-item {
    min-height: 104px;
    padding: 22px;
    background: var(--white);
}

.stat-item strong {
    display: block;
    color: var(--ink);
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1;
}

.stat-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 600;
}

.section {
    padding: 92px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head.compact {
    display: block;
    max-width: 720px;
    margin-bottom: 30px;
}

.section-head h2,
.platform-copy h2,
.hardware-layout h2,
.support-layout h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(32px, 4.8vw, 58px);
    line-height: 1;
    letter-spacing: 0;
}

.billing-toggle {
    display: inline-grid;
    grid-template-columns: 1fr 1fr;
    min-width: 194px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.billing-toggle button {
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
}

.billing-toggle button.active {
    background: var(--blue);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.price-card,
.feature-card,
.contact-form,
.faq-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
}

.price-card {
    display: flex;
    min-height: 560px;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(13, 37, 66, .08);
}

.price-card.featured {
    border-color: rgba(29, 100, 242, .4);
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 24px 64px rgba(29, 100, 242, .18);
}

.card-top span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 6px;
    background: #eaf2ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.card-top h3 {
    margin: 18px 0 10px;
    font-size: 26px;
    line-height: 1.05;
}

.card-top p,
.feature-card p,
.platform-copy>p,
.hardware-layout p,
.support-layout p,
.faq-answer p {
    color: var(--muted);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 22px 0;
}

.price span {
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
}

.price strong {
    font-size: 56px;
    line-height: 1;
}

.price em {
    color: var(--muted);
    font-style: normal;
    font-weight: 600;
}

.price-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #26384e;
    font-weight: 500;
}

.price-card li svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--mint);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    min-width: 148px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

.btn svg,
.contact-form button svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 18px 38px rgba(29, 100, 242, .28);
}

.btn-soft {
    background: #eaf2ff;
    color: var(--blue);
}

.price-card .btn {
    width: 100%;
    margin-top: auto;
}

.feature-band {
    background: var(--navy);
    color: var(--white);
}

.feature-band .eyebrow {
    color: var(--cyan);
}

.feature-band h2 {
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    min-height: 260px;
    padding: 24px;
    border-color: rgba(255, 255, 255, .12);
    background: #0e2552;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 34px;
    border-radius: 8px;
    background: rgba(25, 197, 255, .12);
    color: var(--cyan);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 22px;
}

.feature-card p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.platform-section,
.hardware-section {
    background: var(--white);
}

.platform-layout {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 44px;
}

.platform-copy>p {
    max-width: 570px;
    font-size: 18px;
}

.platform-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.platform-list div {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 16px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
}

.platform-list span {
    grid-row: span 2;
    color: var(--blue);
    font-weight: 700;
}

.platform-list strong {
    font-size: 18px;
}

.platform-list p {
    margin: 0;
    color: var(--muted);
}

.panel-preview {
    overflow: hidden;
    border: 1px solid #cddbeb;
    border-radius: 10px;
    background: #eff5fb;
    box-shadow: var(--shadow);
}

.panel-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid #d6e2ef;
    background: #ffffff;
}

.panel-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccd8e5;
}

.panel-bar span:first-child {
    background: var(--blue);
}

.panel-bar span:nth-child(2) {
    background: var(--mint);
}

.panel-bar span:nth-child(3) {
    background: var(--cyan);
}

.panel-bar strong {
    margin-left: auto;
    color: var(--navy);
    font-size: 14px;
}

.panel-body {
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 430px;
}

.panel-body aside {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 22px 18px;
    border-right: 1px solid #d6e2ef;
    background: #102b45;
}

.panel-body aside span {
    height: 34px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .14);
}

.panel-body aside .active {
    background: var(--blue);
}

.panel-main {
    display: grid;
    grid-template-rows: 1fr auto auto;
    gap: 16px;
    padding: 22px;
}

.chart-card,
.panel-metrics>div,
.backup-row {
    border: 1px solid #d6e2ef;
    border-radius: 8px;
    background: var(--white);
}

.chart-card {
    position: relative;
    min-height: 190px;
    padding: 18px;
    overflow: hidden;
}

.chart-card span {
    color: var(--muted);
    font-weight: 600;
}

.chart-line {
    position: absolute;
    inset: auto 20px 28px;
    height: 110px;
    background:
        linear-gradient(180deg, rgba(29, 100, 242, .2), rgba(29, 100, 242, 0)),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 520 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 112 C56 58 90 88 128 66 S204 20 252 58 330 118 382 72 460 30 518 16' fill='none' stroke='%231d64f2' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.panel-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.panel-metrics>div {
    padding: 16px;
}

.panel-metrics strong {
    display: block;
    font-size: 24px;
}

.panel-metrics span,
.backup-row span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.backup-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
}

.backup-row strong {
    color: var(--navy);
}

.backup-row button {
    min-height: 38px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    background: #eaf2ff;
    color: var(--blue);
    font-weight: 700;
}

.hardware-section {
    padding-top: 0;
}

.hardware-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 28px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f5f9fd;
}

.hardware-layout img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.support-section {
    background: #ecf5fb;
}

.support-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: start;
    gap: 42px;
}

.support-layout>div {
    position: sticky;
    top: 240px;
}

.support-layout p {
    max-width: 560px;
    color: var(--muted);
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    box-shadow: 0 12px 44px rgba(13, 37, 66, .1);
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--navy);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfdff;
    color: var(--ink);
    outline: none;
}

.contact-form input {
    height: 50px;
    padding: 0 14px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 122px;
    padding: 13px 14px;
}

.contact-form button {
    gap: 8px;
    width: 100%;
    min-height: 52px;
}

.faq-section {
    background: var(--paper);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    display: grid;
    grid-template-columns: 1fr 28px;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 72px;
    border: 0;
    background: transparent;
    padding: 18px 22px;
    color: var(--ink);
    text-align: left;
    font-weight: 700;
}

.faq-item i {
    position: relative;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.faq-item i::before,
.faq-item i::after {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 12px;
    height: 2px;
    background: var(--blue);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-item i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity .2s ease;
}

.faq-item.open i::after {
    opacity: 0;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .24s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0 22px;
}

.faq-item.open .faq-answer p {
    padding-bottom: 22px;
}

.site-footer {
    padding: 28px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.footer-layout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
}

.footer-brand {
    display: grid;
    width: 170px;
    height: 42px;
    overflow: hidden;
}

.footer-brand img {
    width: 170px;
    max-height: 42px;
    object-fit: contain;
}

.footer-layout div {
    display: grid;
}

.footer-layout strong {
    color: var(--ink);
}

.footer-layout span,
.footer-layout a {
    color: var(--muted);
    font-weight: 500;
}

@media (max-width: 1280px) {
    body {
        padding-top: 212px;
    }

    .main-header-inner {
        grid-template-columns: 240px minmax(0, 1fr) auto;
        gap: 18px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .hero-copy-panel {
        width: min(760px, 60%);
    }

    .hero-floating-domain {
        right: 10%;
        top: 48%;
        width: 330px;
    }
}

@media (max-width: 1080px) {
    body {
        padding-top: 144px;
    }

    .promo-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .promo-action,
    .utility-bar,
    .header-actions {
        display: none;
    }

    .main-header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 78px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        display: none;
    }

    .site-header.menu-active .main-nav {
        position: fixed;
        top: 144px;
        left: 16px;
        right: 16px;
        display: grid;
        gap: 4px;
        padding: 14px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 10px;
        background: rgba(7, 17, 31, .98);
        box-shadow: 0 30px 60px rgba(4, 11, 20, .28);
    }

    .site-header.is-scrolled.menu-active .main-nav {
        top: 84px;
    }

    .site-header.menu-active .main-nav a {
        min-height: 48px;
        justify-content: space-between;
        color: var(--white);
    }

    .site-header.menu-active .main-nav svg {
        color: rgba(255, 255, 255, .7);
    }

    .site-header.menu-active .nav-toggle .icon-open {
        display: none;
    }

    .site-header.menu-active .nav-toggle .icon-close {
        display: block;
    }

    .hero-copy-panel {
        width: min(650px, 64%);
    }

    .hero-floating {
        display: none;
    }

    .pricing-grid,
    .platform-layout,
    .support-layout,
    .hardware-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-layout>div {
        position: static;
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 126px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .promo-bar {
        min-height: 58px;
    }

    .promo-inner {
        display: flex;
        justify-content: center;
        min-height: 58px;
    }

    .promo-copy {
        font-size: 14px;
        text-align: center;
    }

    .promo-copy svg,
    .promo-countdown {
        display: none;
    }

    .main-header-inner {
        min-height: 68px;
    }

    .brand-mark {
        width: 166px;
        height: 42px;
    }

    .brand-mark img {
        width: 160px;
        max-height: 42px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .site-header.menu-active .main-nav {
        top: 126px;
        left: 10px;
        right: 10px;
    }

    .site-header.is-scrolled.menu-active .main-nav {
        top: 78px;
    }

    .hero,
    .hero-content {
        min-height: 620px;
    }

    .hero-media {
        background-image:
            linear-gradient(180deg, rgba(5, 12, 29, .92) 0%, rgba(5, 12, 29, .82) 42%, rgba(5, 12, 29, .58) 100%),
            url("../img/hero-turbyte-ai.png");
        background-position: 66% center;
    }

    .hero-copy-panel {
        width: 100%;
        min-height: 620px;
        justify-content: start;
        padding-top: 64px;
        padding-bottom: 96px;
    }

    h1 {
        max-width: 11ch;
        font-size: clamp(36px, 12.2vw, 52px);
        line-height: 1.04;
    }

    .hero-copy-panel p {
        max-width: 360px;
        font-size: 18px;
    }

    .hero-metric-pills {
        gap: 10px;
    }

    .hero-metric-pills span {
        min-height: 44px;
        padding: 0 14px;
        font-size: 14px;
    }

    .domain-card-section {
        margin-top: -58px;
    }

    .domain-card {
        padding: 12px;
    }

    .domain-search {
        grid-template-columns: 28px 1fr;
        gap: 8px;
        padding: 10px;
    }

    .domain-search input {
        height: 48px;
        font-size: 15px;
    }

    .domain-search button {
        grid-column: 1 / -1;
        min-height: 48px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        min-height: 92px;
        padding: 18px;
    }

    .section {
        padding: 66px 0;
    }

    .section-head {
        display: block;
    }

    .billing-toggle {
        width: 100%;
        margin-top: 20px;
    }

    .pricing-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        min-height: auto;
        padding: 20px;
    }

    .feature-card {
        min-height: 210px;
    }

    .panel-body {
        grid-template-columns: 56px 1fr;
        min-height: 390px;
    }

    .panel-body aside {
        padding: 18px 12px;
    }

    .panel-main {
        padding: 16px;
    }

    .panel-metrics {
        grid-template-columns: 1fr;
    }

    .backup-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hardware-layout {
        padding: 24px;
    }

    .hardware-layout img {
        max-height: 92px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        align-items: start;
    }
}

@media (max-width: 430px) {
    .container {
        width: calc(100% - 22px);
    }

    .brand-mark {
        width: 150px;
    }

    .brand-mark img {
        width: 144px;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }

    .section-head h2,
    .platform-copy h2,
    .hardware-layout h2,
    .support-layout h2 {
        font-size: 32px;
    }
}

/* Compact visual scale */
body {
    padding-top: 159px;
    font-size: 12px;
}

.promo-bar,
.promo-inner {
    min-height: 50px;
    max-height: 50px;
}

.promo-inner {
    gap: 21px;
}

.promo-copy {
    gap: 11px;
    font-size: 14px;
}

.promo-copy svg {
    width: 21px;
    height: 21px;
}

.promo-countdown {
    gap: 17px;
    font-size: 15px;
}

.promo-action {
    min-height: 33px;
    padding: 0 17px;
    border-radius: 6px;
    font-size: 12px;
}

.utility-bar,
.utility-inner {
    min-height: 39px;
}

.utility-bar {
    max-height: 39px;
}

.utility-inner {
    gap: 17px;
}

.utility-left,
.utility-right {
    gap: 14px;
}

.utility-left a,
.utility-right a {
    gap: 6px;
    min-height: 26px;
    font-size: 12px;
}

.utility-right a+a,
.utility-left a+a {
    padding-left: 14px;
}

.utility-bar svg {
    width: 15px;
    height: 15px;
}

.main-header-inner {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 21px;
    min-height: 70px;
}

.site-header.is-scrolled .main-header-inner {
    min-height: 57px;
}

.brand-mark {
    width: 180px;
    height: 41px;
}

.brand-mark img {
    width: 176px;
    max-height: 41px;
}

.site-header.is-scrolled .brand-mark {
    width: 160px;
    height: 35px;
}

.site-header.is-scrolled .brand-mark img {
    width: 156px;
    max-height: 35px;
}

.main-nav {
    gap: 17px;
}

.main-nav a {
    gap: 4px;
    font-size: 12px;
}

.main-nav svg {
    width: 11px;
    height: 11px;
}

.header-actions {
    gap: 9px;
}

.cart-action {
    width: 41px;
    height: 41px;
}

.login-action {
    gap: 6px;
    min-height: 41px;
    padding: 0 17px;
    font-size: 14px;
}

.site-header.is-scrolled .cart-action {
    width: 36px;
    height: 36px;
}

.site-header.is-scrolled .login-action {
    min-height: 36px;
    padding-inline: 14px;
    font-size: 13px;
}

.header-actions svg {
    width: 17px;
    height: 17px;
}

.nav-toggle {
    width: 36px;
    height: 36px;
}

.nav-toggle svg {
    width: 17px;
    height: 17px;
}

.hero,
.hero-content {
    min-height: 468px;
}

.hero::after {
    height: 98px;
}

.hero-copy-panel {
    width: min(630px, 58%);
    min-height: 468px;
    padding-bottom: 39px;
}

h1 {
    font-size: clamp(32px, 2.6vw, 48px);
}

.hero-copy-panel p {
    max-width: 525px;
    margin: 18px 0 21px;
    font-size: clamp(14px, 1.02vw, 18px);
}

.hero-metric-pills {
    gap: 14px;
}

.hero-metric-pills span {
    gap: 8px;
    min-height: 41px;
    padding: 0 17px;
    font-size: 14px;
}

.hero-metric-pills svg {
    width: 19px;
    height: 19px;
}

.hero-floating {
    min-height: 59px;
    border-radius: 11px;
    font-size: 17px;
}

.hero-floating strong {
    font-size: 18px;
}

.hero-floating-domain {
    width: 270px;
    padding: 0 21px;
}

.hero-floating-ssl {
    width: 143px;
    padding: 0 18px;
}

.domain-card-section {
    margin-top: -29px;
}

.domain-card {
    padding: 17px;
    border-radius: 11px;
}

.domain-search {
    grid-template-columns: 26px minmax(0, 1fr) 111px;
    gap: 11px;
    min-height: 44px;
    padding: 0 9px 0 14px;
    border-radius: 8px;
}

.domain-icon svg {
    width: 18px;
    height: 18px;
}

.domain-search input {
    height: 44px;
    font-size: 14px;
}

.domain-search button,
.contact-form button {
    min-height: 35px;
    border-radius: 6px;
    font-size: 12px;
}

.domain-result {
    min-height: 17px;
    margin: 9px 0 0;
    font-size: 11px;
}

.trust-strip {
    padding-top: 27px;
}

.stat-grid {
    border-radius: 8px;
}

.stat-item {
    min-height: 78px;
    padding: 17px;
}

.stat-item strong {
    font-size: clamp(20px, 3vw, 30px);
}

.stat-item span {
    margin-top: 6px;
}

.section {
    padding: 69px 0;
}

.eyebrow {
    margin: 0 0 9px;
    font-size: 10px;
}

.section-head {
    gap: 21px;
    margin-bottom: 26px;
}

.section-head.compact {
    max-width: 540px;
    margin-bottom: 23px;
}

.section-head h2,
.platform-copy h2,
.hardware-layout h2,
.support-layout h2 {
    max-width: 570px;
    font-size: clamp(24px, 3.6vw, 44px);
}

.billing-toggle {
    min-width: 146px;
    padding: 3px;
    border-radius: 6px;
}

.billing-toggle button {
    min-height: 30px;
    border-radius: 5px;
    font-size: 12px;
}

.pricing-grid {
    gap: 14px;
}

.price-card,
.feature-card,
.contact-form,
.faq-item {
    border-radius: 8px;
}

.price-card {
    min-height: 420px;
    padding: 18px;
}

.card-top span {
    min-height: 21px;
    padding: 0 7px;
    border-radius: 5px;
    font-size: 9px;
}

.card-top h3 {
    margin: 14px 0 8px;
    font-size: 20px;
}

.price {
    gap: 4px;
    margin: 17px 0;
}

.price span {
    font-size: 17px;
}

.price strong {
    font-size: 42px;
}

.price-card ul {
    gap: 9px;
    margin: 0 0 21px;
}

.price-card li {
    gap: 8px;
}

.price-card li svg {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
    margin-top: 2px;
}

.btn {
    gap: 6px;
    min-height: 36px;
    min-width: 111px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 12px;
}

.btn svg,
.contact-form button svg {
    width: 14px;
    height: 14px;
}

.feature-grid {
    gap: 12px;
}

.feature-card {
    min-height: 195px;
    padding: 18px;
}

.feature-icon {
    width: 39px;
    height: 39px;
    margin-bottom: 26px;
    border-radius: 6px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 17px;
}

.platform-layout {
    gap: 33px;
}

.platform-copy>p,
.support-layout p {
    font-size: 14px;
}

.platform-list {
    gap: 9px;
    margin-top: 21px;
}

.platform-list div {
    grid-template-columns: 36px 1fr;
    gap: 3px 12px;
    padding: 12px 0;
}

.platform-list strong {
    font-size: 14px;
}

.panel-preview {
    border-radius: 8px;
}

.panel-bar {
    gap: 5px;
    height: 39px;
    padding: 0 14px;
}

.panel-bar span {
    width: 8px;
    height: 8px;
}

.panel-bar strong {
    font-size: 11px;
}

.panel-body {
    grid-template-columns: 65px 1fr;
    min-height: 323px;
}

.panel-body aside {
    gap: 11px;
    padding: 17px 14px;
}

.panel-body aside span {
    height: 26px;
}

.panel-main {
    gap: 12px;
    padding: 17px;
}

.chart-card {
    min-height: 143px;
    padding: 14px;
    border-radius: 6px;
}

.chart-line {
    inset: auto 15px 21px;
    height: 83px;
}

.panel-metrics {
    gap: 9px;
}

.panel-metrics>div {
    padding: 12px;
}

.panel-metrics strong {
    font-size: 18px;
}

.panel-metrics span,
.backup-row span {
    font-size: 10px;
}

.backup-row {
    gap: 11px;
    padding: 11px 12px;
}

.backup-row button {
    min-height: 29px;
    padding: 0 9px;
    border-radius: 6px;
    font-size: 12px;
}

.hardware-layout {
    gap: 21px;
    padding: 29px;
    border-radius: 8px;
}

.hardware-layout img {
    max-height: 90px;
}

.support-layout {
    gap: 32px;
}

.support-layout>div {
    top: 180px;
}

.support-layout p {
    max-width: 420px;
}

.contact-form {
    gap: 12px;
    padding: 18px;
}

.contact-form label {
    gap: 6px;
}

.contact-form input {
    height: 38px;
    padding: 0 11px;
}

.contact-form textarea {
    min-height: 92px;
    padding: 10px 11px;
}

.contact-form button {
    gap: 6px;
    min-height: 39px;
}

.faq-list {
    gap: 9px;
}

.faq-item button {
    grid-template-columns: 1fr 21px;
    gap: 14px;
    min-height: 54px;
    padding: 14px 17px;
}

.faq-item i {
    width: 21px;
    height: 21px;
    border-radius: 5px;
}

.faq-item i::before,
.faq-item i::after {
    width: 9px;
}

.faq-answer p {
    padding: 0 17px;
}

.faq-item.open .faq-answer p {
    padding-bottom: 17px;
}

.site-footer {
    padding: 21px 0;
}

.footer-layout {
    gap: 14px;
}

.footer-brand {
    width: 128px;
    height: 32px;
}

.footer-brand img {
    width: 128px;
    max-height: 32px;
}

@media (max-width: 1280px) {
    body {
        padding-top: 159px;
    }

    .main-header-inner {
        grid-template-columns: 180px minmax(0, 1fr) auto;
        gap: 14px;
    }

    .main-nav {
        gap: 11px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero-copy-panel {
        width: min(570px, 60%);
    }

    .hero-floating-domain {
        width: 248px;
    }
}

@media (max-width: 1080px) {
    body {
        padding-top: 108px;
    }

    .main-header-inner {
        min-height: 58px;
    }

    .site-header.menu-active .main-nav {
        top: 108px;
        left: 12px;
        right: 12px;
        gap: 3px;
        padding: 11px;
        border-radius: 8px;
    }

    .site-header.is-scrolled.menu-active .main-nav {
        top: 63px;
    }

    .site-header.menu-active .main-nav a {
        min-height: 36px;
        font-size: 12px;
    }

    .hero-copy-panel {
        width: min(488px, 64%);
    }
}

@media (max-width: 760px) {
    body {
        padding-top: 95px;
        font-size: 12px;
    }

    .promo-bar,
    .promo-inner {
        min-height: 44px;
        max-height: 44px;
    }

    .promo-copy {
        font-size: 11px;
    }

    .main-header-inner {
        min-height: 51px;
    }

    .brand-mark {
        width: 125px;
        height: 32px;
    }

    .brand-mark img {
        width: 120px;
        max-height: 32px;
    }

    .site-header.is-scrolled .brand-mark {
        width: 125px;
        height: 32px;
    }

    .site-header.is-scrolled .brand-mark img {
        width: 120px;
        max-height: 32px;
    }

    .nav-toggle {
        width: 33px;
        height: 33px;
    }

    .site-header.menu-active .main-nav {
        top: 95px;
        left: 10px;
        right: 10px;
    }

    .site-header.is-scrolled.menu-active .main-nav {
        top: 59px;
    }

    .hero,
    .hero-content {
        min-height: 465px;
    }

    .hero-copy-panel {
        min-height: 465px;
        padding-top: 48px;
        padding-bottom: 72px;
    }

    h1 {
        font-size: clamp(27px, 9.15vw, 39px);
        max-width: min(100%, 13.5ch);
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-copy-panel p {
        max-width: 270px;
        font-size: 14px;
    }

    .hero-metric-pills {
        gap: 8px;
    }

    .hero-metric-pills span {
        min-height: 33px;
        padding: 0 11px;
        font-size: 11px;
    }

    .domain-card-section {
        margin-top: -44px;
    }

    .domain-card {
        padding: 9px;
    }

    .domain-search {
        grid-template-columns: 21px 1fr;
        gap: 6px;
        padding: 8px;
    }

    .domain-search input {
        height: 36px;
        font-size: 12px;
    }

    .domain-search button {
        min-height: 36px;
    }

    .stat-item {
        min-height: 69px;
        padding: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .billing-toggle {
        margin-top: 15px;
    }

    .price-card {
        min-height: auto;
        padding: 15px;
    }

    .feature-card {
        min-height: 158px;
    }

    .panel-body {
        min-height: 293px;
    }

    .panel-body aside {
        padding: 14px 9px;
    }

    .panel-main {
        padding: 12px;
    }

    .hardware-layout {
        padding: 18px;
    }

    .hardware-layout img {
        max-height: 69px;
    }

    .contact-form {
        padding: 15px;
    }
}

@media (max-width: 430px) {
    .brand-mark {
        width: 113px;
    }

    .brand-mark img {
        width: 108px;
    }

    .section-head h2,
    .platform-copy h2,
    .hardware-layout h2,
    .support-layout h2 {
        font-size: 24px;
    }
}

/* Header text readability bump */
.promo-copy {
    font-size: 15px;
}

.promo-countdown {
    font-size: 16px;
}

.promo-action,
.utility-left a,
.utility-right a {
    font-size: 13px;
}

.main-nav a {
    font-size: 13px;
}

.login-action {
    font-size: 15px;
}

.site-header.is-scrolled .login-action {
    font-size: 14px;
}

@media (max-width: 1280px) {
    .main-nav a {
        font-size: 12px;
    }
}

@media (max-width: 1080px) {
    .site-header.menu-active .main-nav a {
        font-size: 13px;
    }
}

@media (max-width: 760px) {
    .promo-copy {
        font-size: 12px;
    }
}

/* Keep the original logo symbol */
.main-header-inner {
    grid-template-columns: 220px minmax(0, 1fr) auto;
}

.brand-mark {
    width: 220px;
}

.brand-mark img {
    width: 206px;
}

.site-header.is-scrolled .brand-mark {
    width: 196px;
}

.site-header.is-scrolled .brand-mark img {
    width: 184px;
}

@media (max-width: 1280px) {
    .main-header-inner {
        grid-template-columns: 210px minmax(0, 1fr) auto;
    }

    .brand-mark {
        width: 210px;
    }

    .brand-mark img {
        width: 198px;
    }
}

@media (max-width: 1080px) {
    .main-header-inner {
        grid-template-columns: auto auto;
    }
}

@media (max-width: 760px) {

    .brand-mark,
    .site-header.is-scrolled .brand-mark {
        width: 154px;
    }

    .brand-mark img,
    .site-header.is-scrolled .brand-mark img {
        width: 146px;
    }
}

@media (max-width: 430px) {
    .brand-mark {
        width: 142px;
    }

    .brand-mark img {
        width: 134px;
    }
}

/* Domain campaign strip */
.domain-card-section {
    margin-top: -70px;
    padding: 0 0 54px;
    overflow: visible;
    background:
        linear-gradient(180deg, transparent 0, transparent 70px, #f3f7fc 70px, #eef4fb 100%);
}

.domain-card {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.domain-search {
    position: relative;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 150px;
    align-items: center;
    gap: 16px;
    min-height: 86px;
    padding: 10px;
    border: 1px solid rgba(205, 219, 235, .9);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 68px rgba(10, 32, 67, .16);
}

.domain-search::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    border-radius: 8px 0 0 8px;
    background: linear-gradient(180deg, var(--blue), var(--cyan));
    content: "";
}

.domain-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #eef6ff;
    color: var(--blue);
}

.domain-icon svg {
    width: 28px;
    height: 28px;
}

.domain-search input {
    height: 64px;
    color: #111827;
    font-size: 20px;
    font-weight: 600;
}

.domain-search input::placeholder {
    color: #a3a8b8;
    opacity: 1;
}

.domain-search button {
    min-height: 64px;
    border-radius: 7px;
    background: var(--blue);
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(29, 100, 242, .26);
    transition: transform .2s ease, box-shadow .2s ease;
}

.domain-search button:hover,
.domain-search button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(29, 100, 242, .32);
    outline: none;
}

.domain-result {
    min-height: 18px;
    margin: 8px 0 0;
    color: var(--navy-2);
    font-size: 12px;
}

.domain-deals {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.domain-deal {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 154px;
    padding: 24px 14px 18px;
    overflow: visible;
    border: 1px solid rgba(214, 226, 239, .92);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 45px rgba(13, 37, 66, .08);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.domain-deal::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: var(--dot);
    content: "";
}

.domain-deal:hover {
    border-color: rgba(29, 100, 242, .26);
    box-shadow: 0 24px 58px rgba(13, 37, 66, .12);
    transform: translateY(-3px);
}

.domain-deal-green {
    border: 2px solid #28ad4a;
    box-shadow: 0 22px 55px rgba(40, 173, 74, .14);
}

.domain-deal-red {
    border: 2px solid #ef1b1b;
    box-shadow: 0 22px 55px rgba(239, 27, 27, .12);
}

.domain-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 30px;
    padding: 0 16px;
    border-radius: 4px;
    background: #28ad4a;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(20, 110, 50, .18);
    transform: translateX(-50%);
}

.domain-deal-red .domain-badge {
    background: #ef1b1b;
}

.domain-name {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    color: #17191f;
    font-size: clamp(28px, 1.75vw, 34px);
    font-weight: 800;
    line-height: .95;
    letter-spacing: 0;
    white-space: nowrap;
}

.domain-name span {
    width: 9px;
    height: 9px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--dot);
}

.domain-deal-green .domain-name {
    color: #0e6eaf;
}

.domain-old {
    position: relative;
    display: inline-flex;
    margin-top: 18px;
    color: #9ca1ad;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
}

.domain-old::after {
    position: absolute;
    left: -8px;
    right: -8px;
    top: 50%;
    height: 2px;
    background: #a5a7ad;
    content: "";
    transform: rotate(6deg);
}

.domain-deal b {
    margin-top: 12px;
    color: #17191f;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.trust-strip {
    padding-top: 24px;
}

@media (max-width: 1280px) {
    .domain-deals {
        gap: 14px;
    }

    .domain-name {
        font-size: 28px;
    }

    .domain-old {
        font-size: 18px;
    }

    .domain-deal b {
        font-size: 22px;
    }
}

@media (max-width: 1080px) {
    .domain-card-section {
        padding-top: 0;
    }

    .domain-deals {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px 18px;
    }
}

@media (max-width: 760px) {
    .domain-card-section {
        margin-top: -34px;
        padding: 0 0 30px;
        background:
            linear-gradient(180deg, transparent 0, transparent 34px, #f3f7fc 34px, #eef4fb 100%);
    }

    .domain-search {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        min-height: 58px;
        padding: 10px;
        border-radius: 8px;
    }

    .domain-icon {
        width: 38px;
        height: 38px;
    }

    .domain-icon svg {
        width: 22px;
        height: 22px;
    }

    .domain-search input {
        height: 46px;
        font-size: 16px;
    }

    .domain-search button {
        grid-column: 1 / -1;
        min-height: 44px;
        font-size: 15px;
    }

    .domain-result {
        color: var(--navy-2);
    }

    .domain-deals {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
        margin-top: 22px;
    }

    .domain-deal {
        min-height: 126px;
        padding: 20px 10px 14px;
    }

    .domain-deal-green,
    .domain-deal-red {
        border-width: 2px;
    }

    .domain-badge {
        top: -15px;
        min-width: 86px;
        min-height: 27px;
        font-size: 13px;
    }

    .domain-name {
        font-size: 28px;
    }

    .domain-name span {
        width: 7px;
        height: 7px;
        margin-right: 4px;
    }

    .domain-old {
        margin-top: 12px;
        font-size: 15px;
    }

    .domain-deal b {
        margin-top: 10px;
        font-size: 18px;
    }
}

@media (max-width: 430px) {
    .domain-deals {
        grid-template-columns: 1fr 1fr;
    }
}

/* Service showcase */
.service-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 10px 0 54px;
    background:
        radial-gradient(circle at 72% 18%, rgba(29, 100, 242, .08), transparent 24%),
        linear-gradient(180deg, #eef4fb 0%, #f6f9fe 46%, #ffffff 100%);
}

.container.service-showcase {
    position: relative;
    z-index: 1;
    width: min(1166px, calc(100% - 48px));
    margin-right: auto;
    margin-left: max(calc((100% - var(--container)) / 2), calc(var(--container-gutter) / 2));
}

.service-showcase-head {
    display: grid;
    justify-items: center;
    margin-bottom: 24px;
    text-align: center;
}

.service-showcase-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(24px, 1.8vw, 34px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.service-showcase-head p {
    max-width: 740px;
    margin: 6px 0 16px;
    color: #65758f;
    font-size: clamp(13px, .85vw, 16px);
    font-weight: 400;
}

.service-showcase-head>span {
    width: 60px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    box-shadow: 0 8px 20px rgba(29, 100, 242, .22);
}

.service-showcase-layout {
    display: grid;
    grid-template-columns: 379px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.service-visual-card {
    position: relative;
    min-height: 386px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 34% 22%, rgba(25, 197, 255, .35), transparent 25%),
        linear-gradient(135deg, #081a3b 0%, #0a3a8e 100%);
    box-shadow: 0 26px 70px rgba(10, 32, 67, .18);
}

.service-visual-card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.service-visual-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 15, 34, .04), rgba(5, 15, 34, .72)),
        radial-gradient(circle at 16% 78%, rgba(25, 197, 255, .42), transparent 32%);
}

.service-visual-content {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    color: var(--white);
}

.service-visual-content img {
    width: 120px;
    height: auto;
    margin-bottom: 11px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .24));
}

.service-visual-content strong {
    display: block;
    max-width: 330px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
}

.service-visual-content p {
    max-width: 340px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    line-height: 1.6;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    position: relative;
    display: flex;
    min-height: 186px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 18px 22px;
    border: 1px solid rgba(214, 226, 239, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 22px 58px rgba(10, 32, 67, .1);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card::before {
    position: absolute;
    inset: 22px auto auto 0;
    width: 3px;
    height: 34px;
    border-radius: 0 999px 999px 0;
    background: var(--blue);
    content: "";
}

.service-card:hover {
    border-color: rgba(29, 100, 242, .24);
    box-shadow: 0 30px 72px rgba(10, 32, 67, .14);
    transform: translateY(-3px);
}

.service-card-icon {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 0 8px 0 16px;
    background: #edf5ff;
    color: var(--blue);
}

.service-card-icon svg,
.service-card a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0 0 14px;
    padding-right: 34px;
    color: #263855;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: normal;
}

.service-card>strong,
.service-card-row strong {
    display: block;
    color: #1f2f4f;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
}

.service-card>p,
.service-card-row small {
    display: block;
    margin: 4px 0 13px;
    color: #667795;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 21px;
    border: 1px solid rgba(29, 100, 242, .36);
    border-radius: 7px;
    background: transparent;
    color: var(--blue);
    font-size: 14px;
    font-weight: 500;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.service-card a:hover,
.service-card a:focus-visible {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
    outline: none;
    transform: translateY(-1px);
}

.service-card-dark {
    grid-column: span 2;
    min-height: 186px;
    background:
        radial-gradient(circle at 88% 0%, rgba(25, 197, 255, .18), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #0d1f45 100%);
    color: var(--white);
    box-shadow: 0 28px 70px rgba(7, 17, 31, .24);
}

.service-card-dark::before {
    background: var(--cyan);
}

.service-card-dark .service-card-icon {
    background: var(--blue);
    color: var(--white);
}

.service-card-dark h3,
.service-card-dark strong {
    color: var(--white);
}

.service-card-dark>p,
.service-card-dark small {
    color: rgba(225, 237, 255, .78);
}

.service-card-dark a {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.service-card-dark a:hover,
.service-card-dark a:focus-visible {
    background: #0f52dc;
}

.service-card-wide {
    grid-column: span 2;
    min-height: 186px;
}

.service-card-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.service-card-row a {
    flex: 0 0 auto;
    min-width: 120px;
}

@media (max-width: 1400px) {
    .container.service-showcase {
        width: min(1024px, calc(100% - 48px));
        margin-right: auto;
        margin-left: max(calc((100% - var(--container)) / 2), calc(var(--container-gutter) / 2));
    }

    .service-showcase-layout {
        grid-template-columns: 336px minmax(0, 1fr);
        gap: 14px;
    }

    .service-card-grid {
        gap: 14px;
    }

    .service-card {
        padding: 17px;
    }

    .service-card h3 {
        font-size: 16px;
        padding-right: 32px;
    }

    .service-card a {
        padding: 0 18px;
    }
}

@media (max-width: 1280px) {
    .container.service-showcase {
        width: min(944px, calc(100% - 40px));
        margin-right: auto;
        margin-left: max(calc((100% - var(--container)) / 2), calc(var(--container-gutter) / 2));
    }

    .service-showcase-layout {
        grid-template-columns: 304px minmax(0, 1fr);
        gap: 13px;
    }

    .service-card-grid {
        gap: 13px;
    }

    .service-card {
        min-height: 186px;
        padding: 16px;
    }

    .service-card-icon {
        width: 38px;
        height: 38px;
    }

    .service-card h3 {
        margin-bottom: 13px;
        padding-right: 30px;
        font-size: 15px;
    }

    .service-card>strong,
    .service-card-row strong {
        font-size: 22px;
    }

    .service-card>p,
    .service-card-row small {
        font-size: 12px;
    }

    .service-card a {
        min-height: 36px;
        padding: 0 16px;
        font-size: 13px;
    }
}

@media (max-width: 1120px) {
    .container.service-showcase {
        margin-inline: auto;
    }

    .service-showcase-layout {
        grid-template-columns: 1fr;
    }

    .service-visual-card {
        min-height: 288px;
    }
}

@media (max-width: 900px) {
    .service-showcase-section {
        padding: 8px 0 42px;
    }

    .service-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-dark,
    .service-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 620px) {
    .service-showcase-head {
        margin-bottom: 22px;
    }

    .service-showcase-layout {
        gap: 14px;
    }

    .service-visual-card {
        min-height: 256px;
    }

    .service-visual-content {
        right: 16px;
        bottom: 16px;
        left: 16px;
    }

    .service-visual-content img {
        width: 116px;
        margin-bottom: 10px;
    }

    .service-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card,
    .service-card-dark,
    .service-card-wide {
        grid-column: auto;
        min-height: 174px;
        padding: 18px;
    }

    .service-card-row {
        display: grid;
        align-items: stretch;
    }

    .service-card-row a,
    .service-card a {
        width: 100%;
        min-width: 0;
    }
}

/* Datacenter map */
.datacenter-section {
    position: relative;
    overflow: hidden;
    padding: 62px 0 70px;
    background:
        radial-gradient(circle at 76% 28%, rgba(29, 100, 242, .08), transparent 23%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
    color: var(--ink);
}

.datacenter-section::before {
    position: absolute;
    inset: 0;
    display: none;
    background-image:
        linear-gradient(rgba(29, 100, 242, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 100, 242, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .6), transparent 72%);
    content: "";
    pointer-events: none;
}

.datacenter-shell {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 430px;
}

.datacenter-copy {
    position: relative;
    z-index: 2;
    max-width: 540px;
    padding: 52px 0 24px;
}

.datacenter-copy .eyebrow {
    color: var(--blue);
}

.datacenter-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(32px, 3vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.datacenter-copy>p {
    margin: 18px 0 26px;
    color: #5d6b80;
    font-size: 17px;
    line-height: 1.65;
}

.datacenter-location-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 14px 18px;
    border: 1px solid rgba(47, 196, 134, .28);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(10, 32, 67, .1);
}

.datacenter-live-dot {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 0 rgba(47, 196, 134, .34), 0 0 18px rgba(47, 196, 134, .82);
    animation: liveDotPulse 1.55s infinite ease-out;
}

.datacenter-location-card strong,
.datacenter-location-card span {
    display: block;
}

.datacenter-location-card strong {
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
}

.datacenter-location-card span {
    margin-top: 2px;
    color: #66758d;
    font-size: 13px;
    font-weight: 600;
}

.datacenter-map-card {
    position: absolute;
    z-index: 1;
    top: 14px;
    right: 48px;
    width: min(1120px, 82vw);
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
}

.world-dot-map {
    width: 100%;
    height: auto;
    overflow: visible;
}

.world-dot-map .st0 {
    fill: rgba(112, 127, 149, .35);
}

.world-dot-map .st1,
.world-dot-map .banaan {
    fill: var(--mint);
    filter: drop-shadow(0 0 8px rgba(47, 196, 134, .9));
}

.world-dot-map .banaan {
    animation: mapDotPulse 1.55s infinite ease-out;
}

.istanbul-core {
    fill: var(--mint);
    filter: drop-shadow(0 0 12px rgba(47, 196, 134, .95));
}

.istanbul-line {
    fill: none;
    stroke: rgba(47, 196, 134, .86);
    stroke-width: 2;
    stroke-linecap: round;
}

.istanbul-label-bg {
    fill: #ffffff;
    stroke: rgba(47, 196, 134, .38);
    stroke-width: 1.2;
    filter: drop-shadow(0 10px 16px rgba(10, 32, 67, .13));
}

.istanbul-label-title,
.istanbul-label-sub {
    fill: var(--ink);
    font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.istanbul-label-title {
    font-size: 12px;
}

.istanbul-label-sub {
    fill: var(--mint);
    font-size: 9.5px;
}

@keyframes mapDotPulse {
    0% {
        r: 4.6;
        opacity: .9;
        filter: drop-shadow(0 0 5px rgba(47, 196, 134, .8));
    }

    50% {
        r: 7.2;
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(47, 196, 134, 1));
    }

    100% {
        r: 4.6;
        opacity: .9;
        filter: drop-shadow(0 0 5px rgba(47, 196, 134, .8));
    }
}

@keyframes liveDotPulse {
    0% {
        transform: scale(.88);
        box-shadow: 0 0 0 0 rgba(47, 196, 134, .36), 0 0 12px rgba(47, 196, 134, .75);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 9px rgba(47, 196, 134, .1), 0 0 24px rgba(47, 196, 134, 1);
    }

    100% {
        transform: scale(.88);
        box-shadow: 0 0 0 0 rgba(47, 196, 134, .36), 0 0 12px rgba(47, 196, 134, .75);
    }
}

.trust-strip {
    padding-top: 36px;
}

@media (max-width: 1080px) {
    .datacenter-section {
        padding: 50px 0 58px;
    }

    .datacenter-shell {
        min-height: auto;
    }

    .datacenter-copy {
        max-width: 720px;
        padding: 0;
    }

    .datacenter-map-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 22px;
    }
}

@media (max-width: 760px) {
    .datacenter-section {
        padding: 38px 0 46px;
    }

    .datacenter-copy h2 {
        font-size: 28px;
    }

    .datacenter-copy>p {
        font-size: 15px;
    }

    .datacenter-location-card {
        width: 100%;
        min-height: 68px;
    }

    .datacenter-map-card {
        margin-inline: -4px;
    }

    .istanbul-label-title {
        font-size: 12px;
    }

    .istanbul-label-sub {
        font-size: 9.5px;
    }
}

@media (max-width: 430px) {
    .istanbul-label-title {
        font-size: 12px;
    }

    .istanbul-label-sub {
        font-size: 9.5px;
    }
}

/* VDS campaign section */
.VDS-promo-section {
    position: relative;
    padding: 72px 0 84px;
    background:
        radial-gradient(circle at 84% 18%, rgba(29, 100, 242, .08), transparent 24%),
        linear-gradient(180deg, #f4f8fd 0%, #ffffff 58%, #f3f7fc 100%);
}

.VDS-promo-layout {
    display: grid;
    grid-template-columns: minmax(300px, .42fr) minmax(0, .58fr);
    align-items: start;
    gap: 34px;
}

.campaign-panel h2,
.VDS-panel-head h2 {
    margin: 0;
    color: var(--ink);
    letter-spacing: 0;
    font-weight: 600;
}

.campaign-panel h2 {
    max-width: 560px;
    font-size: clamp(30px, 2.6vw, 46px);
    line-height: 1.08;
}

.campaign-panel>p {
    max-width: 560px;
    margin: 18px 0 24px;
    color: #5d6b80;
    font-size: 16px;
    line-height: 1.65;
}

.campaign-list {
    display: grid;
    gap: 14px;
}

.campaign-card {
    position: relative;
    min-height: 128px;
    padding: 20px 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 226, 239, .96);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 20px 48px rgba(10, 32, 67, .09);
}

.campaign-card::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--blue);
    content: "";
}

.campaign-card::after {
    position: absolute;
    right: -34px;
    bottom: -46px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(29, 100, 242, .08);
    content: "";
}

.campaign-card span,
.campaign-card strong,
.campaign-card p {
    position: relative;
    z-index: 1;
    display: block;
}

.campaign-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.campaign-card strong {
    margin-top: 7px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.08;
}

.campaign-card p {
    margin: 10px 0 0;
    color: #61718a;
    font-size: 14px;
    line-height: 1.5;
}

.campaign-green::before {
    background: var(--mint);
}

.campaign-green::after {
    background: rgba(47, 196, 134, .1);
}

.campaign-green span {
    color: #20a66e;
}

.VDS-panel {
    min-width: 0;
}

.VDS-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.VDS-panel-head h2 {
    font-size: clamp(28px, 2.2vw, 38px);
    line-height: 1.08;
}

.VDS-panel-head>span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(29, 100, 242, .18);
    border-radius: 999px;
    background: #edf5ff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.VDS-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.VDS-offer-card {
    position: relative;
    display: grid;
    min-height: 360px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid rgba(214, 226, 239, .94);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 24px 62px rgba(10, 32, 67, .11);
}

.VDS-offer-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--blue);
    content: "";
}

.VDS-offer-card::after {
    position: absolute;
    top: 28px;
    right: -34px;
    width: 126px;
    height: 126px;
    border: 18px solid rgba(29, 100, 242, .08);
    border-radius: 50%;
    content: "";
}

.VDS-offer-card.ryzen::before {
    background: var(--cyan);
}

.VDS-offer-card.ryzen::after {
    border-color: rgba(25, 197, 255, .11);
}

.VDS-card-top,
.VDS-offer-card>p,
.VDS-price,
.VDS-offer-card ul,
.VDS-action {
    position: relative;
    z-index: 1;
}

.VDS-card-top span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef5ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.VDS-offer-card.ryzen .VDS-card-top span {
    background: #eafaff;
    color: #078ec1;
}

.VDS-card-top strong {
    display: block;
    margin-top: 14px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
}

.VDS-offer-card>p {
    margin: 14px 0 18px;
    color: #63728a;
    font-size: 14px;
    line-height: 1.55;
}

.VDS-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 2px 0 18px;
}

.VDS-price small {
    color: #7b8798;
    font-size: 12px;
    font-weight: 700;
}

.VDS-price strong {
    color: var(--ink);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0;
}

.VDS-price em {
    color: #65748b;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
}

.VDS-offer-card ul {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.VDS-offer-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #344258;
    font-size: 14px;
    font-weight: 700;
}

.VDS-offer-card li svg {
    width: 17px;
    height: 17px;
    color: var(--mint);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.VDS-action {
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.VDS-action svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1080px) {
    .VDS-promo-layout {
        grid-template-columns: 1fr;
    }

    .campaign-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .VDS-promo-section {
        padding: 42px 0 54px;
    }

    .VDS-panel-head {
        display: grid;
        align-items: start;
    }

    .VDS-panel-head>span {
        width: fit-content;
        white-space: normal;
    }

    .campaign-list,
    .VDS-card-grid {
        grid-template-columns: 1fr;
    }

    .campaign-card,
    .VDS-offer-card {
        padding: 20px;
    }

    .VDS-offer-card {
        min-height: 0;
    }
}

/* Hero person framing */
@media (min-width: 1081px) {

    .hero,
    .hero-content {
        min-height: 580px;
    }

    .hero-media {
        background-color: var(--navy);
        background-image:
            linear-gradient(90deg, rgba(6, 16, 38, .98) 0%, rgba(6, 16, 38, .86) 37%, rgba(6, 16, 38, .42) 53%, rgba(6, 16, 38, .06) 76%, rgba(6, 16, 38, 0) 100%),
            url("../img/hero-turbyte-ai.png");
        background-position: center, right top;
        background-repeat: no-repeat;
        background-size: 100% 100%, 124% auto;
    }

    .hero-copy-panel {
        min-height: 580px;
        padding-bottom: 42px;
    }

    .hero-floating-domain {
        top: 47%;
        right: 31%;
    }

    .hero-floating-ssl {
        top: 34%;
        right: 9%;
    }
}

@media (min-width: 1081px) and (max-width: 1280px) {
    .hero-floating-domain {
        top: 48%;
        right: 23%;
    }

    .hero-floating-ssl {
        top: 35%;
        right: 7%;
    }
}

/* Turbyte footer */
.site-footer {
    position: relative;
    margin-top: 72px;
    padding: 0;
    overflow: visible;
    border-top: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(29, 100, 242, .22), transparent 24%),
        radial-gradient(circle at 82% 28%, rgba(25, 197, 255, .13), transparent 30%),
        linear-gradient(115deg, #10204a 0%, #07111f 48%, #02050b 100%);
    color: #d9e5f8;
}

.site-footer::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 76px 76px;
    content: "";
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .78), transparent 78%);
}

.footer-newsletter {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(240px, 1fr) minmax(360px, .9fr);
    align-items: center;
    gap: 28px;
    min-height: 118px;
    padding: 22px 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background:
        radial-gradient(circle at 8% 20%, rgba(255, 255, 255, .35), transparent 18%),
        linear-gradient(135deg, #2894ff 0%, #1d64f2 44%, #19c5ff 100%);
    box-shadow: 0 28px 70px rgba(2, 10, 26, .28);
    transform: translateY(-50%);
}

.newsletter-badge {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .18);
    color: var(--white);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .24);
    transform: rotate(-8deg);
}

.newsletter-badge span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.newsletter-badge small {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.newsletter-copy {
    display: grid;
    gap: 4px;
}

.newsletter-copy strong {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.newsletter-copy span {
    max-width: 520px;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

.newsletter-form {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 0 8px 0 18px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.newsletter-form span,
.newsletter-form button svg,
.footer-support-box svg {
    display: inline-flex;
    flex: 0 0 auto;
}

.newsletter-form svg,
.footer-support-box svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.newsletter-form span {
    color: var(--white);
}

.newsletter-form input {
    min-width: 0;
    height: 56px;
    border: 0;
    background: transparent;
    color: var(--white);
    outline: none;
    font-size: 14px;
    font-weight: 700;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .82);
    opacity: 1;
}

.newsletter-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 8px;
    background: #071733;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-form button svg {
    width: 16px;
    height: 16px;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 54px;
    padding: 10px 0 54px;
}

.footer-contact-card {
    display: grid;
    align-content: start;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(8, 20, 45, .72);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .2);
}

.footer-brand {
    display: flex;
    align-items: center;
    width: 188px;
    height: 48px;
    overflow: visible;
}

.footer-brand img {
    width: 188px;
    max-height: 48px;
    object-fit: contain;
}

.footer-contact-card>p {
    margin: 0;
    color: #9fb0cc;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.footer-support-box {
    display: grid;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-support-box>span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-support-box a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eef5ff;
    font-size: 14px;
    font-weight: 700;
}

.footer-support-box a svg {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 7px;
    border-radius: 8px;
    background: rgba(29, 100, 242, .18);
    color: var(--cyan);
}

.footer-social {
    display: flex;
    gap: 10px;
    padding-top: 8px;
}

.footer-social a {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 48px;
}

.footer-link-group {
    display: grid;
    align-content: start;
    gap: 11px;
    min-width: 0;
}

.footer-link-group h3 {
    position: relative;
    margin: 0 0 8px;
    padding-bottom: 11px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.footer-link-group h3::before,
.footer-link-group h3::after {
    position: absolute;
    inset: auto auto 0 0;
    height: 1px;
    content: "";
}

.footer-link-group h3::before {
    width: 100%;
    background: rgba(255, 255, 255, .12);
}

.footer-link-group h3::after {
    width: 34px;
    background: var(--cyan);
}

.footer-link-group a {
    color: #aab8d1;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: color .2s ease, transform .2s ease;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible,
.footer-support-box a:hover,
.footer-social a:hover {
    color: var(--white);
    outline: none;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(2, 6, 14, .52);
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 28px;
    min-height: 76px;
}

.footer-bottom span,
.footer-bottom p,
.footer-legal a {
    margin: 0;
    color: #91a0bb;
    font-size: 12px;
    font-weight: 700;
}

.footer-bottom p {
    color: #dce8ff;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
    color: var(--white);
    outline: none;
}

@media (max-width: 1180px) {
    .footer-newsletter {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .newsletter-form {
        grid-column: 1 / -1;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-contact-card {
        grid-template-columns: minmax(220px, .85fr) minmax(260px, 1fr) auto;
        align-items: center;
    }

    .footer-contact-card>p {
        max-width: 420px;
    }

    .footer-support-box {
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 820px) {
    .site-footer {
        margin-top: 34px;
        overflow: hidden;
    }

    .footer-newsletter {
        grid-template-columns: 1fr;
        transform: none;
        margin-top: 26px;
        padding: 22px;
    }

    .newsletter-badge {
        width: 64px;
        height: 64px;
    }

    .newsletter-form {
        grid-template-columns: 24px minmax(0, 1fr);
        padding: 0 14px;
    }

    .newsletter-form button {
        grid-column: 1 / -1;
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-main {
        padding-top: 34px;
    }

    .footer-contact-card {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 24px;
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 10px;
        padding: 20px 0;
    }

    .footer-legal {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {

    .footer-newsletter,
    .footer-contact-card {
        padding: 18px;
    }

    .newsletter-copy strong {
        font-size: 20px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-brand img {
        width: 164px;
    }
}

/* Original Turbyte footer direction */
.site-footer {
    margin-top: 64px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 0%, rgba(25, 197, 255, .15), transparent 25%),
        radial-gradient(circle at 88% 24%, rgba(29, 100, 242, .18), transparent 28%),
        linear-gradient(135deg, #07111f 0%, #071733 45%, #020712 100%);
}

.site-footer::before {
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .09) 1px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: .34;
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 76%, transparent 100%);
}

.footer-opsbar {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(360px, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 44px;
    padding: 18px;
    border: 1px solid rgba(117, 180, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(29, 100, 242, .16), rgba(25, 197, 255, .08)),
        rgba(6, 18, 42, .72);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
}

.opsbar-title {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.ops-live-dot,
.footer-mini-status>span {
    position: relative;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 0 8px rgba(47, 196, 134, .12), 0 0 22px rgba(47, 196, 134, .72);
    animation: liveDotPulse 1.8s ease-in-out infinite;
}

.opsbar-title strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
}

.opsbar-title small {
    display: block;
    margin-top: 2px;
    color: #91a5c7;
    font-size: 12px;
    font-weight: 700;
}

.opsbar-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.opsbar-metrics span {
    display: grid;
    gap: 2px;
    min-height: 50px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: #92a5c4;
    font-size: 11px;
    font-weight: 700;
}

.opsbar-metrics b {
    color: var(--white);
    font-size: 16px;
    line-height: 1;
}

.opsbar-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 18px 42px rgba(29, 100, 242, .26);
}

.opsbar-action svg,
.footer-contact-line svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-core {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
    gap: 68px;
    padding: 62px 0 58px;
}

.footer-identity {
    position: relative;
    display: grid;
    align-content: start;
    gap: 22px;
    min-height: 360px;
    padding: 0 42px 0 0;
}

.footer-identity::after {
    position: absolute;
    top: 2px;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .14), transparent);
    content: "";
}

.footer-brand-light {
    width: 220px;
    height: 58px;
}

.footer-brand-light img {
    width: 220px;
    max-height: 58px;
}

.footer-identity>p {
    max-width: 430px;
    margin: 0;
    color: #a6b6d1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.footer-contact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-contact-line a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .045);
    color: #e9f2ff;
    font-size: 13px;
    font-weight: 800;
}

.footer-mini-status {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 340px;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid rgba(47, 196, 134, .18);
    border-radius: 8px;
    background: rgba(47, 196, 134, .06);
}

.footer-mini-status strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.footer-mini-status small {
    display: block;
    margin-top: 2px;
    color: #94a7c6;
    font-size: 12px;
    font-weight: 700;
}

.footer-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 48px;
}

.footer-link-group {
    gap: 9px;
}

.footer-link-group h3 {
    margin-bottom: 7px;
    padding-bottom: 0;
    color: #f4f8ff;
    font-size: 13px;
    letter-spacing: 0;
}

.footer-link-group h3::before,
.footer-link-group h3::after {
    display: none;
}

.footer-link-group a {
    position: relative;
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    color: #94a6c5;
    font-size: 13px;
    font-weight: 700;
}

.footer-link-group a::before {
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--cyan);
    content: "";
    transition: width .2s ease;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible,
.footer-contact-line a:hover,
.opsbar-action:hover,
.opsbar-action:focus-visible {
    color: var(--white);
    outline: none;
}

.footer-link-group a:hover::before,
.footer-link-group a:focus-visible::before {
    width: 100%;
}

.footer-bottom {
    background: rgba(1, 5, 13, .68);
}

.footer-bottom-inner {
    min-height: 68px;
}

@media (max-width: 1180px) {
    .footer-opsbar {
        grid-template-columns: 1fr;
    }

    .opsbar-action {
        width: fit-content;
    }

    .footer-core {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-identity {
        min-height: 0;
        padding-right: 0;
    }

    .footer-identity::after {
        display: none;
    }
}

@media (max-width: 820px) {
    .site-footer {
        margin-top: 34px;
    }

    .footer-opsbar {
        margin-top: 22px;
    }

    .opsbar-metrics {
        grid-template-columns: 1fr;
    }

    .footer-core {
        padding: 38px 0 42px;
    }

    .footer-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 24px;
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 9px;
        padding: 18px 0;
    }
}

@media (max-width: 520px) {
    .footer-opsbar {
        padding: 16px;
    }

    .opsbar-action {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .footer-brand-light,
    .footer-brand-light img {
        width: 178px;
    }

    .footer-directory {
        grid-template-columns: 1fr;
    }
}

/* Footer refinement: lighter, cleaner, more Turbyte */
.site-footer {
    margin-top: 76px;
    border-top: 1px solid rgba(29, 100, 242, .18);
    background:
        linear-gradient(180deg, rgba(29, 100, 242, .1), transparent 120px),
        linear-gradient(135deg, #060b18 0%, #09152b 48%, #030712 100%);
    color: #c8d5eb;
    font-weight: 400;
}

.site-footer::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .5;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 88%);
}

.site-footer::after {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 197, 255, .8), transparent);
    content: "";
}

.footer-opsbar {
    grid-template-columns: minmax(260px, 1fr) auto auto;
    gap: 18px;
    margin-top: 34px;
    padding: 14px 16px;
    border-color: rgba(143, 178, 225, .16);
    background: rgba(255, 255, 255, .035);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.ops-live-dot,
.footer-mini-status>span {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 0 6px rgba(47, 196, 134, .1), 0 0 20px rgba(47, 196, 134, .72);
}

.opsbar-title {
    gap: 12px;
}

.opsbar-title strong {
    color: #f7fbff;
    font-size: 14px;
    font-weight: 500;
}

.opsbar-title small {
    color: #8da1c3;
    font-size: 12px;
    font-weight: 400;
}

.opsbar-metrics {
    grid-template-columns: repeat(3, auto);
    gap: 8px;
}

.opsbar-metrics span {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    min-height: 38px;
    padding: 0 13px;
    border-color: rgba(255, 255, 255, .08);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: #8798b8;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

.opsbar-metrics b {
    color: #f3f8ff;
    font-size: 13px;
    font-weight: 500;
}

.opsbar-action {
    min-height: 38px;
    padding: 0 15px;
    border: 1px solid rgba(25, 197, 255, .34);
    border-radius: 999px;
    background: rgba(25, 197, 255, .08);
    color: #e9f7ff;
    font-size: 12px;
    font-weight: 500;
    box-shadow: none;
}

.opsbar-action:hover,
.opsbar-action:focus-visible {
    background: rgba(29, 100, 242, .28);
}

.footer-core {
    grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
    gap: 46px;
    margin-top: 28px;
    margin-bottom: 42px;
    padding: 36px;
    border: 1px solid rgba(143, 178, 225, .13);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
        rgba(4, 12, 28, .42);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.footer-identity {
    gap: 18px;
    min-height: 0;
    padding: 0;
}

.footer-identity::after {
    display: none;
}

.footer-brand-light {
    width: 190px;
    height: 50px;
}

.footer-brand-light img {
    width: 190px;
    max-height: 50px;
}

.footer-identity>p {
    max-width: 390px;
    color: #a9b6cb;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.72;
}

.footer-contact-line {
    gap: 8px;
}

.footer-contact-line a {
    min-height: 38px;
    padding: 0 11px;
    border-color: rgba(255, 255, 255, .09);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: #dce8f8;
    font-size: 12px;
    font-weight: 400;
}

.footer-contact-line a:hover,
.footer-contact-line a:focus-visible {
    border-color: rgba(25, 197, 255, .28);
    background: rgba(25, 197, 255, .07);
}

.footer-mini-status {
    max-width: 310px;
    margin-top: 4px;
    padding: 13px 14px;
    border-color: rgba(47, 196, 134, .14);
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(47, 196, 134, .085), rgba(47, 196, 134, .025));
}

.footer-mini-status strong {
    color: #f5fff9;
    font-size: 13px;
    font-weight: 500;
}

.footer-mini-status small {
    color: #8da1b9;
    font-size: 11px;
    font-weight: 400;
}

.footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 40px;
}

.footer-link-group {
    gap: 8px;
}

.footer-link-group h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #f2f7ff;
    font-size: 12px;
    font-weight: 500;
}

.footer-link-group h3::before {
    display: block;
    position: static;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    content: "";
}

.footer-link-group a {
    color: #94a3bc;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
    color: #ffffff;
    transform: none;
}

.footer-link-group a::before {
    bottom: -2px;
    background: rgba(25, 197, 255, .72);
}

.footer-bottom {
    border-top-color: rgba(143, 178, 225, .1);
    background: rgba(1, 4, 11, .5);
}

.footer-bottom-inner {
    min-height: 60px;
}

.footer-bottom span,
.footer-bottom p,
.footer-legal a {
    color: #8190aa;
    font-size: 11px;
    font-weight: 400;
}

.footer-bottom p {
    color: #a7b4cc;
}

.footer-legal {
    gap: 14px;
}

@media (max-width: 1180px) {
    .footer-opsbar {
        grid-template-columns: 1fr;
    }

    .opsbar-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .opsbar-metrics span {
        justify-content: center;
    }

    .footer-core {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

@media (max-width: 820px) {
    .site-footer {
        margin-top: 42px;
    }

    .footer-opsbar {
        margin-top: 22px;
        padding: 14px;
    }

    .opsbar-metrics {
        grid-template-columns: 1fr;
    }

    .opsbar-metrics span {
        justify-content: flex-start;
        border-radius: 8px;
    }

    .footer-core {
        margin-top: 18px;
        padding: 22px;
    }

    .footer-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }
}

@media (max-width: 520px) {
    .footer-core {
        padding: 18px;
    }

    .footer-brand-light,
    .footer-brand-light img {
        width: 166px;
    }

    .footer-contact-line {
        display: grid;
    }

    .footer-contact-line a {
        width: 100%;
        justify-content: center;
    }

    .footer-directory {
        grid-template-columns: 1fr;
    }
}

/* Footer final polish: calmer brand close */
.site-footer {
    margin-top: 72px;
    background:
        linear-gradient(180deg, rgba(245, 248, 253, 0) 0, rgba(245, 248, 253, .04) 1px, transparent 1px),
        linear-gradient(135deg, #07111f 0%, #081934 58%, #040812 100%);
}

.site-footer::before {
    opacity: .24;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .032) 1px, transparent 1px);
    background-size: 92px 92px;
}

.site-footer::after {
    background: linear-gradient(90deg, transparent, rgba(29, 100, 242, .55), rgba(25, 197, 255, .35), transparent);
}

.footer-hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    padding: 56px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-hero-copy {
    display: grid;
    gap: 10px;
    max-width: 720px;
}

.footer-hero-copy>span {
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(25, 197, 255, .22);
    border-radius: 999px;
    background: rgba(25, 197, 255, .06);
    color: #8bdfff;
    font-size: 12px;
    font-weight: 400;
}

.footer-hero-copy h2 {
    margin: 0;
    max-width: 680px;
    color: #f7fbff;
    font-size: clamp(27px, 2.2vw, 42px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0;
}

.footer-hero-copy p {
    margin: 0;
    color: #a5b4cc;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.footer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-primary-link,
.footer-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.footer-primary-link {
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(29, 100, 242, .22);
}

.footer-primary-link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-secondary-link {
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
    color: #d5e1f4;
}

.footer-core {
    margin: 0;
    padding: 42px 0 46px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-identity {
    gap: 16px;
}

.footer-brand-light,
.footer-brand-light img {
    width: 178px;
    height: auto;
    max-height: 48px;
}

.footer-identity>p {
    max-width: 370px;
    color: #98a8c0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.footer-contact-line a {
    border-radius: 8px;
}

.footer-mini-status {
    align-items: center;
    max-width: 360px;
    border-color: rgba(29, 100, 242, .16);
    background: rgba(255, 255, 255, .035);
}

.footer-mini-status>span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(25, 197, 255, .18);
    border-radius: 8px;
    background: rgba(25, 197, 255, .075);
    box-shadow: none;
    animation: none;
}

.footer-mini-status>span svg {
    width: 18px;
    height: 18px;
    color: #8bdfff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-mini-status strong {
    color: #f4f8ff;
    font-weight: 500;
}

.footer-mini-status small {
    color: #98a8c0;
}

.footer-directory {
    gap: 30px 46px;
}

.footer-link-group h3 {
    color: #edf5ff;
    font-weight: 500;
}

.footer-link-group h3::before {
    width: 4px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.footer-link-group a {
    color: #9baac0;
    font-weight: 400;
}

.footer-bottom {
    background: rgba(0, 3, 10, .42);
}

@media (max-width: 1180px) {
    .footer-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .footer-hero {
        padding: 34px 0 26px;
    }

    .footer-core {
        padding: 32px 0 38px;
    }
}

@media (max-width: 520px) {

    .footer-hero-actions,
    .footer-primary-link,
    .footer-secondary-link {
        width: 100%;
    }

    .footer-hero-copy h2 {
        font-size: 26px;
    }
}

/* Footer reset and final layout */
.site-footer {
    margin-top: 64px;
    padding: 34px 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(29, 100, 242, .18);
    background:
        radial-gradient(circle at 76% 0%, rgba(29, 100, 242, .2), transparent 30%),
        linear-gradient(180deg, #071326 0%, #050914 100%);
}

.site-footer::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 86px 86px;
    opacity: .38;
    content: "";
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.site-footer::after {
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(25, 197, 255, .55), transparent);
    content: "";
}

.footer-hero,
.footer-core,
.footer-bottom-inner {
    width: min(var(--container), calc(100% - var(--container-gutter)));
    margin-inline: auto;
}

.footer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    border: 1px solid rgba(133, 178, 239, .18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(29, 100, 242, .16), rgba(25, 197, 255, .06)),
        rgba(255, 255, 255, .035);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .2);
}

.footer-hero-copy {
    display: grid;
    gap: 8px;
    max-width: 680px;
}

.footer-hero-copy>span {
    width: fit-content;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #6fdcff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-hero-copy h2 {
    max-width: 660px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 1.85vw, 34px);
    font-weight: 500;
    line-height: 1.22;
}

.footer-hero-copy p {
    margin: 0;
    color: #a9b9d4;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.footer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.footer-primary-link,
.footer-secondary-link {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.footer-primary-link {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(29, 100, 242, .24);
}

.footer-secondary-link {
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .045);
    color: #dce8f8;
}

.footer-core {
    display: grid;
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    gap: 58px;
    padding: 44px 0 46px;
}

.footer-identity {
    display: grid;
    gap: 16px;
    min-height: 0;
    padding: 24px;
    border: 1px solid rgba(133, 178, 239, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .032);
}

.footer-identity::after {
    display: none;
}

.footer-brand-light,
.footer-brand-light img {
    width: 178px;
    height: auto;
    max-height: 46px;
}

.footer-identity>p {
    max-width: none;
    margin: 0;
    color: #a2b1ca;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.footer-contact-line {
    display: grid;
    gap: 8px;
}

.footer-contact-line a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
    color: #e6eefb;
    font-size: 12px;
    font-weight: 400;
}

.footer-mini-status {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: none;
    margin: 0;
    padding: 13px;
    border: 1px solid rgba(25, 197, 255, .16);
    border-radius: 8px;
    background: rgba(25, 197, 255, .045);
}

.footer-mini-status>span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: rgba(29, 100, 242, .18);
    box-shadow: none;
    animation: none;
}

.footer-mini-status>span svg,
.footer-contact-line svg,
.footer-primary-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-mini-status strong {
    display: block;
    color: #f8fbff;
    font-size: 13px;
    font-weight: 500;
}

.footer-mini-status small {
    display: block;
    margin-top: 2px;
    color: #98a9c3;
    font-size: 11px;
    font-weight: 400;
}

.footer-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 46px;
}

.footer-link-group {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-link-group h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 6px;
    color: #f1f7ff;
    font-size: 13px;
    font-weight: 500;
}

.footer-link-group h3::before {
    display: block;
    position: static;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    background: var(--cyan);
    content: "";
}

.footer-link-group h3::after {
    display: none;
}

.footer-link-group a {
    width: fit-content;
    max-width: 100%;
    color: #9fafc9;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    transition: color .18s ease;
}

.footer-link-group a::before {
    display: none;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible,
.footer-contact-line a:hover,
.footer-secondary-link:hover,
.footer-secondary-link:focus-visible {
    color: #ffffff;
    outline: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(1, 4, 11, .62);
}

.footer-bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    min-height: 64px;
}

.footer-btk-notice {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    padding: 18px 0 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-btk-mark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    min-width: 94px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.footer-btk-mark img {
    display: block;
    width: 94px;
    max-height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(130, 176, 255, .22));
}

.footer-btk-notice p {
    max-width: 880px;
    margin: 0;
    color: #d7e4f8;
    font-size: clamp(14px, 1.05vw, 18px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
}

.footer-bottom span,
.footer-bottom p,
.footer-legal a {
    margin: 0;
    color: #8797b1;
    font-size: 12px;
    font-weight: 400;
}

.footer-bottom p {
    color: #a8b7cf;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}

@media (max-width: 1180px) {

    .footer-hero,
    .footer-core,
    .footer-bottom-inner {
        width: calc(100% - 44px);
    }

    .footer-hero {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .footer-hero-actions {
        justify-content: flex-start;
    }

    .footer-core {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 820px) {
    .site-footer {
        margin-top: 38px;
        padding-top: 22px;
    }

    .footer-hero,
    .footer-core,
    .footer-bottom-inner {
        width: calc(100% - 22px);
    }

    .footer-hero {
        padding: 22px;
    }

    .footer-core {
        padding: 26px 0 34px;
    }

    .footer-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 22px;
    }

    .footer-bottom-inner {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 8px;
        padding: 16px 0;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .footer-btk-notice {
        align-items: flex-start;
        padding-top: 4px;
    }

    .footer-btk-notice p {
        font-size: 13px;
        line-height: 1.55;
    }
}

@media (max-width: 520px) {

    .footer-primary-link,
    .footer-secondary-link {
        width: 100%;
    }

    .footer-directory {
        grid-template-columns: 1fr;
    }

    .footer-btk-notice {
        display: grid;
        gap: 12px;
    }
}

/* Brighter blue footer finish */
.site-footer {
    background:
        linear-gradient(180deg, rgba(29, 100, 242, .18) 0%, rgba(7, 19, 38, .98) 34%, #030815 100%),
        #071326;
}

.site-footer::before {
    background:
        linear-gradient(90deg, transparent 0%, rgba(25, 197, 255, .18) 50%, transparent 100%) 0 0 / 100% 1px no-repeat,
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 100% 1px, 72px 72px, 72px 72px;
    opacity: .72;
}

.site-footer::after {
    height: 140px;
    background:
        linear-gradient(90deg, transparent, rgba(29, 100, 242, .24), rgba(25, 197, 255, .18), transparent);
    filter: blur(26px);
    opacity: .8;
}

.footer-hero {
    position: relative;
    overflow: hidden;
    border-color: rgba(80, 158, 255, .34);
    background:
        linear-gradient(115deg, rgba(29, 100, 242, .3) 0%, rgba(25, 197, 255, .13) 46%, rgba(255, 255, 255, .045) 100%),
        rgba(7, 23, 51, .78);
    box-shadow:
        0 26px 74px rgba(0, 17, 49, .34),
        inset 0 1px 0 rgba(255, 255, 255, .16),
        inset 0 -1px 0 rgba(25, 197, 255, .12);
}

.footer-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 26%),
        repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, .035) 42px 43px);
    content: "";
}

.footer-hero-copy,
.footer-hero-actions {
    position: relative;
    z-index: 1;
}

.footer-hero-copy>span {
    color: #9ee8ff;
    text-shadow: 0 0 18px rgba(25, 197, 255, .38);
}

.footer-hero-copy h2 {
    text-shadow: 0 10px 32px rgba(0, 0, 0, .28);
}

.footer-primary-link {
    background: linear-gradient(135deg, #1d64f2, #17b9f2);
    box-shadow:
        0 18px 38px rgba(29, 100, 242, .36),
        0 0 0 1px rgba(255, 255, 255, .12) inset;
}

.footer-secondary-link {
    border-color: rgba(137, 192, 255, .24);
    background: rgba(7, 22, 50, .58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.footer-core {
    position: relative;
}

.footer-identity {
    border-color: rgba(80, 158, 255, .22);
    background:
        linear-gradient(180deg, rgba(29, 100, 242, .12), rgba(255, 255, 255, .026)),
        rgba(7, 19, 43, .72);
    box-shadow:
        0 20px 58px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .09);
}

.footer-contact-line a,
.footer-mini-status {
    border-color: rgba(80, 158, 255, .2);
    background: rgba(11, 34, 76, .58);
}

.footer-mini-status>span {
    background: linear-gradient(135deg, rgba(29, 100, 242, .35), rgba(25, 197, 255, .16));
    color: #a8edff;
}

.footer-link-group h3::before {
    box-shadow: 0 0 18px rgba(25, 197, 255, .62);
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
    color: #dff8ff;
    text-shadow: 0 0 14px rgba(25, 197, 255, .28);
}

.footer-bottom {
    background:
        linear-gradient(90deg, rgba(29, 100, 242, .1), transparent 28%, transparent 72%, rgba(25, 197, 255, .08)),
        rgba(1, 4, 11, .72);
}

/* Final header dropdowns */
.site-header {
    overflow: visible;
}

.main-nav {
    align-items: stretch;
    gap: 22px;
}

.main-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav .nav-link,
.main-nav .nav-link-simple {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #232935;
    font-size: 16px;
    font-weight: 500 !important;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
}

.main-nav .nav-link svg {
    width: 14px;
    height: 14px;
    color: #667795;
    transition: transform .2s ease, color .2s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus-visible,
.main-nav .nav-item.open>.nav-link,
.main-nav .nav-item:focus-within>.nav-link {
    background: transparent;
    color: var(--blue);
    outline: none;
}

.main-nav .nav-link:hover svg,
.main-nav .nav-link:focus-visible svg,
.main-nav .nav-item.open>.nav-link svg,
.main-nav .nav-item:focus-within>.nav-link svg {
    color: var(--blue);
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 45;
    width: 238px;
    padding: 8px;
    border: 1px solid rgba(205, 219, 235, .92);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 251, 255, .98));
    box-shadow: 0 26px 68px rgba(7, 23, 51, .18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-right {
    right: 0;
    left: auto;
    transform: translate(0, 10px);
}

.nav-dropdown::before {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid rgba(205, 219, 235, .92);
    border-left: 1px solid rgba(205, 219, 235, .92);
    background: #ffffff;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-right::before {
    right: 28px;
    left: auto;
    transform: rotate(45deg);
}

.main-nav .nav-item:hover>.nav-dropdown,
.main-nav .nav-item:focus-within>.nav-dropdown,
.main-nav .nav-item.open>.nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-nav .nav-item:hover>.nav-dropdown-right,
.main-nav .nav-item:focus-within>.nav-dropdown-right,
.main-nav .nav-item.open>.nav-dropdown-right {
    transform: translate(0, 0);
}

.nav-dropdown a {
    position: relative;
    display: grid;
    min-height: auto;
    padding: 10px 12px 10px 16px;
    border-radius: 7px;
    color: #1d2b46;
    font-size: 14px;
    font-weight: 400;
    white-space: normal;
}

.nav-dropdown a::before {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: var(--blue);
    opacity: 0;
    content: "";
    transition: opacity .16s ease;
}

.nav-dropdown a strong {
    color: var(--ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.15;
}

.nav-dropdown a span {
    color: #667795;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: #eef6ff;
    outline: none;
}

.nav-dropdown a:hover::before,
.nav-dropdown a:focus-visible::before {
    opacity: 1;
}

@media (max-width: 1020px) {
    .main-nav {
        align-items: stretch;
        gap: 8px;
    }

    .main-nav .nav-item {
        display: grid;
    }

    .main-nav .nav-link,
    .main-nav .nav-link-simple {
        justify-content: space-between;
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        position: static;
        width: auto;
        max-height: 0;
        margin: 0;
        padding: 0 8px;
        overflow: hidden;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: max-height .22s ease, padding .22s ease;
    }

    .nav-dropdown::before {
        display: none;
    }

    .main-nav .nav-item.open>.nav-dropdown,
    .main-nav .nav-item:focus-within>.nav-dropdown {
        max-height: 360px;
        padding: 6px 8px 8px;
        transform: none;
    }

    .nav-dropdown a {
        padding: 10px 10px 10px 14px;
        background: rgba(238, 246, 255, .62);
    }
}

/* Mega dropdown cards */
.main-nav {
    gap: 24px;
}

.main-nav .nav-link,
.main-nav .nav-link-simple {
    font-weight: 400 !important;
    letter-spacing: 0;
}

.main-nav .nav-link svg {
    stroke-width: 2;
}

.nav-dropdown,
.nav-dropdown-right {
    width: min(760px, calc(100vw - 48px));
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    border-color: rgba(211, 223, 239, .96);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow:
        0 28px 70px rgba(7, 23, 51, .16),
        0 10px 24px rgba(29, 100, 242, .08);
}

.nav-dropdown::before {
    background: rgba(255, 255, 255, .98);
}

.nav-dropdown a {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 8px;
    border: 1px solid rgba(224, 232, 244, .96);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(11, 32, 68, .035);
    color: #283958;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.nav-dropdown a::before {
    display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    border-color: rgba(29, 100, 242, .34);
    background: #f7fbff;
    box-shadow: 0 16px 34px rgba(29, 100, 242, .1);
    outline: none;
    transform: translateY(-1px);
}

.nav-dropdown a.nav-drop-featured {
    border-color: rgba(29, 100, 242, .24);
    background: linear-gradient(180deg, #f8fbff, #f2f7ff);
}

.nav-dropdown a.nav-drop-featured .nav-drop-icon {
    background: #e9f2ff;
    color: var(--blue);
}

.nav-drop-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 68px;
    border-radius: 7px;
    background: #f0f4fa;
    color: #304664;
    transition: background .18s ease, color .18s ease;
}

.nav-dropdown a:hover .nav-drop-icon,
.nav-dropdown a:focus-visible .nav-drop-icon {
    background: #e8f1ff;
    color: var(--blue);
}

.nav-drop-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-drop-text {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.nav-dropdown a .nav-drop-text strong {
    color: #263753;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.14;
}

.nav-dropdown a .nav-drop-text em {
    color: #8190ac;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
}

@media (max-width: 1180px) {
    .main-nav {
        gap: 16px;
    }

    .main-nav .nav-link,
    .main-nav .nav-link-simple {
        font-size: 15px;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        width: min(690px, calc(100vw - 32px));
    }
}

@media (max-width: 1020px) {
    .main-nav {
        gap: 8px;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        width: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 8px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .main-nav .nav-item.open>.nav-dropdown,
    .main-nav .nav-item:focus-within>.nav-dropdown {
        max-height: 780px;
        padding: 8px;
    }

    .nav-dropdown a {
        grid-template-columns: 44px minmax(0, 1fr);
        min-height: 72px;
        padding: 8px;
    }

    .nav-drop-icon {
        width: 44px;
        height: 52px;
    }

    .nav-drop-icon svg {
        width: 21px;
        height: 21px;
    }

    .nav-dropdown a .nav-drop-text strong {
        font-size: 15px;
    }

    .nav-dropdown a .nav-drop-text em {
        font-size: 12px;
    }
}

/* Align service showcase with the domain cards row */
.container.service-showcase {
    width: min(var(--container), calc(100% - var(--container-gutter)));
    margin-right: auto;
    margin-left: auto;
}

/* Stable refined dropdown menu */
.main-nav .nav-item.has-dropdown::after {
    position: absolute;
    top: 100%;
    right: -26px;
    left: -26px;
    z-index: 44;
    height: 18px;
    content: "";
}

.nav-dropdown,
.nav-dropdown-right {
    top: calc(100% + 8px);
    width: min(820px, calc(100vw - 56px));
    padding: 14px;
    gap: 10px;
    border: 1px solid rgba(214, 225, 239, .96);
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .995), rgba(249, 252, 255, .99));
    box-shadow:
        0 22px 58px rgba(7, 23, 51, .14),
        0 4px 0 rgba(29, 100, 242, .08) inset;
    transform: translate(-50%, 6px);
}

.nav-dropdown-right {
    transform: translate(0, 6px);
}

.nav-dropdown::before {
    top: -6px;
    width: 12px;
    height: 12px;
    border-color: rgba(214, 225, 239, .96);
    background: #ffffff;
}

.main-nav .nav-item:hover>.nav-dropdown,
.main-nav .nav-item:focus-within>.nav-dropdown,
.main-nav .nav-item.open>.nav-dropdown {
    transform: translate(-50%, 0);
}

.main-nav .nav-item:hover>.nav-dropdown-right,
.main-nav .nav-item:focus-within>.nav-dropdown-right,
.main-nav .nav-item.open>.nav-dropdown-right {
    transform: translate(0, 0);
}

.nav-dropdown a {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
    min-height: 74px;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    border-color: rgba(29, 100, 242, .18);
    background: #f5f9ff;
    box-shadow: none;
    transform: none;
}

.nav-dropdown a.nav-drop-featured {
    border-color: rgba(29, 100, 242, .2);
    background: #f3f8ff;
}

.nav-drop-icon,
.nav-dropdown a.nav-drop-featured .nav-drop-icon {
    width: 48px;
    height: 56px;
    border: 1px solid rgba(224, 231, 240, .95);
    border-radius: 7px;
    background: #f1f4f9;
    color: #344963;
}

.nav-dropdown a:hover .nav-drop-icon,
.nav-dropdown a:focus-visible .nav-drop-icon {
    border-color: rgba(29, 100, 242, .22);
    background: #eaf3ff;
    color: var(--blue);
}

.nav-drop-icon svg {
    width: 22px;
    height: 22px;
}

.nav-dropdown a .nav-drop-text strong {
    color: #20324f;
    font-size: 15px;
    font-weight: 500;
}

.nav-dropdown a .nav-drop-text em {
    color: #7b89a3;
    font-size: 12.5px;
    line-height: 1.22;
}

@media (max-width: 1180px) {

    .nav-dropdown,
    .nav-dropdown-right {
        width: min(720px, calc(100vw - 32px));
    }
}

@media (max-width: 1020px) {
    .main-nav .nav-item.has-dropdown::after {
        display: none;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        top: auto;
        width: auto;
        padding: 0 8px;
        box-shadow: none;
        transform: none;
    }

    .main-nav .nav-item.open>.nav-dropdown,
    .main-nav .nav-item:focus-within>.nav-dropdown,
    .main-nav .nav-item.open>.nav-dropdown-right,
    .main-nav .nav-item:focus-within>.nav-dropdown-right {
        transform: none;
    }
}

/* Clean single-state header dropdown */
.main-nav .nav-item:hover>.nav-dropdown,
.main-nav .nav-item:hover>.nav-dropdown-right {
    opacity: 0;
    pointer-events: none;
}

.main-nav .nav-item:not(.open)>.nav-dropdown,
.main-nav .nav-item:not(.open)>.nav-dropdown-right {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.main-nav .nav-item.open>.nav-dropdown,
.main-nav .nav-item.open:focus-within>.nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) !important;
}

.main-nav .nav-item.open>.nav-dropdown-right,
.main-nav .nav-item.open:focus-within>.nav-dropdown-right {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(0, 0) !important;
}

.main-nav .nav-item.open:hover>.nav-dropdown,
.main-nav .nav-item.open:hover>.nav-dropdown-right {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.main-nav .nav-item:not(.open)>.nav-dropdown,
.main-nav .nav-item:not(.open)>.nav-dropdown-right {
    display: none !important;
}

.main-nav .nav-item.open>.nav-dropdown,
.main-nav .nav-item.open>.nav-dropdown-right {
    display: grid !important;
}

.nav-dropdown,
.nav-dropdown-right {
    top: calc(100% + 7px);
    width: min(650px, calc(100vw - 56px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(210, 222, 238, .92);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(248, 251, 255, .99));
    box-shadow:
        0 24px 58px rgba(7, 23, 51, .15),
        0 0 0 1px rgba(255, 255, 255, .7) inset;
}

.nav-dropdown::before {
    top: -6px;
    width: 12px;
    height: 12px;
    border-color: rgba(210, 222, 238, .92);
    background: #fff;
}

.nav-dropdown::after {
    position: absolute;
    right: 12px;
    bottom: 0;
    left: 12px;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    content: "";
    opacity: .9;
}

.nav-dropdown a {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    min-height: 62px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    border-color: rgba(29, 100, 242, .16);
    background: #f3f8ff;
    box-shadow: none;
    transform: none;
}

.nav-dropdown a.nav-drop-featured {
    border-color: transparent;
    background: transparent;
}

.nav-dropdown a.nav-drop-featured:hover,
.nav-dropdown a.nav-drop-featured:focus-visible {
    border-color: rgba(29, 100, 242, .18);
    background: #f3f8ff;
}

.nav-drop-icon,
.nav-dropdown a.nav-drop-featured .nav-drop-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(224, 231, 240, .95);
    border-radius: 8px;
    background: #f0f4fa;
    color: #344963;
}

.nav-dropdown a:hover .nav-drop-icon,
.nav-dropdown a:focus-visible .nav-drop-icon {
    border-color: rgba(29, 100, 242, .18);
    background: #eaf3ff;
    color: var(--blue);
}

.nav-drop-icon svg {
    width: 20px;
    height: 20px;
}

.nav-dropdown a .nav-drop-text strong {
    color: #1e2f4c;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.16;
}

.nav-dropdown a .nav-drop-text em {
    color: #7a8aa6;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.22;
}

@media (max-width: 1020px) {

    .main-nav .nav-item:hover>.nav-dropdown,
    .main-nav .nav-item:hover>.nav-dropdown-right {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-dropdown,
    .nav-dropdown-right {
        width: auto;
        grid-template-columns: 1fr;
        padding: 0 8px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-dropdown::after {
        display: none;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 30px 0 90px;
    position: relative;
    z-index: 2;
    background: var(--paper);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-showcase-head .eyebrow {
    font-size: clamp(14px, 1vw, 18px);
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SANAL SUNUCU KIRALA PAGE
   ============================================================ */

/* Banner */
.vds-banner {
    background:
        radial-gradient(ellipse at 20% 0%, rgba(29,100,242,.18), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(25,197,255,.12), transparent 50%),
        linear-gradient(135deg, #061026 0%, #0b214b 50%, #071733 100%);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.vds-banner h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.vds-banner p {
    font-size: clamp(15px, 1.6vw, 19px);
    color: rgba(255,255,255,.7);
    margin: 0;
    font-weight: 400;
}

/* VDS Package Cards – ince uzun (thin-long) */
.vds-packages {
    padding: 60px 0;
    background: var(--white);
}

.vds-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vds-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.vds-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,32,67,.13);
    border-color: var(--blue);
}

.vds-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vds-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
}

.vds-card-price {
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.vds-card-desc {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.vds-specs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vds-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}

.vds-specs li::before {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--soft-blue);
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231d64f2' stroke-width='2.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5 12 4 4L19 6'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.vds-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
}

.vds-card-action:hover {
    background: var(--blue-2);
    transform: translateY(-2px);
}

.vds-card-action svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Advantages */
.vds-advantages {
    padding: 70px 0;
    background: var(--paper);
}

.vds-advantages h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--ink);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.advantage-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10,32,67,.1);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: var(--soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.advantage-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--ink);
}

.advantage-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.55;
}

/* FAQ */
.vds-faq {
    padding: 70px 0;
    background: var(--white);
}

.vds-faq h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--ink);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    overflow: hidden;
    transition: border-color .2s ease;
}

.faq-item:hover {
    border-color: rgba(29,100,242,.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--blue);
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* SEO Section */
.vds-seo {
    padding: 70px 0;
    background: var(--paper);
}

.seo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.seo-text h2 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--ink);
}

.seo-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 12px;
}

.seo-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Responsive – Sanal Sunucu */
@media (max-width: 1024px) {
    .vds-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .advantages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .vds-card-grid {
        grid-template-columns: 1fr;
    }
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .seo-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .vds-banner {
        padding: 60px 0 40px;
    }
}
