@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Variable.woff2') format('woff2');
    font-weight: 100 1000;
    font-style: normal;
    font-display: swap
}

:root {
    --white: #ffffff;
    --black: #000000;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #3451d1;
    --red-50: #fef2f2;
    --red-100-soft: #fff5f5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-700: #b91c1c;
    --orange-500: #f97316;
    --orange-brand: #ff6c2c;
    --rose-200: #fecdd3;
    --rose-800: #9f1239;
    --emerald-500: #10b981;
    --emerald-700: #047857;
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-800: #166534;
    --indigo-50: #eef2ff;
    --amber-500: #f59e0b;
    --amber-700: #b45309;
    --teal-500: #06d6a0;
    --purple-700: #7209b7;
    --gray-700: #374151;
    --primary: #4361ee;
    --primary-hover: #3a50c6;
    --primary-soft: #e0eeff;
    --primary-content: var(--white);
    --accent: #4361ee;
    --accent-hover: #3a50c6;
    --accent-soft: #EFF6FF;
    --secondary: var(--slate-900);
    --secondary-hover: #020617;
    --secondary-soft: var(--slate-50);
    --bg-surface: var(--white);
    --bg-card: var(--slate-50);
    --bg-muted: #fafcff;
    --text-main: var(--slate-900);
    --text-muted: var(--slate-500);
    --text-dim: var(--slate-400);
    --text-invert: var(--white);
    --border-light: var(--slate-200);
    --border-base: var(--slate-300);
    --border-focus: var(--primary);
    --success: #25a244;
    --error: #ef233c;
    --warning: #f8961e;
    --info: #a100f2;
    --s-4: 4px;
    --s-8: 8px;
    --s-12: 12px;
    --s-16: 16px;
    --s-24: 24px;
    --s-32: 32px;
    --s-48: 48px;
    --shadow-premium: 0 45px 120px -20px rgba(15, 23, 42, 0.08), 0 0 4px 0 rgba(15, 23, 42, 0.02);
    --radius-xl: 36px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --bg-icon-soft: rgba(67, 97, 238, 0.05);
    --bg-surface-2: rgba(67, 97, 238, 0.02);
    --bg-surface-hover: rgba(15, 23, 42, 0.03);
    --font-sans: 'DM Sans', sans-serif;
    --font-display: 'DM Sans', sans-serif;
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 2rem;
    --fs-4xl: 2.5rem;
    --fs-5xl: 3rem;
    --fs-h1: var(--fs-5xl);
    --fs-h2: var(--fs-4xl);
    --fs-h3: var(--fs-3xl);
    --fs-h4: var(--fs-2xl);
    --fs-h5: var(--fs-xl);
    --fs-h6: var(--fs-lg);
    --fw-light: 200;
    --fw-normal: 400;
    --fw-medium: 600;
    --fw-semibold: 600;
    --fw-bold: 800;
    --lh-none: 1;
    --lh-tight: 1.25;
    --lh-snug: 1.375;
    --lh-normal: 1.5;
    --lh-relaxed: 1.625;
    --lh-loose: 2;
    --ls-tight: -0.02em;
    --ls-normal: 0em;
    --ls-wide: 0.025em;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 0 50px -12px rgba(0, 0, 0, 0.12);
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

::selection {
    background-color: rgba(167, 200, 255, 0.25) !important;
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important
}

::-moz-selection {
    background-color: rgba(167, 200, 255, 0.25) !important;
    color: inherit !important;
    -webkit-text-fill-color: currentColor !important
}

body {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    line-height: var(--lh-normal);
    color: var(--text-main);
    background-color: var(--bg-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    overflow-x: clip
}

h1 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h1);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

h2 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h2);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

h3 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h3);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

h4 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h4);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

h5 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h5);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

h6 {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h6);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md)
}

p {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--text-main);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md)
}

.section-head {
    max-width: 600px;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 5
}

.section-head.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.section-title {
    font-family: var(--font-display);
    font-weight: var(--fw-bold);
    font-size: var(--fs-h2);
    color: var(--secondary);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1
}

.title-accent,
.control-accent {
    display: inline-block;
    position: relative;
    padding: 0 4px;
    vertical-align: baseline;
    background-image: linear-gradient(to right, var(--white) 50%, var(--primary) 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fillText 2s cubic-bezier(0.19, 1, 0.22, 1) infinite alternate
}

.title-accent::before,
.control-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--primary), var(--primary));
    background-repeat: no-repeat;
    background-size: 0% 100%;
    z-index: -1;
    animation: fillBg 2s cubic-bezier(0.19, 1, 0.22, 1) infinite alternate
}

.domain-text-primary {
    display: inline-block;
    position: relative;
    background: linear-gradient(120deg, var(--primary) 30%, var(--primary-hover) 50%, var(--primary) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 5s linear infinite
}

@keyframes textShine {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

@keyframes fillBg {

    0%,
    20% {
        background-size: 0% 100%
    }

    80%,
    100% {
        background-size: 100% 100%
    }
}

@keyframes fillText {

    0%,
    20% {
        background-position: 100% 0
    }

    80%,
    100% {
        background-position: 0% 0
    }
}

.section-desc {
    font-size: 15px !important;
    line-height: 1.625 !important;
    color: var(--text-muted) !important;
    margin-bottom: 0
}

small {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-normal)
}

strong {
    font-weight: var(--fw-bold)
}

b {
    font-weight: var(--fw-bold)
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast)
}

a:hover {
    color: var(--primary)
}

a:active {
    opacity: 0.7
}

.btn:active {
    transform: scale(0.98)
}

.text-muted {
    color: var(--text-muted)
}

.text-center {
    text-align: center
}

.font-display {
    font-family: var(--font-display)
}

.section-padding {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%
}

@media (max-width:768px) {
    .container {
        padding: 0 var(--space-md)
    }
}

.bg-muted {
    background-color: var(--bg-muted)
}

.promo-banner {
    position: relative;
    width: 100%;
    height: 32px;
    background: var(--primary);
    color: var(--text-invert);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 var(--space-md)
}

.promo-text strong {
    color: var(--primary-soft);
    font-weight: 700
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    font-family: monospace;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 12px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.promo-timer span {
    display: inline-block;

}

.promo-timer i,
.promo-timer svg {
    display: block;
    width: 14px;
    height: 14px;
    stroke-width: 2px;
    opacity: 0.8
}

@media (max-width:1024px) {
    .promo-banner {
        display: none !important
    }
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-surface);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    transition: background-color var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base)
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04)
}

body.mega-menu-active .navbar {
    background-color: var(--bg-surface) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}


.navbar-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 12px var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    transition: all var(--transition-base)
}

.navbar.scrolled .navbar-container {
    padding: 12px var(--space-md)
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

.brand-logo img {
    height: 32px;
    width: auto;
    object-fit: contain
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.125rem
}

.nav-menu-header {
    display: none
}

.nav-menu-content,
.nav-menu-footer {
    display: contents
}

.desktop-only {
    display: flex;
    align-items: center
}

@media (min-width:1025px) {
    .nav-menu {
        margin-left: auto;
        margin-right: var(--space-xl)
    }
}

.mobile-only {
    display: none
}

@media (max-width:1024px) {
    .mobile-only {
        display: block
    }

    .desktop-only {
        display: none
    }
}

.navbar-actions-mobile {
    display: none
}

@media (max-width:1024px) {
    .navbar-actions-mobile {
        display: flex;
        align-items: center;
        gap: 8px
    }
}

.btn-secondary-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-muted);
    color: var(--secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base)
}

.btn-secondary-icon i,
.btn-secondary-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px
}

.btn-secondary-icon:hover {
    background: var(--border-light);
    color: var(--primary)
}

.btn-secondary-icon:active {
    transform: scale(0.95)
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none
}

.nav-item {
    position: static
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--secondary);
    padding: 8px 14px;
    transition: color var(--transition-fast);
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 100%;
    background: var(--primary-soft);
    border: 1px solid rgba(67, 97, 238, 0.1);
    border-radius: var(--radius-md);
    transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.1s ease;
    z-index: -1;
    opacity: 0;
    pointer-events: none
}

.nav-link:hover {
    color: var(--primary)
}

.nav-link:hover::before {
    width: 100%;
    opacity: 1
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 1312px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 102;
    opacity: 0;
    transition: opacity 0.1s ease
}

.mega-menu-bg {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: 1312px;
    margin: 0 auto;
    width: 100%;
    height: 400px;
    box-sizing: border-box;
    background: var(--bg-surface);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-top: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    box-shadow: var(--shadow-premium);
    clip-path: inset(0 -50px -50px -50px);
    overflow: hidden;
    pointer-events: none;
    z-index: 101;
    opacity: 0;
    transition: opacity 0.2s ease
}

.mega-menu-bg.active {
    opacity: 1;
    pointer-events: auto
}

.dropdown-content.active {
    opacity: 1;
    pointer-events: auto
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(242, 242, 242, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: none;
    pointer-events: none
}

body.mega-menu-active::after {
    opacity: 1;
    visibility: visible
}

.dropdown-content-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform var(--transition-base)
}

.mega-menu-usage {
    padding: var(--s-32) var(--s-32);
    background: transparent;
    flex: 0 0 240px;
    box-sizing: border-box;
    border-right: 1px solid rgba(15, 23, 42, 0.04)
}

.mega-menu-usage-title {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: var(--s-32);
    opacity: 0.8
}

.status-feed {
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.status-item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
    position: relative
}

.status-item.online .status-pulse {
    background: var(--emerald-500);
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: statusPulse 2s infinite
}

.status-item.alert .status-pulse {
    background: var(--amber-500);
    box-shadow: 0 0 0 rgba(245, 158, 11, 0.4);
    animation: statusPulseAlert 2s infinite
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0)
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0)
    }
}

@keyframes statusPulseAlert {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0)
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0)
    }
}

.status-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2
}

.status-label {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px
}

.status-val {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400
}

.mega-menu-main {
    padding: var(--s-32) var(--s-48);
    display: flex;
    justify-content: space-between;
    flex: 1;
    box-sizing: border-box
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-width: 220px
}

.mega-menu-heading {
    font-size: 11px;
    color: var(--slate-800);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-bottom: var(--s-24);
    padding-left: var(--s-12)
}

.mega-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mega-menu-sidebar {
    background: var(--bg-surface-2);
    padding: 32px 24px;
    margin: var(--s-16);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: var(--s-24);
    justify-content: flex-start;
    border: 1px solid rgba(67, 97, 238, 0.05);
    flex: 0 0 270px;
    box-sizing: border-box
}

.mega-menu-sidebar-title {
    font-size: 18px;
    color: var(--slate-800);
    font-weight: 800;
    margin-bottom: 0
}

.mega-menu-sidebar p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-main)
}

.benefits-list li i {
    width: 14px;
    height: 14px;
    color: var(--primary);
    stroke-width: 1.5px
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface-hover);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    margin: 0;
    border: 1px solid rgba(67, 97, 238, 0.05)
}

.trust-badge i {
    width: 14px;
    height: 14px;
    color: var(--primary)
}

.trust-badge span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-main)
}

.btn-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease
}

.btn-text:hover {
    color: var(--primary-hover);
}

.link-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    opacity: 0.75
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-base);
    border-radius: var(--radius-md);
    box-shadow: rgba(0, 0, 0, 0.05) 0 2px 5px 0;
    box-sizing: border-box;
    color: var(--text-main);
    cursor: pointer;
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 8px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: middle;
    white-space: nowrap
}

.btn:hover {
    background-color: var(--bg-muted);
    border-color: var(--border-base)
}

.btn:focus {
    border-color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.05) 0 2px 5px 0;
    outline: 0
}

.btn-sm {
    padding: 6px 16px;
    font-size: 12px
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-invert);
    box-shadow: 0 2px 6px rgba(67, 97, 238, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--text-invert);
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2)
}

.btn-secondary {
    background-color: var(--bg-surface);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: rgba(0, 0, 0, 0.05) 0 2px 5px 0
}

.btn-secondary:hover {
    background-color: var(--primary-soft);
    border-color: var(--primary-hover);
    color: var(--primary-hover)
}

.btn-outline {
    background-color: var(--bg-surface);
    border-color: var(--border-light);
    color: var(--text-muted)
}

.btn-outline:hover {
    background-color: var(--bg-muted);
    border-color: var(--border-base);
    color: var(--text-main)
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-right: -12px;
    gap: 5px
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background-color: var(--secondary);
    border-radius: var(--radius-full);
    transition: transform var(--transition-base), opacity var(--transition-base)
}

.hero {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 48px var(--space-xl);
    overflow: hidden;
    background: var(--bg-surface)
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45
}

.blob-blue-accent {
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.4) 0%, rgba(67, 97, 238, 0.15) 50%, transparent 70%);
    top: -90px;
    left: -10px;
    animation: floatBlueAccent 8s ease-in-out infinite
}

.blob-pink {
    width: 450px;
    height: 270px;
    background: radial-gradient(circle, rgba(148, 41, 255, 0.18) 0%, rgba(148, 41, 255, 0.06) 50%, transparent 70%);
    top: -80px;
    right: -60px;
    animation: floatPink 9s ease-in-out infinite
}

@keyframes floatBlueAccent {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4
    }

    33% {
        transform: translate(30px, 15px) scale(1.08);
        opacity: 0.45
    }

    66% {
        transform: translate(-15px, -10px) scale(0.95);
        opacity: 0.35
    }
}

@keyframes floatPink {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4
    }

    33% {
        transform: translate(-25px, 18px) scale(1.06);
        opacity: 0.45
    }

    66% {
        transform: translate(15px, -12px) scale(0.96);
        opacity: 0.3
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left
}

.hero-content {
    flex: 1 1 50%;
    max-width: 50%;
    position: relative;
    z-index: 10
}

.hero-content>* {
    max-width: 518px
}

.hero.hero-centered .hero-container {
    justify-content: center;
    text-align: center
}

.hero.hero-centered .hero-content {
    flex: 1 1 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hero.hero-centered .hero-content>* {
    max-width: 100%
}

.hero-image {
    flex: 1 1 50%;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    aspect-ratio: 1800 / 1200;
    overflow: hidden;
    container-type: inline-size
}

.hero-discount-grid-tl {
    position: absolute;
    top: 18px;
    left: 88px;
    z-index: 1
}

.hero-discount-grid-tl::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -4px;
    width: 168px;
    height: 20px;
    background-image: linear-gradient(to right, rgba(67, 97, 238, 0.12), transparent), linear-gradient(to right, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to right, rgba(67, 97, 238, 0.95), transparent), linear-gradient(to right, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to right, rgba(67, 97, 238, 0.12), transparent);
    background-size: 30% 1px, 60% 1px, 100% 1px, 60% 1px, 30% 1px;
    background-position: 0 0, 0 4px, 0 8px, 0 12px, 0 16px;
    background-repeat: no-repeat
}

.hero-discount-grid-tl::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -12px;
    width: 20px;
    height: 68px;
    background-image: linear-gradient(to bottom, rgba(67, 97, 238, 0.12), transparent), linear-gradient(to bottom, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to bottom, rgba(67, 97, 238, 0.95), transparent), linear-gradient(to bottom, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to bottom, rgba(67, 97, 238, 0.12), transparent);
    background-size: 1px 30%, 1px 60%, 1px 100%, 1px 60%, 1px 30%;
    background-position: 0 0, 4px 0, 8px 0, 12px 0, 16px 0;
    background-repeat: no-repeat
}

.hero-discount-grid-br {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10
}

.hero-discount-grid-br::before {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -4px;
    width: 168px;
    height: 20px;
    background-image: linear-gradient(to left, rgba(67, 97, 238, 0.12), transparent), linear-gradient(to left, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to left, rgba(67, 97, 238, 0.95), transparent), linear-gradient(to left, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to left, rgba(67, 97, 238, 0.12), transparent);
    background-size: 30% 1px, 60% 1px, 100% 1px, 60% 1px, 30% 1px;
    background-position: 100% 0, 100% 4px, 100% 8px, 100% 12px, 100% 16px;
    background-repeat: no-repeat
}

.hero-discount-grid-br::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: -16px;
    width: 20px;
    height: 68px;
    background-image: linear-gradient(to top, rgba(67, 97, 238, 0.12), transparent), linear-gradient(to top, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to top, rgba(67, 97, 238, 0.95), transparent), linear-gradient(to top, rgba(67, 97, 238, 0.32), transparent), linear-gradient(to top, rgba(67, 97, 238, 0.12), transparent);
    background-size: 1px 30%, 1px 60%, 1px 100%, 1px 60%, 1px 30%;
    background-position: 0 100%, 4px 100%, 8px 100%, 12px 100%, 16px 100%;
    background-repeat: no-repeat
}

.hero-discount-box {
    position: relative;
    padding: 10px 26px;
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary)
}

.hero-image picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    position: relative;
    z-index: 2
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0;
    background: transparent;
    border: none;
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    color: var(--text-main);
    margin-bottom: var(--space-md);
    box-shadow: none
}

.hero-badge .badge-highlight {
    color: var(--primary);
    font-weight: var(--fw-bold);
    letter-spacing: -0.01em
}

.hero-badge .info-tooltip-wrap {
    position: relative;
    color: inherit;
    font-weight: var(--fw-medium);
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--text-muted);
    text-underline-offset: 4px;
    cursor: pointer;
    display: inline-block;
    transition: color 0.15s
}

.hero-badge .info-tooltip-wrap:hover {
    color: var(--text-muted);
    text-decoration-color: var(--primary)
}

.info-card {
    position: fixed;
    top: 0;
    left: 0;

    margin-left: 20px;
    background: var(--bg-surface);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    pointer-events: none
}

.info-card:not(.image-card) {
    padding: 12px 16px;
    font-size: 0.85rem;
    font-weight: var(--fw-normal);
    color: var(--text-muted);
    white-space: nowrap
}

.info-card.image-card {
    width: 280px;
    height: 280px;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    white-space: normal
}

.info-card-img {
    width: 100%;
    height: 60%;
    display: block;
    background: var(--bg-surface-elevated);
    border-radius: var(--radius-md);
    overflow: hidden
}

.info-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.info-card-body {
    height: 40%;
    padding: 12px 4px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: left;
    box-sizing: border-box
}

.info-card-title {
    font-weight: var(--fw-bold);
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.2
}

.info-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: var(--fw-normal)
}

.info-card::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -6px;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent var(--bg-surface) transparent transparent;
    z-index: 2
}

.info-card.active {
    opacity: 1;
    visibility: visible;

}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    line-height: 1.18;
    color: var(--text-main);
    margin-bottom: var(--space-sm);
    padding: 0;
    letter-spacing: -0.02em;
    opacity: 1;

    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1)
}

.text-highlight {
    position: relative;
    display: inline-block;
    color: var(--primary);
    background: var(--primary-soft);
    padding: var(--space-sm);
    white-space: nowrap;
    transition: background-color 0.15s, color 0.15s;
    cursor: default;
    z-index: 10
}

.text-highlight:hover {
    background-color: var(--secondary);
    color: var(--text-invert);
    border-radius: var(--radius-sm)
}

.highlight-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 4px;
    pointer-events: none;
    z-index: -1;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s
}

.star-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1
}

.layer-1 {
    background-image: radial-gradient(1px 1px at 15% 25%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 45% 75%, var(--bg-surface), transparent), radial-gradient(1px 1px at 85% 15%, var(--bg-surface), transparent), radial-gradient(1.1px 1.1px at 10% 40%, var(--bg-surface), transparent), radial-gradient(1px 1px at 60% 80%, var(--bg-surface), transparent), radial-gradient(1.3px 1.3px at 30% 10%, var(--bg-surface), transparent);
    background-size: 150px 100%;
    animation: starsDrift 10s linear infinite, twinkle 4s ease-in-out infinite;
    transition: animation-duration 0.5s
}

.text-highlight:hover .layer-1 {
    animation-duration: 4s, 2s
}

.layer-2 {
    background-image: radial-gradient(1px 1px at 25% 65%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 55% 15%, var(--bg-surface), transparent), radial-gradient(1.1px 1.1px at 85% 60%, var(--bg-surface), transparent), radial-gradient(1.4px 1.4px at 5% 30%, var(--bg-surface), transparent), radial-gradient(1px 1px at 40% 90%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 70% 35%, var(--bg-surface), transparent);
    background-size: 120px 100%;
    animation: starsDrift 8s linear infinite, twinkle 3s ease-in-out infinite 0.5s;
    transition: animation-duration 0.5s
}

.text-highlight:hover .layer-2 {
    animation-duration: 3s, 1.5s
}

.layer-3 {
    background-image: radial-gradient(1.3px 1.3px at 35% 45%, var(--bg-surface), transparent), radial-gradient(1px 1px at 65% 55%, var(--bg-surface), transparent), radial-gradient(1.4px 1.4px at 10% 55%, var(--bg-surface), transparent), radial-gradient(1px 1px at 80% 85%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 50% 5%, var(--bg-surface), transparent), radial-gradient(1.1px 1.1px at 20% 95%, var(--bg-surface), transparent);
    background-size: 130px 100%;
    animation: starsDrift 12s linear infinite, twinkle 5s ease-in-out infinite 0.2s;
    transition: animation-duration 0.5s
}

.text-highlight:hover .layer-3 {
    animation-duration: 5s, 2.5s
}

.layer-4 {
    background-image: radial-gradient(1px 1px at 10% 90%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 25% 10%, var(--bg-surface), transparent), radial-gradient(1.3px 1.3px at 90% 80%, var(--bg-surface), transparent), radial-gradient(1px 1px at 30% 60%, var(--bg-surface), transparent), radial-gradient(1.5px 1.5px at 60% 20%, var(--bg-surface), transparent), radial-gradient(1.1px 1.1px at 95% 50%, var(--bg-surface), transparent);
    background-size: 110px 100%;
    animation: starsDrift 7s linear infinite, twinkle 3.5s ease-in-out infinite 1s;
    transition: animation-duration 0.5s
}

.text-highlight:hover .layer-4 {
    animation-duration: 2.5s, 1.2s
}

.layer-5 {
    background-image: radial-gradient(1.1px 1.1px at 75% 30%, var(--bg-surface), transparent), radial-gradient(1px 1px at 50% 20%, var(--bg-surface), transparent), radial-gradient(1.4px 1.4px at 40% 10%, var(--bg-surface), transparent), radial-gradient(1px 1px at 10% 70%, var(--bg-surface), transparent), radial-gradient(1.2px 1.2px at 80% 90%, var(--bg-surface), transparent), radial-gradient(1.3px 1.3px at 55% 50%, var(--bg-surface), transparent);
    background-size: 140px 100%;
    animation: starsDrift 14s linear infinite, twinkle 6s ease-in-out infinite 0.8s;
    transition: animation-duration 0.5s
}

.text-highlight:hover .layer-5 {
    animation-duration: 6s, 3s
}

@keyframes twinkle {

    0%,
    15%,
    85%,
    100% {
        opacity: 0.9;
        filter: blur(0px)
    }

    40%,
    60% {
        opacity: 0;
        filter: blur(2px)
    }
}

@keyframes starsDrift {
    from {
        background-position: 0 0
    }

    to {
        background-position: 300px 0
    }
}

.speed-streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(67, 97, 238, 0.5), transparent);
    opacity: 1;
    pointer-events: none;
    z-index: -1;
    transition: opacity 0.1s
}

.highlight-effects .speed-streak {
    opacity: 1;
    animation: racingStreak linear infinite
}

.s1 {
    top: 15%;
    width: 30%;
    animation-duration: 2s !important;
    transition: animation-duration 0.5s
}

.s2 {
    top: 45%;
    width: 20%;
    animation-duration: 3s !important;
    animation-delay: 0.5s !important;
    transition: animation-duration 0.5s
}

.s3 {
    top: 75%;
    width: 40%;
    animation-duration: 2.5s !important;
    animation-delay: 0.2s !important;
    transition: animation-duration 0.5s
}

.text-highlight:hover .s1 {
    animation-duration: 1.2s !important
}

.text-highlight:hover .s2 {
    animation-duration: 1.8s !important
}

.text-highlight:hover .s3 {
    animation-duration: 1.5s !important
}

@keyframes racingStreak {
    0% {
        left: -50%;
        opacity: 0
    }

    10%,
    90% {
        opacity: 0.8
    }

    100% {
        left: 150%;
        opacity: 0
    }
}

.text-highlight:hover .shake-text {
    display: inline-block;
    animation: textShake 0.05s infinite
}

.text-highlight:hover::before,
.text-highlight:hover::after,
.text-highlight:hover .highlight-dot {
    opacity: 0
}

@keyframes textShake {

    0%,
    100% {}

    33% {}

    66% {}
}

.text-highlight::before,
.text-highlight::after {
    content: '';
    position: absolute;
    top: -4px;
    bottom: -4px;
    width: 1px;
    background: var(--primary);
    opacity: 0.3;
    transition: opacity 0.15s
}

.text-highlight::before {
    left: 0
}

.text-highlight::after {
    right: 0
}

.highlight-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: var(--radius-full);
    z-index: 2;
    transition: opacity 0.15s
}

.dot-tl {
    top: -6px;
    left: -3px
}

.dot-br {
    bottom: -6px;
    right: -3px
}

.hero-subtitle {
    font-size: var(--fs-md);
    color: var(--text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-md);
    opacity: 1;

    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.2s
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 1;

    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.3s
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-main);
    font-weight: var(--fw-medium)
}

.hero-features li i,
.hero-features li svg {
    color: var(--success);
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.hero-renewal-guarantee {
    display: flex;
    align-items: center;
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--primary);
    margin-bottom: var(--space-sm)
}

.hero-actions {
    margin: 20px 0;
    opacity: 1;

    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.35s;
    display: flex;
    gap: 16px;
    align-items: center
}

.btn-hero-cta {
    padding: 8px 20px;
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    border-radius: var(--radius-lg);
    background: var(--primary);
    color: var(--white) !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px -10px rgba(67, 97, 238, 0.25);
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease
}

.btn-hero-cta:hover::before {
    left: 100%
}

.btn-hero-cta:hover {
    background: var(--primary-hover);
    box-shadow: 0 20px 40px -10px rgba(67, 97, 238, 0.25)
}

.btn-hero-cta:active {
    background: var(--primary);
    box-shadow: 0 20px 40px -10px rgba(67, 97, 238, 0.25)
}

.btn-hero-cta i,
.btn-hero-cta svg {
    width: 0;
    height: 18px;
    opacity: 0;
    visibility: hidden;

    transition: all var(--transition-base);
    margin-left: 0
}

.btn-hero-cta:hover i,
.btn-hero-cta:hover svg {
    width: 18px;
    opacity: 1;
    visibility: visible;

    margin-left: 8px
}

.btn-hero-cta i.icon-cta-prefix,
.btn-hero-cta svg.icon-cta-prefix {
    width: 18px !important;
    height: 18px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-right: 8px !important;
    margin-left: 0 !important;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--text-muted);
    margin-bottom: var(--space-xl)
}

.hero-trust-badge i,
.hero-trust-badge svg {
    color: var(--success);
    width: 15px;
    height: 15px;
    flex-shrink: 0
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 1;

    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.4s
}

@media (max-width:1280px) {

    .mega-menu-usage,
    .mega-menu-sidebar {
        display: none !important
    }

    .mega-menu-main {
        justify-content: space-around
    }
}

@keyframes skFadeOut {

    0%,
    40% {
        opacity: 1;
        visibility: visible
    }

    55%,
    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes skFadeIn {

    0%,
    40% {
        opacity: 0;
        visibility: hidden
    }

    55%,
    90% {
        opacity: 1;
        visibility: visible
    }

    100% {
        opacity: 0;
        visibility: hidden
    }
}

@keyframes skShimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

@keyframes heroSheen {

    0%,
    40% {
        transform: translate(-30%, -30%)
    }

    55%,
    100% {
        transform: translate(30%, 30%)
    }
}

@keyframes radarRipple {
    0% {
        transform: scale(0.85);
        opacity: 0.8
    }

    100% {
        transform: scale(1.1);
        opacity: 0
    }
}

@keyframes shieldFloat {

    0%,
    100% {}

    50% {}
}

@keyframes scanRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes particlePing {
    0% {
        transform: scale(0);
        opacity: 0
    }

    20% {
        opacity: 0.8
    }

    80% {
        transform: scale(1.5) translate(var(--tx, 4px), var(--ty, -4px));
        opacity: 0.8
    }

    100% {
        opacity: 0
    }
}

@keyframes cdnStream {
    from {
        stroke-dashoffset: 16
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes cdnStreamOut {
    from {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: 16
    }
}

@keyframes barScale {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.85
    }

    50% {
        transform: scaleY(1.12);
        opacity: 1
    }
}

@keyframes iconHoverFloat {

    0%,
    100% {}

    50% {}
}

@keyframes pulseSkeleton {

    0%,
    100% {
        opacity: 0.6
    }

    50% {
        opacity: 1
    }
}

@keyframes pulseLiveDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8)
    }
}

@keyframes glowCursorDot {

    0%,
    100% {
        r: 3.5px;
        opacity: 1
    }

    50% {
        r: 2.5px;
        opacity: 0.6
    }
}

@keyframes pulseRing {
    0% {
        r: 3.5px;
        opacity: 0.7
    }

    100% {
        r: 10px;
        opacity: 0
    }
}

@keyframes drawChartLine {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes typePulse {

    0%,
    60%,
    100% {

        opacity: 0.4
    }

    30% {

        opacity: 1
    }
}

@keyframes supportMsgIn {
    0% {
        opacity: 0;

    }

    8%,
    100% {
        opacity: 1;

    }
}

@keyframes supportTypePost {

    0%,
    28% {
        opacity: 0;

    }

    33%,
    48% {
        opacity: 1;

    }

    53%,
    100% {
        opacity: 0;

    }
}

@keyframes supportMsgOut {

    0%,
    50% {
        opacity: 0;

    }

    58%,
    92% {
        opacity: 1;

    }

    97%,
    100% {
        opacity: 0
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

.provider-box {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--bg-surface)
}

.provider-box:hover,
.provider-box.selected {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary)
}

.provider-box i {
    width: 20px;
    height: 20px
}

@keyframes packetMove {
    0% {
        left: 0;
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        left: 100%;
        opacity: 0
    }
}

@keyframes scaleInCheck {
    0% {
        transform: scale(0.6);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.w-100 {
    width: 100%
}

.mt-md {
    margin-top: var(--space-md)
}

.cpanel-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease
}

.cpanel-icon-item:hover {
    background: var(--slate-100);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)
}

.cpanel-icon-item i {
    width: 32px;
    height: 32px
}

.cpanel-icon-item span {
    font-size: 13px;
    color: var(--slate-600)
}

@keyframes pingIcon {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.4))
    }

    20% {
        transform: scale(1)
    }

    100% {
        transform: scale(1)
    }
}

@keyframes pingIconOrange {
    0% {
        transform: scale(1)
    }

    10% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.4))
    }

    20% {
        transform: scale(1)
    }

    100% {
        transform: scale(1)
    }
}

.active-ping i {
    animation: pingIcon 5s infinite
}

.active-ping-delay i {
    animation: pingIconOrange 5s infinite;
    animation-delay: 2.5s
}

.main-footer {
    position: relative;
    background: var(--bg-surface);
    padding-top: 80px
}

.footer-cta {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1312px;
    padding: 0 var(--space-md);
    z-index: 10
}

.footer-cta-container {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 24px 60px -12px rgba(15, 23, 42, 0.08), 0 0 1px 1px rgba(15, 23, 42, 0.02)
}

.footer-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.06) 0%, transparent 70%);
    pointer-events: none
}

.footer-cta-content {
    flex: 1;
    position: relative;
    z-index: 1
}

.footer-cta-title {
    color: var(--secondary);
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
    font-weight: 800;
    letter-spacing: -0.02em
}

.footer-cta-desc {
    color: var(--text-muted);
    font-size: var(--fs-lg);
    max-width: 550px;
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 450;
    letter-spacing: -0.01em
}

.footer-cta-actions {
    display: flex;
    gap: var(--space-md);
    position: relative;
    z-index: 1
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base)
}

.main-footer .btn-primary {
    background: var(--primary);
    color: var(--text-invert);
    border: 1px solid transparent
}

.main-footer .btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 10px 20px -5px rgba(67, 97, 238, 0.4)
}

.main-footer .btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02)
}

.main-footer .btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--border-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)
}

.footer-main {
    background: var(--bg-card);
    padding: 76px 0;
    border-top: 1px solid var(--border-light)
}

.footer-container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 var(--space-md)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(5, 1fr);
    gap: var(--space-xl);
    margin-bottom: 80px
}

.footer-col-brand {
    padding-right: var(--space-xl)
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-lg)
}

.footer-logo img {
    height: 28px;
    width: auto
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 280px
}

.footer-socials {
    display: flex;
    gap: var(--space-sm)
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-base)
}

.social-link i,
.social-link svg {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
    fill: currentColor
}

.social-link:hover {
    background: var(--primary-soft);
    color: var(--primary);
    border-color: var(--primary)
}

.footer-heading {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: var(--fw-bold);
    color: var(--secondary);
    margin-bottom: var(--space-lg)
}

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

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast)
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.copyright {
    font-size: var(--fs-sm);
    color: var(--text-dim);
    margin-bottom: 0
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-surface);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light)
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.status-dot--green {
    background: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
    animation: statusPulse 2s infinite
}

.status-text {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--text-muted)
}

@media (max-width:1024px) {
    .footer-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 40px var(--space-xl)
    }

    .footer-cta-desc {
        max-width: 100%
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }
}

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

    .footer-col-brand {
        grid-column: span 1
    }

    .footer-cta-actions {
        flex-direction: column;
        width: 100%
    }

    .btn-lg {
        width: 100%
    }
}

html {
    position: relative;
    min-height: 100%;
    overflow-x: clip
}

html::before,
html::after {
    content: '';
    position: absolute;
    top: 100px;
    bottom: 0;
    width: 2px;
    background-image: linear-gradient(to bottom, var(--text-dim) 2px, transparent 2px);
    background-size: 100% 10px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.8
}

@media (min-width:1360px) {
    html::before {
        left: calc(50% - 680px)
    }

    html::after {
        right: calc(50% - 680px)
    }
}

@media (max-width:1359px) {
    html::before {
        left: 20px
    }

    html::after {
        right: 20px
    }
}

section {
    position: relative
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, var(--text-dim) 2px, transparent 2px);
    background-size: 10px 100%;
    pointer-events: none
}

section section {
    border-bottom: none
}

.bottom-blur-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 88px;
    pointer-events: none;
    z-index: 8999
}

.bottom-blur-overlay>.blur-filter {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.bottom-blur-overlay>.blur-filter:nth-child(1) {
    z-index: 70;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%);
    mask: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%)
}

.bottom-blur-overlay>.blur-filter:nth-child(2) {
    z-index: 60;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 50%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 50%)
}

.bottom-blur-overlay>.blur-filter:nth-child(3) {
    z-index: 50;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 60%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 60%)
}

.bottom-blur-overlay>.blur-filter:nth-child(4) {
    z-index: 40;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 70%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 0) 70%)
}

.bottom-blur-overlay>.blur-filter:nth-child(5) {
    z-index: 30;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 90%)
}

.bottom-blur-overlay>.blur-filter:nth-child(6) {
    z-index: 20;
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%)
}

.bottom-blur-overlay>.blur-filter:nth-child(7) {
    z-index: 10;
    -webkit-backdrop-filter: blur(64px);
    backdrop-filter: blur(64px);
    -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%);
    mask: linear-gradient(rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 1) 100%)
}

@keyframes drawArrowLine {
    to {
        stroke-dashoffset: 0
    }
}

@media (max-width:900px) {
    .st-brand-header {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        margin-bottom: 40px
    }

    .st-brand-logo-wrap {
        padding-right: 0
    }

    .st-brand-arrow {
        display: none
    }

    .st-brand-logo-img {
        height: 34px
    }

    .st-brand-taglines-pane {
        width: 100%;
        justify-content: center;
        align-items: flex-start
    }

    .st-tagline {
        transform-origin: center center;
        text-align: center
    }

    .st-tagline.slot-1,
    .st-tagline.slot-5 {
        font-size: 0.95rem;
        transform: scale(0.9)
    }

    .st-tagline.slot-2,
    .st-tagline.slot-4 {
        font-size: 1.15rem;
        transform: scale(0.95)
    }

    .st-tagline.active,
    .st-tagline.slot-3 {
        font-size: 1.5rem;
        transform: scale(1.05) translateX(0)
    }
}

@keyframes marqueeLeft {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

@keyframes marqueeRight {
    from {
        transform: translate3d(-50%, 0, 0)
    }

    to {
        transform: translate3d(0, 0, 0)
    }
}

.extracted-style-1 {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 var(--space-md)
}

.extracted-style-2 {
    margin-bottom: 56px
}

.extracted-style-3 {
    max-width: 560px;
    margin: 0 auto
}

.extracted-style-4 {
    margin-top: 32px
}

.extracted-style-5 {
    opacity: 0
}

.extracted-style-6 {
    margin-bottom: 48px
}

.extracted-style-7 {
    background: rgba(255, 108, 44, 0.1);
    color: var(--orange-brand);
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md)
}

.extracted-style-8 {
    margin-bottom: var(--space-sm)
}

.extracted-style-9 {
    max-width: 600px;
    margin: 0 auto
}

.extracted-style-10 {
    background: #f8f9fa
}

.extracted-style-11 {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    justify-content: flex-start;
    gap: 16px
}

.extracted-style-12 {
    font-weight: 800;
    font-size: 18px;
    color: var(--orange-brand);
    display: flex;
    align-items: center;
    gap: 8px
}

.extracted-style-13 {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px
}

.extracted-style-14 {
    background: var(--slate-100);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px
}

.extracted-style-15 {
    width: 14px;
    height: 14px
}

.extracted-style-16 {
    color: var(--text-muted);
    width: 18px
}

.extracted-style-17 {
    background: #f8f9fa;
    min-height: auto
}

.extracted-style-18 {
    width: 72px;
    background: var(--white);
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    gap: 16px
}

.extracted-style-19 {
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s
}

.extracted-style-20 {
    width: 22px
}

.extracted-style-21 {
    padding: 32px;
    background: #f8f9fa;
    flex: 1;
    height: 600px;
    overflow-y: auto
}

.extracted-style-22 {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
}

.extracted-style-23 {
    background: var(--bg-card);
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--slate-700);
    border-bottom: 1px solid var(--border-light)
}

.extracted-style-24 {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 16px
}

.extracted-style-25 {
    color: #0ea5e9
}

.extracted-style-26 {
    color: var(--amber-500)
}

.extracted-style-27 {
    color: #ec4899
}

.extracted-style-28 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.extracted-style-29 {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
}

.extracted-style-30 {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 16px
}

.extracted-style-31 {
    color: var(--emerald-500)
}

.extracted-style-32 {
    animation-delay: 2s
}

.extracted-style-33 {
    color: #8b5cf6
}

.extracted-style-34 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.extracted-style-35 {
    color: var(--red-500)
}

.extracted-style-36 {
    color: #14b8a6
}

.extracted-style-37 {
    display: none
}

.extracted-style-38 {
    margin-bottom: 24px;
    color: var(--slate-700);
    font-size: 20px
}

.extracted-style-39 {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
}

.extracted-style-40 {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto
}

.extracted-style-41 {
    color: var(--blue-500);
    width: 32px;
    height: 32px
}

.extracted-style-42 {
    margin-bottom: 8px;
    color: var(--slate-700);
    font-size: 18px
}

.extracted-style-43 {
    color: var(--text-muted);
    margin-bottom: 24px
}

.extracted-style-44 {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
}

.extracted-style-45 {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    text-transform: uppercase
}

.extracted-style-46 {
    font-size: 32px;
    font-weight: bold;
    color: var(--slate-700);
    margin-bottom: 8px
}

.extracted-style-47 {
    width: 100%;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden
}

.extracted-style-48 {
    width: 28%;
    height: 100%;
    background: var(--orange-brand)
}

.extracted-style-49 {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted)
}

.extracted-style-50 {
    width: 65%;
    height: 100%;
    background: var(--blue-500)
}

.extracted-style-51 {
    max-width: 560px;
    margin: 0 auto
}

.extracted-style-58 {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary)
}

.extracted-style-59 {
    background: rgba(6, 214, 160, 0.1);
    color: var(--teal-500)
}

.extracted-style-60 {
    background: rgba(247, 37, 133, 0.1);
    color: #f72585
}

.extracted-style-61 {
    background: rgba(248, 150, 30, 0.1);
    color: var(--warning)
}

.extracted-style-62 {
    background: rgba(114, 9, 183, 0.1);
    color: var(--purple-700)
}

.extracted-style-63 {
    background: rgba(76, 201, 240, 0.1);
    color: #4cc9f0
}

.extracted-style-64 {
    max-width: 1312px;
    margin: 0 auto 48px;
    padding: 0 var(--space-md)
}

.extracted-style-65 {
    max-width: 520px;
    margin: 0 auto
}

.extracted-style-66 {
    background: linear-gradient(135deg, var(--primary), var(--purple-700))
}

.extracted-style-67 {
    background: linear-gradient(135deg, #f72585, #b5179e)
}

.extracted-style-68 {
    background: linear-gradient(135deg, var(--teal-500), #1b9aaa)
}

.extracted-style-69 {
    background: linear-gradient(135deg, #ffd60a, var(--warning))
}

.extracted-style-70 {
    background: linear-gradient(135deg, #4cc9f0, var(--primary))
}

.extracted-style-71 {
    background: linear-gradient(135deg, var(--error), #b5179e)
}

.extracted-style-72 {
    margin-top: 20px
}

.extracted-style-73 {
    background: linear-gradient(135deg, var(--purple-700), var(--primary))
}

.extracted-style-74 {
    background: linear-gradient(135deg, var(--teal-500), var(--primary))
}

.extracted-style-75 {
    background: linear-gradient(135deg, var(--warning), var(--error))
}

.extracted-style-76 {
    background: linear-gradient(135deg, #4cc9f0, var(--purple-700))
}

.extracted-style-77 {
    background: linear-gradient(135deg, #b5179e, #f72585)
}

.extracted-style-78 {
    background: linear-gradient(135deg, #1b9aaa, var(--teal-500))
}

.extracted-style-79 {
    margin-top: var(--space-md)
}

.extracted-style-80 {
    width: 16px;
    height: 16px;
    margin-right: 6px
}

.extracted-style-81 {
    text-align: center;
    margin-bottom: 24px
}

.extracted-style-82 {
    font-size: var(--fs-2xl);
    margin-bottom: 8px
}

.extracted-style-83 {
    position: relative;
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.extracted-style-84 {
    width: 100%;
    position: absolute
}

.extracted-style-85 {
    margin-top: 0
}

.extracted-style-86 {
    margin-bottom: 12px
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.form-row-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.01em
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    pointer-events: none;
    flex-shrink: 0
}

.form-input {
    width: 100%;
    padding: 11px 14px 11px 42px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--secondary);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: inherit;
    box-sizing: border-box
}

.form-input::placeholder {
    color: var(--border-base)
}

.form-input:focus {
    border-color: var(--blue-500);
    background: #f8fbff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12)
}

.input-toggle-pass {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    transition: color 0.15s
}

.input-toggle-pass:hover {
    color: var(--blue-500)
}

.input-toggle-pass i {
    width: 16px;
    height: 16px
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none
}

.form-check input[type="checkbox"] {
    display: none
}

.check-box {
    width: 17px;
    height: 17px;
    border: 1.5px solid var(--border-base);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.15s, background 0.15s;
    background: var(--white)
}

.form-check input[type="checkbox"]:checked+.check-box {
    background: var(--blue-500);
    border-color: var(--blue-500)
}

.form-check input[type="checkbox"]:checked+.check-box::after {
    content: '';
    display: block;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg) translateY(-1px)
}

.check-label {
    font-size: 0.84rem;
    color: var(--slate-600)
}

.form-check-terms {
    align-items: flex-start
}

.form-check-terms .check-label {
    line-height: 1.5
}

.form-link {
    font-size: 0.84rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.15s
}

.form-link:hover {
    color: #1d4ed8;
    text-decoration: underline
}

.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em
}

.btn-auth:active {
    transform: scale(0.98)
}

.btn-auth-primary {
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: var(--white)
}

.btn-auth-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%)
}

.btn-auth-primary i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s
}

.btn-auth-primary:hover i {}

.btn-auth-google {
    background: var(--white);
    color: var(--gray-700);
    border: 1.5px solid var(--border-light);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    font-weight: 600
}

.btn-auth-google:hover {
    background: var(--bg-card);
    border-color: var(--border-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09)
}

.google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.phone-flag {
    font-size: 1.2rem;
    line-height: 1
}

.phone-dial {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600
}

.phone-chevron {
    width: 14px;
    height: 14px;
    color: var(--text-dim);
    transition: transform 0.2s;
    flex-shrink: 0
}

.phone-search-icon {
    width: 15px;
    height: 15px;
    color: var(--text-dim);
    flex-shrink: 0
}

.item-flag {
    font-size: 1.1rem;
    width: 22px;
    text-align: center
}

.item-name {
    flex: 1;
    color: var(--gray-700);
    font-weight: 500
}

.item-dial {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600
}

.phone-number-input {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 10px 10px 0 !important;
    flex: 1;
    padding-left: 14px !important
}

.phone-number-input:focus {
    outline: none
}

@media (max-width:600px) {
    .form-row-cols {
        grid-template-columns: 1fr
    }
}

.progress-line {
    flex: 1;
    height: 3px;
    background: var(--border-light);
    margin: 0 8px;
    border-radius: 2px;
    transition: all 0.3s ease
}

.progress-line.active {
    background: var(--blue-500)
}

.progress-line.completed {
    background: var(--green-500)
}

.btn-auth-secondary {
    background: var(--white);
    color: var(--slate-600);
    border: 1px solid var(--border-light);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02)
}

.btn-auth-secondary:hover {
    background: var(--bg-card);
    color: var(--slate-800);
    border-color: var(--border-base);

}

.form-row-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.btn-auth-secondary i {
    transition: transform 0.2s
}

.btn-auth-secondary:hover i {}

.form-step {
    display: none
}

.form-step.step-active {
    display: flex !important;
    flex-direction: column;
    gap: 20px !important
}

.username-status-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color 0.15s ease
}

.username-status-icon i {
    width: 16px;
    height: 16px;
    display: block
}

.username-status-icon.success {
    color: var(--green-500)
}

.username-status-icon.danger {
    color: var(--red-500)
}

#signupUsername {
    padding-right: 42px !important
}

.domain-search-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--slate-800) 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden
}

.domain-search-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, transparent 60%);
    z-index: 0
}

.domain-search-hero .hero-content-wrap {
    position: relative;
    z-index: 1
}

.domain-search-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -1px
}

.domain-search-hero p {
    font-size: 1.125rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.search-form-wrap {
    max-width: 750px;
    width: 100%;
    margin: 20px auto 0;
    position: relative
}

.domain-input-group {
    display: flex;
    background: var(--white);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 12px 68px rgba(0, 0, 0, 0.1)
}

.domain-input-group input {
    flex: 1;
    border: none;
    padding: 18px 24px;
    font-size: 1.25rem;
    outline: none;
    background: transparent;
    color: var(--secondary);
    font-weight: 500
}

.domain-input-group button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.domain-input-group button:hover {
    background: var(--blue-600);

    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3)
}

#search-result {
    margin-top: 30px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: left
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
    animation: fadeIn 0.4s ease forwards
}

.result-card.available {
    border-color: var(--emerald-500);
    background: linear-gradient(to right, var(--white), var(--green-50))
}

.result-card.taken {
    border-color: var(--red-500);
    background: linear-gradient(to right, var(--white), var(--red-50))
}

.result-domain {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary)
}

.result-status {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block
}

.status-available {
    background: #D1FAE5;
    color: var(--emerald-700)
}

.status-taken {
    background: #FEE2E2;
    color: var(--red-700)
}

.tld-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px
}

.tld-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.tld-card:hover {

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary)
}

.tld-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif
}

.tld-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary)
}

.tld-price span {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500
}

.tld-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--slate-100);
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between
}

.tld-details.center-details {
    justify-content: center
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    display: none
}

.transfer-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap
}

.step-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease
}


.step-icon {
    width: 70px;
    height: 70px;
    background: var(--indigo-50);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px
}

.domain-bg-white {
    background: var(--white)
}

.domain-container-limited {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.domain-section-header {
    text-align: center;
    margin-bottom: 50px
}

.domain-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px
}

.domain-section-desc {
    color: var(--text-muted);
    font-size: 1.1rem
}

.domain-text-primary {
    color: var(--primary)
}

.domain-tld-grid-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.domain-tld-grid-transfer {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))
}

.domain-tld-card-left {
    text-align: left
}

.domain-step-icon-custom {
    margin: 0 0 20px 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: var(--indigo-50);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.domain-feature-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px
}

.domain-feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6
}

.domain-step-title {
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 1.4rem
}

.domain-step-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6
}

.domain-msg-success {
    color: var(--emerald-700);
    margin-top: 6px;
    font-weight: 500
}

.domain-msg-error {
    color: var(--red-700);
    margin-top: 6px;
    font-weight: 500
}

.domain-msg-warning {
    color: var(--amber-700);
    margin-top: 6px;
    font-weight: 500
}

.domain-result-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.domain-btn-add {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700
}

.domain-card-warning {
    border-color: var(--amber-500);
    background: #FFFBEB
}

.domain-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(67, 97, 238, 0.1);
    border: 1px solid rgba(67, 97, 238, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px
}

.domain-hero-badge i {
    width: 14px;
    height: 14px
}

.domain-search-box {
    width: 100%;
    max-width: 700px;
    margin-top: 28px
}

.domain-search-inner {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 18px;
    padding: 10px 10px 10px 20px;
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    gap: 10px
}

.domain-search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    flex-shrink: 0
}

.domain-search-inner input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--secondary);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px
}

.domain-search-inner input::placeholder {
    color: var(--text-dim);
    font-weight: 400
}

.domain-search-inner button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    min-height: 52px
}

.domain-search-inner button:hover {
    background: var(--blue-600);

    box-shadow: 0 10px 24px rgba(67, 97, 238, 0.4)
}

.domain-search-inner button .btn-text {
    color: var(--white) !important;
    font-size: 1rem;
    font-weight: 700;
    transform: none !important;
    display: inline
}

.domain-search-inner button .btn-text:hover {
    color: var(--white) !important;
    transform: none !important
}

.domain-search-inner button .btn-loading {
    display: none
}

.domain-search-inner button .btn-loading i {
    width: 18px;
    height: 18px;
    color: var(--white)
}

.domain-search-inner button.loading {
    width: 52px;
    padding: 0;
    justify-content: center
}

.domain-search-inner button.loading .btn-text {
    display: none !important
}

.domain-search-inner button.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center
}

@keyframes spin360 {
    to {
        transform: rotate(360deg)
    }
}

.dco-spin {
    animation: spin360 0.8s linear infinite
}

.domain-hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap
}

.domain-hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dim)
}

.domain-hero-trust i {
    width: 13px;
    height: 13px
}

#search-result {
    margin-top: 16px
}

.result-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    animation: slideUpIn 0.35s ease forwards;
    gap: 16px;
    flex-wrap: wrap
}

@keyframes slideUpIn {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

.result-card.available {
    border-color: var(--emerald-500);
    background: linear-gradient(135deg, var(--white), #f0fdf9)
}

.result-card.taken {
    border-color: var(--red-500);
    background: linear-gradient(135deg, var(--white), var(--red-50))
}

.result-card.warn {
    border-color: var(--amber-500);
    background: linear-gradient(135deg, var(--white), #fffbeb)
}

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

.result-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.result-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0
}

.result-status-dot.available {
    background: var(--emerald-500);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15)
}

.result-status-dot.taken {
    background: var(--red-500);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15)
}

.result-status-dot.warn {
    background: var(--amber-500);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15)
}

.result-domain-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px
}

.result-status-text {
    font-size: 0.83rem;
    font-weight: 600;
    margin-top: 2px
}

.available-text {
    color: var(--emerald-700)
}

.taken-text {
    color: var(--red-700)
}

.warn-text {
    color: var(--amber-700)
}

.result-price-block {
    display: flex;
    align-items: baseline;
    gap: 2px
}

.result-price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary)
}

.result-price-period {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500
}

.result-renew-note {
    font-size: 0.75rem;
    color: var(--text-dim)
}

.result-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s
}

.result-cart-btn:hover {
    background: var(--blue-600);

    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.35);
    color: var(--white)
}

.result-cart-btn i,
.result-transfer-btn i {
    width: 15px;
    height: 15px
}

.result-transfer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-100);
    color: var(--slate-600);
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s
}

.result-transfer-btn:hover {
    background: var(--border-light);
    color: var(--secondary)
}

.domain-pricing-section {
    padding: 100px 20px;
    background: var(--bg-card)
}

.domain-pricing-inner {
    max-width: 1240px;
    margin: 0 auto
}

.domain-sec-head {
    text-align: center;
    margin-bottom: 60px
}

.domain-sec-head h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -1px;
    margin: 12px 0 10px
}

.domain-sec-head p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0
}

.tld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px
}

.tld-pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.tld-pricing-wrapper {
    position: relative;
    max-height: 320px;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tld-pricing-wrapper.expanded {
    max-height: 5000px;
}

.tld-pricing-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 1) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.tld-pricing-wrapper.expanded .tld-pricing-overlay {
    opacity: 0;
    visibility: hidden;
}

.tld-pricing-expand-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.tld-pricing-expand-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--primary);
    transition: color 0.2s ease, transform 0.2s ease;
}

.tld-pricing-expand-link:hover {
    color: #2563eb;
}

.tld-pricing-expand-link svg,
.tld-pricing-expand-link [data-lucide] {
    transition: transform 0.25s ease;
}

.tld-pricing-expand-link:hover svg,
.tld-pricing-expand-link:hover [data-lucide] {
    transform: translateY(2px);
}

.tld-pc-top {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.tld-pc-ext {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px
}

.tld-pc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-700);
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.3px
}

.tld-pricing-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--slate-100);
    padding-top: 14px
}

.tld-pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem
}

.tld-row-label {
    color: var(--text-muted);
    font-weight: 500
}

.tld-row-val {
    font-weight: 700;
    color: var(--secondary)
}

.tld-row-val span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dim);
    margin-left: 1px
}

.tld-row-val.reg-price {
    color: var(--primary);
    font-size: 0.95rem
}

.domain-perks-section {
    padding: 100px 20px;
    background: var(--white)
}

.domain-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px
}

.domain-perk-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.25s ease
}

.domain-perk-card:hover {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(67, 97, 238, 0.08);

}

.domain-perk-icon {
    width: 50px;
    height: 50px;
    background: var(--indigo-50);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.domain-perk-icon i {
    width: 22px;
    height: 22px
}

.domain-perk-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px
}

.domain-perk-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0
}

.domain-checkout-wrap {
    max-width: 1280px;
    margin: 40px auto 80px;
    padding: 0 20px
}

.domain-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 32px
}

.domain-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600
}

.domain-breadcrumb i {
    width: 14px;
    height: 14px
}

.domain-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start
}

.dco-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04)
}

.dco-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--slate-100)
}

.dco-title i {
    width: 20px;
    height: 20px;
    color: var(--primary)
}

.dco-tld-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--indigo-50), #F5F3FF);
    border: 1px solid rgba(67, 97, 238, 0.2);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 24px
}

.dco-tld-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary)
}

.dco-tld-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--secondary)
}

.dco-field {
    margin-bottom: 20px
}

.dco-label {
    display: block;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--slate-600);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px
}

.dco-domain-input-wrap {
    display: flex;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.15s
}

.dco-domain-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1)
}

.dco-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    background: transparent
}

.dco-tld-suffix {
    display: flex;
    align-items: center;
    padding: 0 18px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg-card);
    border-left: 1.5px solid var(--border-light)
}

.dco-hint {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin: 6px 0 0
}

.dco-availability {
    margin-bottom: 16px
}

.dco-avail-ok,
.dco-avail-err,
.dco-avail-warn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    animation: slideUpIn 0.3s ease
}

.dco-avail-ok {
    background: rgba(16, 185, 129, 0.08);
    color: var(--emerald-700);
    border: 1px solid rgba(16, 185, 129, 0.2)
}

.dco-avail-err {
    background: rgba(239, 68, 68, 0.07);
    color: var(--red-700);
    border: 1px solid rgba(239, 68, 68, 0.2)
}

.dco-avail-warn {
    background: rgba(245, 158, 11, 0.08);
    color: var(--amber-700);
    border: 1px solid rgba(245, 158, 11, 0.2)
}

.dco-avail-ok i,
.dco-avail-err i,
.dco-avail-warn i {
    width: 17px;
    height: 17px;
    flex-shrink: 0
}

.dco-avail-err a {
    color: var(--primary);
    font-weight: 700
}

.dco-check-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-left: 1.5px solid var(--border-light);
    border-radius: 0;
    padding: 0 18px;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
    align-self: stretch
}

.dco-check-btn:hover {
    background: var(--blue-600)
}

.dco-check-btn i {
    width: 17px;
    height: 17px
}

.dco-check-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none
}

.dco-summary-card {
    position: sticky;
    top: 100px
}

.dco-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.9rem;
    color: var(--slate-600)
}

.dco-summary-row strong {
    color: var(--secondary);
    font-weight: 700
}

.dco-free {
    color: var(--emerald-700) !important
}

.dco-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary)
}

.dco-summary-total strong {
    font-size: 1.4rem;
    color: var(--primary)
}

.dco-renew-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 24px;
    padding: 10px 14px;
    background: var(--bg-card);
    border-radius: 8px
}

.dco-renew-note i {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.dco-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary, var(--primary));
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(67, 97, 238, 0.15)
}

.dco-order-btn:hover {
    background: var(--primary-hover, var(--blue-600));
    box-shadow: 0 4px 10px rgba(67, 97, 238, 0.2);
    color: var(--white)
}

.dco-order-btn.dco-btn-disabled {
    opacity: 0.5;
    pointer-events: none
}

.dco-order-btn i {
    width: 18px;
    height: 18px
}

.dco-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 14px;
    text-align: center
}

.dco-trust i {
    width: 13px;
    height: 13px
}

.dco-error-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FEE2E2;
    color: var(--red-700);
    border: 1px solid #FCA5A5;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px
}

.dco-error-banner i {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.dco-coupon-wrap {
    margin-top: 28px
}

.dco-coupon-row {
    display: flex;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 8px;
    transition: border-color 0.15s
}

.dco-coupon-row:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1)
}

.dco-coupon-row .dco-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 13px 16px;
    font-size: 0.95rem;
    background: transparent
}

.dco-coupon-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-left: 1.5px solid var(--border-light);
    border-radius: 0;
    padding: 0 20px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0
}

.dco-coupon-btn:hover {
    background: var(--slate-800)
}

.dco-gw-wrap {
    margin-top: 24px
}

.dco-gw-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px
}

.dco-gw-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.15s;
    flex: 1;
    min-width: 180px;
}

.dco-gw-option:hover {
    border-color: var(--border-base)
}

.dco-gw-option.sel {
    border-color: var(--primary);
    background: var(--indigo-50)
}

.dco-gw-option strong {
    font-size: 0.9rem;
    color: var(--secondary)
}

.dco-tos-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 24px;
    border-top: 1px solid var(--slate-100);
    padding-top: 20px
}

.dco-tos-label input {
    margin-top: 3px;
    flex-shrink: 0
}

.dco-tos-label a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none
}

.dco-tos-label a:hover {
    text-decoration: underline
}

.result-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    animation: slideUpIn 0.35s ease forwards
}

.result-card.available {
    border-color: var(--emerald-500)
}

.result-card.taken {
    border-color: var(--red-500)
}

.result-card.warn {
    border-color: var(--amber-500)
}

.result-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 28px;
    flex-wrap: wrap
}

.result-domain-info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.result-avail-pill,
.result-taken-pill,
.result-warn-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content
}

.result-avail-pill {
    background: #D1FAE5;
    color: var(--emerald-700)
}

.result-taken-pill {
    background: #FEE2E2;
    color: var(--red-700)
}

.result-warn-pill {
    background: #FEF3C7;
    color: var(--amber-700)
}

.result-avail-dot,
.result-taken-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

.result-avail-dot {
    background: var(--emerald-500);
    animation: pulse-dot 1.5s ease infinite
}

.result-taken-dot {
    background: var(--red-500)
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4)
    }

    50% {
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0)
    }
}

.result-domain-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.8px;
    line-height: 1.1
}

.result-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap
}

.result-price-big {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary)
}

.result-price-yr {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500
}

.result-renews {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500
}

.result-taken-msg,
.result-warn-msg {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 500
}

.result-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0
}

.result-cart-btn i {
    width: 17px;
    height: 17px
}

.result-cart-btn:hover {

    color: var(--white)
}

.result-transfer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--slate-100);
    color: var(--slate-600);
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0
}

.result-transfer-btn i {
    width: 17px;
    height: 17px
}

.result-alts {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-top: 1px solid var(--slate-100);
    background: #FAFBFC;
    flex-wrap: wrap
}

.result-alts-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0
}

.result-alt-tld {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    padding: 7px 14px;
    text-decoration: none;
    transition: all 0.18s
}

.result-alt-tld:hover {
    border-color: var(--primary);
    background: var(--indigo-50);

    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.12)
}

.result-alt-ext {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary)
}

.result-alt-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted)
}

@keyframes fadeIn {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.detail-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px
}

.detail-badge-group {
    display: flex;
    gap: 8px
}

.detail-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: var(--radius-full)
}

.detail-pill.pill-accent {
    background: var(--accent-soft);
    color: var(--accent)
}

.detail-pill.pill-light {
    background: var(--bg-muted);
    color: var(--text-muted)
}

.detail-header h3 {
    margin: 0;
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--secondary)
}

.detail-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.spec-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px
}

.spec-label {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.spec-val {
    font-size: var(--fs-base);
    font-weight: var(--fw-bold);
    color: var(--secondary)
}

.detail-body h4 {
    margin-bottom: 8px;
    font-size: var(--fs-md);
    color: var(--secondary)
}

.detail-body p {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    color: var(--text-muted);
    margin-bottom: 24px
}

.detail-impact-bar {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.impact-label {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    color: var(--text-main)
}

.impact-val {
    color: var(--accent)
}

.impact-progress {
    height: 8px;
    background: var(--bg-muted);
    border-radius: var(--radius-full);
    overflow: hidden
}

.impact-fill {
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 1s cubic-bezier(0.19, 1, 0.22, 1)
}

.impact-fill.fill-accent {
    background: var(--accent)
}

.impact-fill.fill-primary {
    background: var(--primary)
}

.impact-fill.fill-warning {
    background: var(--warning)
}

.impact-fill.fill-success {
    background: var(--success)
}

.impact-fill.fill-info {
    background: var(--info)
}

.network-center-hub {
    position: absolute;
    z-index: 10;
    width: 100px;
    height: 100px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(15, 23, 42, 0.25), 0 0 0 8px rgba(15, 23, 42, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: default
}

.hub-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.hub-icon {
    width: 28px;
    height: 28px;
    stroke-width: 2px
}

.hub-text {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9
}

.int-node {
    position: absolute;
    z-index: 12;
    width: 52px;
    height: 52px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    color: var(--secondary)
}

.int-node i,
.int-node svg {
    width: 20px;
    height: 20px;
    stroke-width: 2px
}

.int-node:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    color: var(--primary)
}

.int-node.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.18)
}

.node-wp {
    top: calc(50% - 140px);
    left: calc(50% - 140px)
}

.node-woo {
    top: calc(50% - 140px);
    left: calc(50% + 88px)
}

.node-laravel {
    top: calc(50% - 26px);
    left: calc(50% - 180px)
}

.node-github {
    top: calc(50% - 26px);
    left: calc(50% + 128px)
}

.node-stripe {
    top: calc(50% + 88px);
    left: calc(50% - 140px)
}

.node-shopify {
    top: calc(50% + 88px);
    left: calc(50% + 88px)
}

.node-tooltip {
    position: absolute;
    bottom: -28px;
    background: var(--secondary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;

    transition: all var(--transition-fast);
    pointer-events: none;
    box-shadow: var(--shadow-sm)
}

.int-node:hover .node-tooltip {
    opacity: 1;

}

.network-connections {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 5
}

.conn-path {
    stroke: var(--border-light);
    stroke-width: 1.5px;
    stroke-dasharray: 4 4;
    fill: none;
    transition: all var(--transition-base)
}

@keyframes pulseDash {
    to {
        stroke-dashoffset: -20
    }
}

.conn-path.active {
    stroke: var(--primary);
    stroke-width: 2px;
    animation: pulseDash 0.8s infinite linear
}

.int-info-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 20px
}

.int-card-header {
    display: flex;
    align-items: center;
    gap: 16px
}

.int-icon-container {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary)
}

.int-icon-container i,
.int-icon-container svg {
    width: 24px;
    height: 24px
}

.int-card-header h3 {
    margin: 0;
    font-size: var(--fs-xl);
    color: var(--secondary)
}

.int-status-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-top: 4px
}

.int-status-badge.badge-active {
    background: rgba(37, 162, 68, 0.1);
    color: var(--success)
}

.int-status-badge.badge-inactive {
    background: var(--bg-muted);
    color: var(--text-muted)
}

.int-desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: var(--lh-relaxed)
}

.int-console-wrapper {
    background: #0b0f19;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.console-title-row {
    background: #141b2d;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.console-title-row span[class^="console-dot-"] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block
}

.console-dot-r {
    background: var(--error)
}

.console-dot-y {
    background: var(--warning)
}

.console-dot-g {
    background: var(--success)
}

.console-title-text {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-sans);
    margin-left: 8px;
    letter-spacing: 0.5px
}

.console-screen {
    padding: 16px;
    font-family: monospace;
    font-size: 11px;
    color: var(--border-light);
    min-height: 110px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.5
}

.log-line {
    word-break: break-all
}

.log-line.text-muted {
    color: var(--text-muted)
}

.log-line.text-danger {
    color: var(--red-400)
}

.toggle-icon-wrap {
    width: 40px;
    height: 40px;
    background: var(--bg-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all var(--transition-base)
}

.toggle-icon-wrap i,
.toggle-icon-wrap svg {
    width: 20px;
    height: 20px
}

.toggle-body h4 {
    margin: 0 0 4px 0;
    font-size: var(--fs-base);
    color: var(--secondary)
}

.toggle-body p {
    margin: 0;
    font-size: var(--fs-xs);
    line-height: var(--lh-normal)
}

.toggle-switch-wrapper {
    display: flex;
    align-items: center
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-base);
    transition: .4s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 24px
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 50%;
    box-shadow: var(--shadow-sm)
}

input:checked+.slider {
    background-color: var(--success)
}

input:checked+.slider:before {}

.gauge-display-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center
}

.gauge-container {
    position: relative;
    width: 160px;
    height: 160px
}

.gauge-bg {
    fill: none;
    stroke: var(--bg-muted);
    stroke-width: 8
}

.gauge-fill {
    fill: none;
    stroke: var(--success);
    stroke-width: 8;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.19, 1, 0.22, 1), stroke var(--transition-base)
}

.gauge-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center
}

.gauge-grade {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-bold);
    color: var(--secondary);
    line-height: 1
}

.gauge-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px
}

.scanner-actions {
    width: 100%
}

.scanner-actions button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px var(--space-lg)
}

.btn-scan-icon {
    width: 18px;
    height: 18px
}

.scanner-console-panel {
    background: var(--secondary);
    border-radius: var(--radius-md);
    width: 100%;
    text-align: left;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.console-header-mini {
    background: var(--slate-800);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05)
}

.log-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block
}

.log-status-dot.green {
    background: var(--emerald-500)
}

.log-status-dot.orange {
    background: var(--amber-500)
}

.console-logs-screen {
    padding: 12px;
    font-family: monospace;
    font-size: 10.5px;
    color: var(--border-base);
    min-height: 90px;
    max-height: 120px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.log-row {
    line-height: 1.4;
    word-break: break-all
}

.log-row.text-muted {
    color: var(--text-muted)
}

.log-row.text-warning {
    color: #fbbf24
}

.timeline-node {
    position: relative;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    background: transparent;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
    z-index: 2
}

.timeline-node:last-child {
    margin-bottom: 0
}

.node-marker {
    position: absolute;
    left: -20px;
    top: calc(50% - 6px);
    width: 10px;
    height: 10px;
    background: var(--bg-surface);
    border: 2px solid var(--border-base);
    border-radius: 50%;
    z-index: 3;
    transition: all var(--transition-base)
}

.timeline-node:hover {
    background: var(--bg-card)
}

.timeline-node.active {
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm)
}

.timeline-node.active .node-marker {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15)
}

.node-content {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.node-time {
    font-size: var(--fs-sm);
    font-weight: var(--fw-bold);
    color: var(--secondary)
}

.node-label {
    font-size: var(--fs-xs);
    color: var(--text-muted)
}

.node-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-dim);
    transition: transform var(--transition-base), color var(--transition-base)
}

.timeline-node.active .node-arrow {
    color: var(--primary);
}

.snapshot-detail-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-premium);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

#snapshot-default-view {
    animation: fadeIn var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg)
}

.snapshot-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px
}

.snapshot-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary)
}

.snapshot-icon-wrap i,
.snapshot-icon-wrap svg {
    width: 24px;
    height: 24px
}

.snapshot-card-header h3 {
    margin: 0;
    font-size: var(--fs-xl);
    color: var(--secondary)
}

.snapshot-status {
    font-size: var(--fs-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px
}

.snapshot-status i,
.snapshot-status svg {
    width: 12px;
    height: 12px;
    stroke-width: 3px
}

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

.snapshot-detail-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 4px
}

.snapshot-detail-box strong {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--secondary)
}

.snapshot-detail-box .sublbl {
    font-size: var(--fs-xs);
    color: var(--text-dim)
}

.snapshot-actions-row {
    display: flex;
    gap: 16px;
    margin-top: var(--space-xs)
}

.snapshot-actions-row button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    flex: 1
}

.snapshot-actions-row button i,
.snapshot-actions-row button svg {
    width: 16px;
    height: 16px
}

#snapshot-restore-view {
    animation: fadeIn var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: var(--space-md)
}

.restoring-title {
    margin: 0;
    font-size: var(--fs-2xl);
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px
}

.restoring-title i,
.restoring-title svg {
    width: 24px;
    height: 24px;
    color: var(--primary)
}

.restoring-desc {
    margin: 0;
    font-size: var(--fs-sm)
}

.restore-progress-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 20px;
    border-radius: var(--radius-md)
}

.restore-progress-bar {
    height: 8px;
    background: var(--bg-muted);
    border-radius: var(--radius-full);
    overflow: hidden
}

.restore-progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: width 0.15s linear
}

.restore-progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--text-main);
    font-weight: 700
}

.restore-console-terminal {
    background: #090d16;
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05)
}

.restore-console-terminal .console-logs-screen {
    min-height: 80px;
    max-height: 80px;
    padding: 0;
    font-size: 10px
}

@media (max-width:991px) {
    .network-center-hub {
        width: 80px;
        height: 80px
    }

    .int-node {
        width: 44px;
        height: 44px
    }

    .node-wp {
        top: calc(50% - 110px);
        left: calc(50% - 110px)
    }

    .node-woo {
        top: calc(50% - 110px);
        left: calc(50% + 66px)
    }

    .node-laravel {
        top: calc(50% - 22px);
        left: calc(50% - 140px)
    }

    .node-github {
        top: calc(50% - 22px);
        left: calc(50% + 96px)
    }

    .node-stripe {
        top: calc(50% + 66px);
        left: calc(50% - 110px)
    }

    .node-shopify {
        top: calc(50% + 66px);
        left: calc(50% + 66px)
    }

    .network-connections {
        width: 320px;
        height: 320px
    }
}

.reseller-grad {
    background: linear-gradient(135deg, var(--orange-500), #fb923c)
}

.red-grad {
    background: linear-gradient(135deg, var(--red-500), var(--red-400))
}

@keyframes statusBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.p-price-val {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--secondary)
}

.p-price-lbl {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500
}

.reseller-bg {
    background: linear-gradient(135deg, var(--orange-500), #fb923c)
}

.blue-btn-alt {
    background: #f0f5ff;
    border: 1px solid #bfdbfe;
    color: var(--blue-500)
}

.blue-btn-alt:hover {
    background: #bfdbfe
}

.red-btn-alt {
    background: var(--red-100-soft);
    border: 1px solid var(--rose-200);
    color: var(--red-500)
}

.red-btn-alt:hover {
    background: var(--rose-200)
}

.btn-sm {
    font-size: 11.5px;
    padding: 6px 12px
}

.btn-xs {
    font-size: 10.5px;
    padding: 4.5px 9px;
    border-radius: 4px
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px !important
}

.font-bold {
    font-weight: 700
}

.font-bold-heavy {
    font-weight: 800
}

.text-rose {
    color: var(--red-500)
}

.amber-text {
    color: var(--amber-700)
}

.text-muted {
    color: var(--text-dim) !important
}

.svg-chart-graph {
    width: 100%;
    height: 100%
}

.vps-power-btn-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid var(--border-base);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit
}

.vps-power-btn-block svg {
    width: 14px;
    height: 14px
}

.vps-power-btn-block.stop {
    background: var(--bg-card);
    border-color: var(--border-base);
    color: var(--slate-600)
}

.vps-power-btn-block.stop:hover {
    background: var(--border-base);
    color: var(--secondary)
}

.border-rose {
    border: 1px solid var(--rose-200) !important
}

.vps-alert-box-rose {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--red-100-soft);
    border: 1px solid var(--rose-200);
    border-radius: 8px;
    padding: 12px
}

.vps-loading-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--rose-200);
    border-top-color: var(--red-500);
    border-radius: 50%;
    animation: vpsSpin 0.8s linear infinite
}

@keyframes vpsSpin {
    to {
        transform: rotate(360deg)
    }
}



.hero-trusted-container {
    margin: 24px 0 12px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.hero-trusted-title {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    font-weight: var(--fw-semibold);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em
}

.hero-trusted-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px
}

.hero-trusted-row .hero-actions {
    margin: 0
}

@media (max-width:1024px) {
    .hero-trusted-container {
        align-items: center;
        margin: 20px auto 10px;
    }

    .hero-trusted-row {
        justify-content: center;
    }

    .hero-trust-badge {
        justify-content: center;
        margin-top: 12px;
        margin-bottom: var(--space-lg);
    }
}

@media (max-width:768px) {

    /* Hide the review title and broken avatars on mobile for a clean UX */
    .hero-trusted-title,
    .hero-trusted-avatars {
        display: none !important;
    }

    .hero-trusted-container {
        width: 100%;
        align-items: center !important;
        margin: 16px auto 10px !important;
    }

    .hero-trusted-row {
        width: 100%;
        justify-content: center !important;
        margin-top: 0 !important;
        gap: 0 !important;
    }

    .hero-actions {
        display: none !important;
    }

    .hero-badge {
        white-space: nowrap !important;
        font-size: clamp(10px, 3.2vw, 13px) !important;
        margin-bottom: var(--space-md) !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: 100% !important;
    }

    .hero-subtitle {
        display: none !important;
    }

    .hero-features {
        width: fit-content;
        margin: 16px auto var(--space-md) auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .hero-features li {
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: var(--text-main) !important;
        font-weight: 500 !important;
        text-align: left !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .hero-features li svg {
        width: 14px !important;
        height: 14px !important;
        margin-top: 2px !important;
        color: var(--success) !important;
        flex-shrink: 0 !important;
    }

    .hero-content {
        display: contents !important;
    }

    .hero-image {
        display: flex !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
        margin: 0 !important;
        order: 5 !important;
        aspect-ratio: 16 / 8.5 !important;
    }

    .hero-image picture {
        top: 0 !important;
    }

    .hero-trust-badge {
        order: 6 !important;
        margin-top: 10px !important;
        margin-bottom: var(--space-md) !important;
        justify-content: center !important;
        display: flex !important;
    }

    .hero-discount-grid-tl {
        top: 10px !important;
        left: 20px !important;
        transform: scale(0.68) !important;
        transform-origin: top left !important;
        z-index: 10 !important;
    }

    /* Heading & Description mobile tuning */
    .section-title {
        font-size: clamp(28px, 6vw, 28px) !important;
        letter-spacing: -0.02em !important;
    }

    .section-desc {
        font-size: clamp(10.5px, 3vw, 12px) !important;
        line-height: 1.45 !important;
        max-width: 440px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Horizontal Scrollable Pricing Tabs on Mobile */
    .pricing-tabs {
        position: relative !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        overflow: visible !important;
        padding: 4px 16px !important;
        margin-left: calc(-1 * var(--space-md)) !important;
        margin-right: calc(-1 * var(--space-md)) !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none !important;
        gap: 8px !important;
    }

    .pricing-tabs::-webkit-scrollbar {
        display: none !important;
    }

    .pricing-tabs .tab-btn,
    .pricing-tabs .more-plans-wrap {
        flex-shrink: 0 !important;
    }

    /* Hide WordPress Hosting tab on mobile */
    .pricing-tabs .tab-btn[data-group*="wordpress"] {
        display: none !important;
    }

    .more-plans-wrap {
        position: static !important;
    }

    .more-plans-dropdown {
        width: min(520px, calc(100vw - 32px)) !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) scale(0.97) !important;
        transform-origin: top center !important;
    }

    .more-plans-dropdown.open {
        transform: translateX(-50%) scale(1) !important;
    }
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.slide-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block
}

.slide-info-blur-layer {
    display: none
}

@media (max-width:768px) {
    .slide-info-overlay {
        height: 50%
    }

    .slide-info-content {
        padding: 0 18px 20px
    }

    .slide-info-content::before {
        width: 28px;
        margin-bottom: 10px
    }

    .slide-info-title {
        font-size: 13.5px
    }

    .slide-info-desc {
        font-size: 11.5px;
        -webkit-line-clamp: 2
    }

    .slide-info-rating {
        padding: 4px 8px
    }
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important
}

html {
    scrollbar-width: none !important
}

.custom-viewport-scrollbar {
    position: fixed;
    top: 100px;
    right: 4px;
    bottom: 20px;
    width: 6px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease
}

.custom-viewport-scrollbar.visible,
body:hover .custom-viewport-scrollbar {
    opacity: 1
}

.custom-viewport-scrollbar-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.25);
    border-radius: 3px;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.2s ease, width 0.2s ease, left 0.2s ease
}

.custom-viewport-scrollbar-thumb:hover,
.custom-viewport-scrollbar-thumb.dragging {
    background: rgba(15, 23, 42, 0.45);
    width: 8px;
    left: -1px
}

@media (max-width: 768px) {
    .custom-viewport-scrollbar {
        display: none !important;
    }
}

section[id] {
    scroll-margin-top: 100px
}

.feat-brand-icon {
    width: 15px !important;
    height: 15px !important;
    flex-shrink: 0 !important;
    object-fit: contain !important;
    vertical-align: middle !important
}

svg.feat-brand-icon path,
svg.feat-brand-icon rect,
svg.feat-brand-icon circle,
svg.feat-brand-icon polygon,
svg.feat-brand-icon .cls-1,
svg.feat-brand-icon g {
    fill: currentColor !important
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -50%) scale(3.2);
        opacity: 0
    }
}

.hero-trusted-avatars {
    display: inline-flex;
    align-items: center;
    padding-left: 10px
}

.trusted-avatar-item {
    position: relative;
    width: 42px;
    height: 42px;
    margin-left: -10px;
    cursor: pointer;
    z-index: 1;
    transition: transform var(--transition-base), z-index var(--transition-base)
}

.trusted-avatar-item.skeleton {
    border-radius: 50%;
    background-color: rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.trusted-avatar-item.skeleton::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: skeleton-pulse 1.5s infinite;
}

@keyframes skeleton-pulse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.trusted-avatar-item:hover {
    z-index: 50
}

.trusted-avatar-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bg-surface);
    display: block;
    will-change: transform;
    transition: transform var(--transition-base), border-color var(--transition-base)
}

.trusted-avatar-item:hover img {
    border-color: var(--bg-muted);
    transform: scale(1.1) translateY(-3px)
}

.trusted-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(12px) scale(0.92);
    background: var(--black);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    width: max-content;
    max-width: 280px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 100;
    text-align: center
}

.trusted-tooltip-arrow {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--black)
}

.trusted-avatar-item:hover .trusted-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto
}

.tooltip-name {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    line-height: 1.3
}

.tooltip-role {
    display: block;
    font-size: 11px;
    color: var(--border-base);
    margin-top: 2px
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: var(--s-8) var(--s-12);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    white-space: nowrap
}

.dropdown-link:hover {
    background: var(--bg-surface-hover)
}

.dropdown-link:hover .icon-box {
    background: var(--primary)
}

.dropdown-link:hover .icon-box i,
.dropdown-link:hover .icon-box svg,
.dropdown-link:hover .icon-box .si {
    color: var(--text-invert)
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--bg-icon-soft);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1)
}

.icon-box i,
.icon-box svg,
.icon-box .si {
    width: 22px !important;
    height: 22px !important;
    font-size: 22px !important;
    color: var(--primary);
    stroke-width: 2px;
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.icon-box svg.icon-wordpress path,
.icon-box svg.icon-wordpress g,
.icon-box svg.icon-laravel path,
.icon-box svg.icon-laravel g,
.icon-box svg.icon-microsoft path,
.icon-box svg.icon-microsoft g,
.icon-box svg.icon-google path,
.icon-box svg.icon-google g,
.icon-box svg.icon-amd,
.icon-box svg.icon-amd path,
.icon-box svg.icon-amd g,
.icon-box svg.icon-intel,
.icon-box svg.icon-intel path,
.icon-box svg.icon-intel g {
    fill: currentColor !important;
}


.link-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.link-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-main)
}

@media screen and (max-width:1024px) {
    body {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none
    }

    input,
    textarea,
    select {
        -webkit-user-select: auto;
        -moz-user-select: auto;
        -ms-user-select: auto;
        user-select: auto
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 40px;
        height: 40px;
        background: var(--bg-muted);
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: var(--radius-md);
        transition: all var(--transition-base);
        cursor: pointer;
        padding: 0;
        margin-right: -4px;
    }

    .menu-toggle:hover {
        background: var(--border-light);
    }

    .menu-toggle.active {
        background: var(--primary-soft);
        border-color: rgba(67, 97, 238, 0.1);
    }

    .menu-toggle .bar {
        width: 18px;
        height: 2px;
        background-color: var(--secondary);
        border-radius: var(--radius-full);
        transition: transform var(--transition-base), opacity var(--transition-base), background-color var(--transition-base);
    }

    .menu-toggle.active .bar {
        background-color: var(--primary);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 380px;
        height: 100dvh;
        height: 100vh;
        background: var(--bg-surface);
        box-shadow: -10px 0 40px rgba(15, 23, 42, 0.08);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        padding: 0;
        gap: 0;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1), visibility var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 2000;
        overscroll-behavior: contain;
    }

    .nav-menu.mobile-active {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-container {
        height: 64px;
        padding: 0 var(--space-md);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar.scrolled .navbar-container {
        padding: 0 var(--space-md);
    }

    .brand-logo {
        transition: opacity var(--transition-base);
    }

    .brand-logo img {
        height: 32px !important;
        width: auto !important;
        object-fit: contain;
    }

    /* Fade out outer logo when mobile menu is active to prevent double logo layout */
    body:has(.nav-menu.mobile-active) .navbar-container>.brand-logo {
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu-header {
        display: flex !important;
        width: 100% !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 var(--space-md) !important;
        background: var(--bg-surface);
        position: sticky;
        top: 0;
        z-index: 10;
        height: 64px;
        box-sizing: border-box;
        transition: all var(--transition-base);
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu-header .brand-logo img {
        height: 32px !important;
        width: auto !important;
    }

    .nav-menu-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .navbar-actions-mobile .btn-secondary-icon,
    .nav-menu-header-actions .btn-secondary-icon {
        width: 40px;
        height: 40px;
        border-radius: var(--radius-md);
        background: var(--bg-muted);
        border: 1px solid rgba(15, 23, 42, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        transition: all var(--transition-base);
    }

    .navbar-actions-mobile .btn-secondary-icon:hover,
    .nav-menu-header-actions .btn-secondary-icon:hover {
        background: var(--border-light);
        color: var(--primary);
    }

    .navbar-actions-mobile .btn-secondary-icon svg,
    .nav-menu-header-actions .btn-secondary-icon svg {
        width: 18px;
        height: 18px;
    }

    .nav-menu-header.menu-scrolled {
        box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
        border-bottom-color: transparent;
    }

    .menu-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-muted);
        border: 1px solid rgba(15, 23, 42, 0.05);
        border-radius: var(--radius-full);
        cursor: pointer;
        transition: all var(--transition-base);
        padding: 0;
        margin-right: -4px;
    }

    .menu-close:hover {
        background: var(--border-light);
        transform: rotate(90deg);
    }

    .menu-close-inner {
        width: 16px;
        height: 16px;
        position: relative;
    }

    .menu-close .bar {
        position: absolute;
        left: 0;
        top: 7px;
        width: 16px;
        height: 2px;
        background-color: var(--secondary);
        border-radius: var(--radius-full);
        transition: background-color var(--transition-base);
    }

    .menu-close .bar:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-close .bar:nth-child(2) {
        display: none;
    }

    .menu-close .bar:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-menu-content {
        flex: 1;
        overflow-y: auto;
        padding: 0 16px 120px;
        display: flex;
        flex-direction: column;
        -webkit-overflow-scrolling: touch;
        min-height: 0;
        overscroll-behavior: contain;
    }

    .nav-menu-content::-webkit-scrollbar {
        width: 4px;
    }

    .nav-menu-content::-webkit-scrollbar-thumb {
        background: var(--border-light);
        border-radius: var(--radius-full);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        gap: 4px;
        padding: var(--space-md) 0;
        list-style: none;
    }

    .nav-item {
        width: 100%;
        padding: 0;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
        font-weight: var(--fw-medium);
        color: var(--secondary);
        border-radius: var(--radius-md);
        border-bottom: none;
        transition: all var(--transition-fast) ease;
        box-sizing: border-box;
        cursor: pointer;
    }

    .nav-link:hover,
    .nav-link:active {
        background: var(--bg-surface-hover);
        color: var(--primary);
    }

    .nav-item.current .nav-link {
        color: var(--primary);
        font-weight: var(--fw-bold);
        background: var(--primary-soft);
    }

    .has-dropdown .nav-link::after {
        content: '';
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        transition: transform var(--transition-base) cubic-bezier(0.16, 1, 0.3, 1);
        margin-left: 8px;
        opacity: 0.7;
    }

    .has-dropdown.active>.nav-link::after {
        transform: rotate(180deg);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234361ee' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
        opacity: 1;
    }

    .has-dropdown.active>.nav-link {
        color: var(--primary);
        background: var(--primary-soft);
    }

    .mega-menu-bg {
        display: none !important;
    }

    .dropdown-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 300ms cubic-bezier(0.16, 1, 0.3, 1);
        overflow: hidden;
        position: static;
        width: 100%;
        padding: 0 0 0 16px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .has-dropdown.active>.dropdown-content {
        grid-template-rows: 1fr;
        margin-top: 4px;
        margin-bottom: 8px;
    }

    .dropdown-content-inner {
        min-height: 0;
        display: flex;
        flex-direction: column;
        height: auto !important;
        padding: 0;
    }

    .mega-menu-main {
        display: flex;
        flex-direction: column;
        padding: 8px 0 0 0;
        gap: 16px;
    }

    .mega-menu-col {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .mega-menu-heading {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 2px;
        padding-left: 8px;
    }

    .mega-menu-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .dropdown-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px;
        text-decoration: none;
        border-radius: var(--radius-md);
        transition: all var(--transition-fast) ease;
        white-space: normal;
    }

    .dropdown-link:hover,
    .dropdown-link:active {
        background: var(--bg-surface-hover);
    }

    .icon-box {
        width: 32px;
        height: 32px;
        background: var(--bg-icon-soft);
        border-radius: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all var(--transition-fast) ease;
    }

    .icon-box i,
    .icon-box svg,
    .icon-box .si {
        width: 16px !important;
        height: 16px !important;
        font-size: 16px !important;
        color: var(--primary);
    }

    .dropdown-link:hover .icon-box {
        background: var(--primary);
    }

    .dropdown-link:hover .icon-box i,
    .dropdown-link:hover .icon-box svg {
        color: var(--text-invert);
    }

    .link-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .link-title {
        font-size: 13px;
        font-weight: 600;
        color: var(--secondary);
    }

    .link-subtitle {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.3;
    }

    .mega-menu-usage,
    .mega-menu-sidebar {
        display: none !important;
    }

    /* Blurred Backdrop filter when mobile drawer is open */
    body:has(.nav-menu.mobile-active)::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 23, 42, 0.4);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 999;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity var(--transition-base);
    }

    body.mobile-menu-open {
        overflow: hidden !important;
        height: 100dvh !important;
        position: relative !important;
    }

    body:has(.nav-menu.mobile-active) .navbar {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--bg-surface) !important;
        box-shadow: none !important;
    }
}


@media (max-width:1024px) {
    .hero {
        padding: 48px var(--space-md) 0
    }

    .hero-container {
        flex-direction: column;
        text-align: center
    }

    .hero-content {
        max-width: 100%
    }

    .hero-image {
        justify-content: center
    }

    .hero-title {
        padding: 0;
        font-size: clamp(1.8rem, 4.5vw, 2.4rem)
    }

    .hero-subtitle {
        padding: 0
    }
}

@media (max-width:640px) {
    .hero {
        padding: 48px var(--space-sm) 0
    }

    .hero-title {
        padding: 0;
        font-size: clamp(1.4rem, 6.5vw, 1.8rem);
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 4vw, 0.95rem);
        padding: 0
    }
}

@media (max-width:768px) {
    .cp-window-body {
        flex-direction: column
    }

    .cp-sidebar {
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center;
        border-right: none !important;
        border-bottom: 1px solid var(--border-light);
        padding: 12px 0 !important
    }

    .cp-content>div[style*="display:grid"] {
        grid-template-columns: 1fr !important
    }
}

@media (max-width:768px) {
    .pr-guarantee {
        display: none !important;
    }

    .main-footer {
        padding: 76px 0 !important;
        margin-top: 40px !important
    }

    html::before,
    html::after {
        top: 44px !important;
    }

    html::before {
        left: 10px !important;
    }

    html::after {
        right: 10px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg)
    }

    .footer-col-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .footer-brand-desc {
        max-width: 400px
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center
    }

    .footer-bottom-left {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
    }

    .footer-bottom-links {
        justify-content: center !important;
    }
}

.pr-section {
    position: relative;
    background-color: var(--bg-surface);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='1' fill='%230f172a' fill-opacity='0.25'/%3E%3C/svg%3E");
    background-size: 12px 12px
}

.pr-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to right, var(--bg-surface) 0%, transparent 20%, transparent 80%, var(--bg-surface) 100%), linear-gradient(to bottom, var(--bg-surface) 0%, transparent 60%, transparent 90%, var(--bg-surface) 100%)
}

.pr-section>* {
    position: relative;
    z-index: 1
}

.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

@media (max-width:900px) {
    .pr-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto
    }
}

.pr-card {
    background: var(--white);
    border: 1.5px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative
}

.pr-card--featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 25px -5px rgba(67, 97, 238, 0.15), 0 8px 10px -6px rgba(67, 97, 238, 0.15);
}

.pr-card:hover {
    z-index: 100
}

.pr-card-top {
    margin-bottom: 24px
}

.pr-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left
}

.pr-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(67, 97, 238, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0
}

.pr-icon-box i,
.pr-icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px
}

.pr-title-block {
    flex: 1;
    min-width: 0
}

.pr-plan {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 4px
}

.pr-plan-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0
}

.pr-price-block {
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.pr-price-row-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px
}

.pr-price-row {
    display: flex;
    align-items: baseline;
    color: var(--text-main, var(--secondary))
}

.pr-currency {
    font-size: 1.5rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 4px;
    margin-right: 2px
}

.pr-amount {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em
}

.pr-period {
    font-size: 0.875rem;
    color: var(--text-muted, var(--text-muted));
    font-weight: 600;
    margin-left: 4px
}

.pr-save-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--green-600) !important;
    background: #dcfce7 !important;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block
}

.pricing-billing-sub {
    font-size: 0.8125rem;
    color: var(--text-muted)
}

.pr-sub-cross {
    text-decoration: line-through;
    color: var(--text-muted, var(--text-dim));
    font-weight: 500
}

.pr-sub-save {
    color: var(--green-600);
    font-weight: 700;
}

.pr-divider {
    height: 1px;
    background: var(--border-light);
    margin-bottom: 24px;
    width: 100%
}

.pr-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    flex: 1
}

.pr-feats li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-main);
    text-align: left
}

.pr-feats li i,
.pr-feats li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.pr-feats li .lucide-check {
    color: var(--emerald-500);
    stroke-width: 3px
}

.pr-feats li .lucide-circle-minus {
    color: var(--text-dim);
    opacity: 0.5;
    stroke-width: 2px
}

.pr-feats li.disabled {
    color: var(--text-dim);
    opacity: 0.6
}

.pr-feats li:not(.disabled) i,
.pr-feats li:not(.disabled) svg {
    color: var(--primary, var(--primary)) !important;
    stroke-width: 2.5px !important
}

.pr-feats li.disabled {
    color: var(--text-muted, var(--text-dim)) !important;
    opacity: 0.55 !important
}

.pr-feats li.disabled i,
.pr-feats li.disabled svg {
    color: var(--text-muted, var(--text-dim)) !important;
    opacity: 0.7 !important;
    stroke-width: 2px !important
}

.pr-tooltip-trigger i,
.pr-tooltip-trigger svg {
    color: var(--text-main, var(--secondary)) !important;
    stroke-width: 2px !important
}

.pr-tooltip-trigger img.feat-brand-icon,
.pr-tooltip-trigger svg.feat-brand-icon {
    width: 16px !important;
    height: 16px !important
}

.pr-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 44px;
    font-size: var(--fs-sm);
    color: var(--text-muted)
}

.pr-guarantee i,
.pr-guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
    stroke-width: 2px;
    flex-shrink: 0
}

.pricing-section {
    padding: 80px 20px;
    background: var(--bg-card)
}

.pr-btn-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: 1.5px solid transparent;
    margin-top: auto
}

.pr-btn-link--outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary) !important
}

.pr-btn-link--outline:hover {
    background: var(--primary-soft);
    color: var(--primary) !important
}

.pr-btn-link--filled {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important
}

.pr-btn-link--filled:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.25)
}

@media (max-width:900px) {
    .auth-main {
        padding: 0 !important;
        min-height: calc(100dvh - 100px) !important;
        display: flex !important;
        align-items: stretch !important;
        justify-content: center !important
    }

    .auth-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100% !important;
        flex: 1
    }

    .auth-wrapper {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        margin: 0;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        flex: 1
    }

    .auth-left {
        display: none !important
    }

    .auth-right {
        padding: 24px 24px 32px !important;
        width: 100%;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1
    }

    .auth-form-card {
        max-width: 100% !important;
        width: 100%
    }

    .auth-form-header {
        margin-bottom: 16px !important
    }

    .auth-features {
        align-items: flex-start
    }

    .auth-form {
        gap: 12px !important
    }

    .auth-form .form-group {
        margin-bottom: 0 !important;
        gap: 4px !important
    }

    .auth-form .form-label {
        margin-bottom: 0 !important;
        font-size: 11px !important
    }

    .auth-divider {
        margin: 10px 0 !important
    }

    .form-row-cols {
        grid-template-columns: 1fr !important;
        gap: 12px !important
    }

    .form-row-cols.auth-buttons-row {
        grid-template-columns: 1fr 1.5fr !important;
        gap: 10px !important
    }
}

@media (max-width:768px) {
    .domain-checkout-grid {
        grid-template-columns: 1fr
    }

    .dco-summary-card {
        position: static
    }

    .domain-search-inner button {
        padding: 14px 18px;
        font-size: 0.88rem
    }

    .result-card {
        flex-direction: column;
        align-items: flex-start
    }

    .result-right {
        width: 100%
    }

    .result-cart-btn,
    .result-transfer-btn {
        width: 100%;
        justify-content: center
    }

    .domain-sec-head h2 {
        font-size: 1.8rem
    }

    .tld-pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px
    }

    .domain-hero-trust {
        gap: 14px
    }
}




.pricing-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.pricing-tabs .tab-btn {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 600;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.01em
}

.pricing-tabs .tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white)
}

.pricing-tabs .tab-btn:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft, rgba(67, 97, 238, 0.06))
}

.more-plans-wrap {
    position: relative
}

.more-plans-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--border-light);
    background: var(--bg-surface);
    color: var(--text-muted);
    font-weight: 600;
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap
}

.more-plans-btn .more-plans-icon {
    width: 15px;
    height: 15px;
    color: var(--primary);
    flex-shrink: 0
}

.more-plans-btn .more-plans-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0
}

.more-plans-btn:hover,
.more-plans-btn.open {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft, rgba(67, 97, 238, 0.06))
}

.more-plans-btn.open .more-plans-chevron {
    transform: rotate(180deg)
}

.more-plans-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 520px;
    background: var(--bg-surface, var(--white));
    border: 1px solid var(--border-light);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 4px 16px rgba(67, 97, 238, 0.08);
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column
}

.more-plans-dropdown.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.mpd-tabs {
    display: flex;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    padding: 6px;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none
}

.mpd-tabs::-webkit-scrollbar {
    display: none
}

.mpd-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap
}

.mpd-tab-btn i,
.mpd-tab-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease
}

.mpd-tab-btn:hover {
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.03)
}

.mpd-tab-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 6px rgba(67, 97, 238, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    font-weight: 700
}

.mpd-tab-btn.active i,
.mpd-tab-btn.active svg {
    transform: scale(1.1)
}

.mpd-mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px
}

.more-plans-dropdown .dropdown-link {
    white-space: normal
}

@media (max-width:600px) {
    .more-plans-dropdown {
        width: calc(100vw - 32px);
        right: auto;
        left: 50%;
        transform: translateX(-50%) scale(0.97)
    }

    .more-plans-dropdown.open {
        transform: translateX(-50%) scale(1)
    }

    .mpd-mega-grid {
        grid-template-columns: 1fr;
        padding: 12px
    }
}

.billing-strip-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px
}

.billing-strip {
    display: inline-flex;
    align-items: stretch;
    background: var(--bg-surface, var(--white));
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    position: relative
}

.bs-divider {
    width: 1px;
    background: var(--border-light);
    flex-shrink: 0;
    transition: opacity 0.2s ease
}

.bs-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 12px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1
}

.bs-opt.active {
    background: var(--primary);
    z-index: 2
}

.bs-opt.active .bs-label {
    color: var(--white)
}

.bs-opt.active .bs-save {
    color: var(--white)
}

.bs-opt.active .bs-save.bs-save--muted {
    color: rgba(255, 255, 255, 0.85)
}

.bs-opt.active+.bs-divider,
.bs-divider:has(+ .bs-opt.active) {
    opacity: 0
}

.bs-opt:hover:not(.active) {
    background: var(--primary-soft, rgba(67, 97, 238, 0.05))
}

.bs-opt:hover:not(.active) .bs-label {
    color: var(--text-main)
}

.bs-opt:hover:not(.active) .bs-save {
    color: var(--primary)
}

.bs-opt:hover:not(.active) .bs-save.bs-save--muted {
    color: var(--text-muted)
}

.bs-label {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.18s ease
}

.bs-save {
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.18s ease
}

.bs-save--muted {
    font-weight: 600;
    transition: color 0.18s ease
}

.bs-opt:not(.active):not(:hover) .bs-label {
    color: var(--text-muted)
}

.bs-opt:not(.active):not(:hover) .bs-save {
    color: var(--text-muted)
}

.bs-opt:not(.active):not(:hover) .bs-save.bs-save--muted {
    color: var(--text-dim)
}

.bs-opt[data-period="triennial"]:not(.active):not(:hover) .bs-save {
    color: var(--primary)
}

@media (max-width:600px) {
    .bs-opt {
        padding: 10px 14px
    }

    .bs-label {
        font-size: 12px
    }

    .bs-save {
        font-size: 10px
    }
}

.pr-more-features-wrap {
    margin: 18px 0;
    border-top: 1.5px dashed var(--border-light);
    padding-top: 15px;
    text-align: center
}

.pr-more-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
    border-radius: 6px
}

.pr-more-toggle:hover {
    background: var(--primary-soft, rgba(67, 97, 238, 0.05));
    color: var(--primary-hover, var(--blue-600))
}

.pr-more-toggle i,
.pr-more-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1)
}

.pr-more-toggle.open i,
.pr-more-toggle.open svg {
    transform: rotate(180deg)
}

.pr-more-list {
    margin-top: 14px;
    text-align: left;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 0
}

.pr-more-title-section {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 4px
}

.pr-more-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pr-tooltip-trigger {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-main);
    width: fit-content
}

.pr-tooltip-trigger i,
.pr-tooltip-trigger svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.pr-tooltip-trigger span {
    border-bottom: 1.5px dotted transparent;
    transition: border-bottom-color 0.2s ease
}

.pr-tooltip-trigger:hover span {
    border-bottom-color: var(--primary)
}

.pr-tooltip-content {
    visibility: hidden;
    opacity: 0;
    width: 240px;
    background-color: var(--white);
    color: var(--text-main, var(--secondary));
    text-align: left;
    border-radius: 10px;
    padding: 12px 14px;
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%) translateX(10px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.2s;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    pointer-events: none;
    border: 1px solid var(--border-light, var(--border-light))
}

.pr-tooltip-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.pr-tooltip-content ul li {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main, var(--slate-800));
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4
}

.pr-tooltip-content ul li::before {
    content: "•";
    color: var(--primary, var(--primary));
    font-weight: bold;
    font-size: 14px;
    margin-right: 2px
}

.pr-tooltip-content::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -7px;
    border-width: 7px;
    border-style: solid;
    border-color: transparent var(--border-light, var(--border-light)) transparent transparent;
    z-index: 9998
}

.pr-tooltip-content::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent var(--white) transparent transparent;
    z-index: 9999
}

.pr-tooltip-trigger:hover .pr-tooltip-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(-50%) translateX(0)
}

.pr-card:last-child .pr-tooltip-content {
    left: auto;
    right: calc(100% + 15px);
    transform: translateY(-50%) translateX(-10px)
}

.pr-card:last-child .pr-tooltip-content::before {
    right: auto;
    left: 100%;
    border-color: transparent transparent transparent var(--border-light, var(--border-light))
}

.pr-card:last-child .pr-tooltip-content::after {
    right: auto;
    left: 100%;
    border-color: transparent transparent transparent var(--white)
}



.pr-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px
}

.pr-billing-opt {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted)
}

.pr-save-chip {
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em
}

.pr-pill {
    position: relative;
    display: inline-block;
    cursor: pointer
}

.pr-pill input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute
}

.pr-pill-track {
    display: block;
    width: 44px;
    height: 24px;
    background: var(--border-base);
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
    position: relative
}

.pr-pill-knob {
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-sm)
}

.pr-pill input:checked+.pr-pill-track {
    background: var(--primary)
}

.pr-pill input:checked+.pr-pill-track .pr-pill-knob {}



.snapshot-detail-box .lbl {
    font-size: 11px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.master-switcher-pills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 12px;
    background: var(--slate-100);
    padding: 8px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-light)
}

.switcher-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none
}

.switcher-pill:hover {
    background: rgba(255, 255, 255, 0.5)
}

.switcher-pill.active {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.02)
}

.switcher-pill .pill-ico {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s
}

.switcher-pill.active .pill-ico {
    transform: scale(1.05)
}

.switcher-pill .pill-ico svg {
    width: 18px;
    height: 18px
}

.orange-ico {
    background: rgba(255, 108, 44, 0.1);
    color: var(--orange-brand)
}

.blue-ico {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-500)
}

.reseller-ico {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange-500)
}

.switcher-pill .pill-info {
    display: flex;
    flex-direction: column
}

.switcher-pill .pill-info .title {
    font-size: 14px;
    font-weight: 700;
    color: var(--slate-800);
    line-height: 1.25
}

.switcher-pill .pill-info .subtitle {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px
}

@media (max-width: 991px) {
    .master-switcher-pills {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px !important;
    }

    .master-switcher-pills::-webkit-scrollbar {
        display: none;
    }

    .switcher-pill {
        flex: 0 0 auto !important;
    }
}

.cp-panels-master-container {
    position: relative;
    width: 100%
}

.master-panel-wrap {
    display: none;
    opacity: 0;

    transition: opacity 0.3s ease, transform 0.3s ease
}

.master-panel-wrap.active {
    display: block;
    opacity: 1;

}

.panel-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s
}

.panel-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--slate-100);
    flex-wrap: wrap;
    gap: 12px;
    background: #fafafb
}

.panel-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.panel-logo-box {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0
}

.panel-logo-box svg {
    width: 16px;
    height: 16px
}

.orange-grad {
    background: linear-gradient(135deg, var(--orange-brand), #ff9e74)
}

.panel-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px
}

.panel-breadcrumbs span {
    font-size: 13px;
    font-weight: 600
}

.p-bc-group {
    color: var(--text-muted)
}

.p-bc-plan {
    color: var(--text-muted)
}

.p-bc-domain {
    color: var(--secondary);
    font-weight: 800 !important
}

.p-bc-sep {
    color: var(--border-base);
    font-weight: bold
}

.panel-meta-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 8px
}

.p-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--slate-100);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 2.5px 8px;
    font-size: 11px;
    color: var(--slate-600);
    font-weight: 700
}

.p-chip svg {
    width: 10px;
    height: 10px
}

.p-chip.bg-slate {
    background: var(--bg-card)
}

.p-chip.status-active {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46
}

.p-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--emerald-500);
    display: inline-block
}

.p-status-dot.green-dot {
    background: var(--emerald-500)
}

.p-status-dot.red-dot {
    background: var(--red-500)
}

.p-status-dot.pulse {
    animation: statusBlink 1.4s infinite
}

.panel-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: right
}

.panel-renewal-box {
    display: flex;
    flex-direction: column
}

.p-ren-lbl {
    font-size: 9.5px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold
}

.p-ren-val {
    font-size: 13.5px;
    color: var(--slate-800);
    font-weight: 800
}

.panel-tabs-row {
    display: flex;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 0 16px;
    overflow-x: auto
}

.panel-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 12px 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.15s
}

.panel-tab-btn svg {
    width: 13.5px;
    height: 13.5px
}

.panel-tab-btn:hover {
    color: var(--secondary)
}

.panel-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    border-radius: 2px 2px 0 0;
    transition: background-color 0.15s
}

.panel-body-layout {
    display: flex;
    min-height: 480px;
    flex-wrap: wrap
}

.panel-sidebar {
    width: 230px;
    background: #fafafb;
    border-right: 1px solid var(--border-light);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0
}

@media (max-width:820px) {
    .panel-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-light)
    }
}

.panel-main-content {
    flex: 1;
    padding: 20px;
    min-width: 0
}

@media (min-width:821px) {
    .panel-body-layout {
        height: 560px;
        flex-wrap: nowrap
    }

    .panel-sidebar {
        height: 100%;
        overflow-y: auto;
        overflow-y: overlay;
        scrollbar-width: thin;
        scrollbar-color: rgba(15, 23, 42, 0.2) transparent
    }

    .panel-main-content {
        height: 100%;
        overflow-y: auto
    }

    .panel-main-content::-webkit-scrollbar {
        width: 6px;
        height: 6px
    }

    .panel-sidebar::-webkit-scrollbar {
        width: 4px;
        height: 4px
    }

    .panel-main-content::-webkit-scrollbar-track,
    .panel-sidebar::-webkit-scrollbar-track {
        background: transparent
    }

    .panel-main-content::-webkit-scrollbar-thumb {
        background: var(--border-base);
        border-radius: 3px
    }

    .panel-sidebar::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 2px
    }

    .panel-main-content::-webkit-scrollbar-thumb:hover {
        background: var(--text-dim)
    }

    .panel-sidebar:hover::-webkit-scrollbar-thumb {
        background: rgba(15, 23, 42, 0.2)
    }

    .panel-sidebar::-webkit-scrollbar-thumb:hover {
        background: rgba(15, 23, 42, 0.35)
    }
}

.sub-tab-content {
    display: none
}

.sub-tab-content.active {
    display: block
}

.sidebar-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.sidebar-group-title {
    font-size: 9.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    margin-bottom: 6px
}

.sidebar-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--slate-700);
    cursor: pointer;
    text-align: left;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
    transition: all 0.15s
}

.sidebar-action-btn:hover {
    background: var(--bg-card);
    border-color: var(--border-base);
    color: var(--secondary)
}

.sidebar-action-btn svg {
    width: 13px;
    height: 13px;
    color: var(--text-muted)
}

.sidebar-action-btn.orange-text {
    color: var(--orange-brand)
}

.sidebar-action-btn.blue-text {
    color: var(--blue-500)
}

.detail-row {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 6px 0;
    border-bottom: 1px solid var(--slate-100)
}

.detail-row:last-child {
    border-bottom: none
}

.detail-lbl {
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 700
}

.detail-val {
    font-size: 11.5px;
    color: var(--slate-700);
    font-weight: 700
}

.detail-val-with-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px
}

.detail-action-btn {
    background: transparent;
    border: none;
    padding: 2px;
    cursor: pointer;
    color: var(--text-muted)
}

.detail-action-btn:hover {
    color: var(--secondary)
}

.main-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.02)
}

.card-title-row {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.card-title-row svg {
    width: 12.5px;
    height: 12.5px
}

.compact-info-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 12.5px
}

.compact-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.compact-info-row .lbl {
    color: var(--text-muted);
    font-weight: 600
}

.compact-info-row .val {
    color: var(--slate-800);
    font-weight: 700
}

.content-grid {
    display: grid;
    gap: 16px
}

.content-grid.g-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

.content-grid.g-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

.content-grid.g-4 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr))
}

.usage-bar-group {
    margin-bottom: 11px
}

.usage-lbl-row {
    display: flex;
    justify-content: space-between;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--slate-600);
    margin-bottom: 4px
}

.usage-lbl-row .val {
    font-weight: 700;
    color: var(--secondary)
}

.usage-bar-wrap {
    height: 6px;
    background: var(--slate-100);
    border-radius: 4px;
    overflow: hidden
}

.usage-bar {
    height: 100%;
    border-radius: 4px
}

.usage-bar.orange {
    background: linear-gradient(90deg, var(--orange-brand), #ff9e74)
}

.usage-bar.blue {
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400))
}

.usage-bar.red {
    background: linear-gradient(90deg, var(--red-500), var(--red-400))
}

.summary-count-box .num {
    font-size: 20px;
    font-weight: 900;
    display: block;
    line-height: 1.1
}

.summary-count-box .lbl {
    font-size: 10.5px;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 2px;
    display: block
}

.flex-2 {
    flex: 2
}

.flex-3 {
    flex: 3
}

.panel-input,
.panel-select {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12.5px;
    color: var(--secondary);
    width: 100%;
    font-family: inherit
}

.panel-input:focus,
.panel-select:focus {
    outline: none;
    border-color: #a5b4fc;
    box-shadow: 0 0 0 3px rgba(165, 180, 252, 0.15)
}

.input-addon-group {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-card)
}

.input-addon-group .panel-input {
    border: none;
    background: transparent;
    flex: 1
}

.input-addon-group .panel-input:focus {
    box-shadow: none
}

.input-addon {
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 11.5px;
    font-weight: 700;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--border-light)
}

.panel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 16px;
    transition: all 0.15s;
    font-family: inherit;
    text-decoration: none
}

.panel-btn svg {
    width: 13px;
    height: 13px
}

.panel-table-responsive {
    width: 100%;
    overflow-x: auto
}

.panel-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left
}

.panel-table th {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
    padding: 10px 12px;
    border-bottom: 2px solid var(--slate-100)
}

.panel-table td {
    padding: 12px;
    font-size: 12.5px;
    color: var(--slate-700);
    border-bottom: 1px solid var(--slate-100);
    vertical-align: middle
}

.panel-table tr:last-child td {
    border-bottom: none
}

.table-action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px
}

.table-action-btn:hover {
    text-decoration: underline
}

.table-action-sep {
    color: var(--border-base);
    font-size: 11px;
    margin: 0 2px
}

.p-badge-type {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block
}

.p-badge-type.main {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe
}

.p-badge-type.backup {
    background: var(--green-50);
    color: var(--green-800);
    border: 1px solid #bbf7d0
}

.pass-blur {
    filter: blur(4.5px);
    cursor: pointer;
    transition: filter 0.15s;
    user-select: none
}

.pass-blur.show {
    filter: none
}

.red-text {
    color: var(--red-500)
}

.orange-text {
    color: var(--orange-brand)
}

.blue-text {
    color: var(--blue-500)
}

.wp-badge-status.ssl {
    background: var(--green-50);
    color: var(--green-800)
}

.p-slider.round {
    border-radius: 18px
}

.p-slider.round:before {
    border-radius: 50%
}

.vps-stat-box .ico {
    margin-bottom: 6px
}

.vps-stat-box .ico svg {
    width: 20px;
    height: 20px
}

.vps-stat-box .num {
    font-size: 24px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.1;
    display: block
}

.vps-stat-box .num .unit {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim)
}

.vps-stat-box .lbl {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 700;
    margin-top: 4px;
    display: block
}

.metrics-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 9.5px;
    font-weight: 800;
    color: var(--green-600);
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.metrics-live-badge .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green-500);
    display: inline-block;
    animation: statusBlink 1.4s infinite
}

.metrics-live-badge.blue {
    color: var(--blue-500)
}

.metrics-live-badge.blue .dot {
    background: var(--blue-500)
}

.cp-section {
    position: relative;
    background-color: var(--bg-surface);
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='1' fill='%230f172a' fill-opacity='0.25'/%3E%3C/svg%3E");
    background-size: 12px 12px;
    font-family: 'Outfit', sans-serif
}

.cp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(to right, var(--bg-surface) 0%, transparent 20%, transparent 80%, var(--bg-surface) 100%), linear-gradient(to bottom, var(--bg-surface) 0%, transparent 60%, transparent 90%, var(--bg-surface) 100%)
}

.cp-container {
    max-width: 1280px !important;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cp-mb-20 {
    margin-bottom: 20px
}

.cp-no-border {
    border-bottom: none !important
}

.cp-pad-bottom-0 {
    padding-bottom: 0 !important
}

.cp-eye-icon {
    width: 12px;
    height: 12px
}

.cp-w-progress-1 {
    width: 1%
}

.cp-interactive-window {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.cp-window-header {
    display: flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg)
}

.cp-window-body {
    display: flex;
    flex: 1
}

.panel-intro-text {
    margin-bottom: 8px
}

.panel-price-divider {
    height: 20px;
    width: 1px;
    background: var(--border-base)
}

.panel-price-box {
    display: flex;
    align-items: baseline;
    gap: 2px
}

.cp-badge {
    display: none
}

.cp-w-100 {
    width: 100%
}

.cp-h-38 {
    height: 38px
}

.cp-nowrap {
    white-space: nowrap
}

.cp-w-progress-15 {
    width: 15%
}

.cp-w-progress-8 {
    width: 8.5%
}

.cp-w-progress-24 {
    width: 24%
}

.cp-w-progress-45 {
    width: 45%
}

.cp-w-progress-62 {
    width: 62.5%
}

.cp-w-progress-12 {
    width: 12%
}

.cp-w-progress-8-2 {
    width: 8.2%
}

.cp-w-progress-4-5 {
    width: 4.5%
}

.cp-mb-0 {
    margin-bottom: 0 !important
}

.cp-mb-18 {
    margin-bottom: 18px !important
}

.cp-font-13-5 {
    font-size: 13.5px !important
}

.cp-font-16 {
    font-size: 16px !important
}

.cp-font-12-5 {
    font-size: 12.5px !important
}

.cp-flag-icon {
    width: 14px;
    height: 10.5px;
    border-radius: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px
}

.cp-flag-icon-simple {
    width: 14px;
    height: 10.5px;
    border-radius: 1px
}

.cp-flex-gap-6 {
    display: flex;
    gap: 6px
}

.cp-flex-align-center-gap-5 {
    display: flex;
    align-items: center;
    gap: 5px
}

.cp-icon-12 {
    width: 12px;
    height: 12px
}

.cp-icon-rose-20 {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    color: var(--rose-800) !important
}

.cp-icon-green-20 {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    color: var(--green-800) !important
}

.cp-mt-12-w-100 {
    margin-top: 12px !important;
    width: 100% !important
}

.cp-bg-rose {
    background: var(--red-100-soft) !important
}

.cp-warning-text-simple {
    font-size: 12.5px !important;
    color: var(--rose-800) !important;
    margin: 0 !important
}

.cp-text-rose-13 {
    font-size: 13px !important;
    color: var(--rose-800) !important
}

.cp-text-green-13-5 {
    font-size: 13.5px !important;
    color: var(--green-800) !important
}

.cp-label-vps-select {
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 12px !important;
    color: var(--sub) !important
}

.cp-letter-spacing-0-5 {
    letter-spacing: 0.5px !important
}

.cp-title-rescue-ssh {
    font-size: 11px !important;
    margin-bottom: 8px !important
}

.cp-sub-text-mb-12 {
    font-size: 13px !important;
    color: var(--sub) !important;
    margin-bottom: 12px !important
}

.cp-sub-text-mb-18 {
    font-size: 13.5px !important;
    color: var(--sub) !important;
    margin-bottom: 18px !important
}

.cp-sub-text-mb-14 {
    font-size: 13px !important;
    color: var(--sub) !important;
    margin-bottom: 14px !important
}

.cp-padding-48-24 {
    padding: 48px 24px !important
}

.cp-margin-auto-mb-18 {
    margin: 0 auto 18px !important
}

.cp-vps-rebuild-header-desc {
    font-size: 13px !important;
    margin: 0 !important
}

/* ==========================================================================
   Corporate & Legal Pages Layout Styles
   ========================================================================== */

/* Minimal Page Header */
.minimal-page-header {
    background: linear-gradient(to bottom, #ffffff 0%, #f4f6fa 100%);
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 50px;
}

.minimal-page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1400px;
    height: 700px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.04) 0%, rgba(148, 25, 255, 0.02) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.minimal-page-header .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.minimal-page-header .breadcrumbs {
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--slate-500);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.minimal-page-header .breadcrumbs a {
    color: var(--slate-600);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.minimal-page-header .breadcrumbs a:hover {
    color: var(--primary);
}

.minimal-page-header .breadcrumbs span {
    color: var(--slate-400);
}

.minimal-page-header h1 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin: 0 0 16px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.minimal-page-header .text-highlight {
    background: linear-gradient(120deg, var(--primary) 20%, var(--accent) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 6s linear infinite;
}

.minimal-page-header p {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 60px 0;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--border-light);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.1));
    pointer-events: none;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-text h2 {
    margin-bottom: 24px;
    font-size: var(--fs-3xl);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15.5px;
}

.values-section {
    background: linear-gradient(to bottom, #fdfeff 0%, var(--slate-50) 100%);
    padding: 90px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.03);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: rgba(99, 102, 241, 0.07);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all var(--transition-base);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05) rotate(3deg);
}

.value-icon svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--secondary);
}

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

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
    text-align: center;
}

.stat-item {
    background: var(--white);
    padding: 35px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Contact Us Layout */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    margin: 60px 0;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f9 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.04);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h2 {
    font-size: var(--fs-2xl);
    margin-bottom: 16px;
    color: var(--secondary);
    font-weight: 800;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: all var(--transition-base);
}

.contact-method:hover .contact-icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-details h3 {
    font-size: 15.5px;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--secondary);
}

.contact-details p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-details a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(67, 97, 238, 0.2);
    transition: all var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

.contact-form-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-xl);
    padding: 50px;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--text-main);
    transition: all 0.3s ease;
    background: var(--slate-50);
}

.form-control::placeholder {
    color: var(--slate-400);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    font-size: 12px;
    color: var(--error);
    margin-top: 8px;
    display: block;
    font-weight: 600;
}

/* Timeline / Narrative Story Layout */
.story-timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

.story-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, transparent, var(--border-light) 10%, var(--border-light) 90%, transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-container {
    padding: 15px 50px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border: 4px solid var(--primary);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.15);
}

.timeline-container.left::after {
    right: -12px;
    left: auto;
}

.timeline-container.right::after {
    left: -12px;
    right: auto;
}

.timeline-container:hover::after {
    transform: scale(1.2);
    background-color: var(--primary);
    box-shadow: 0 0 0 8px rgba(67, 97, 238, 0.25);
}

.timeline-container.left {
    left: 0;
}

.timeline-container.right {
    left: 50%;
}

.timeline-content {
    padding: 35px;
    background-color: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.02);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
}

.timeline-year {
    display: inline-block;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.timeline-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* NVMe Team Directory Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 60px 0;
}

.team-card {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.03);
}

.team-card:hover {
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
}

.team-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.15);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-avatar {
    transform: scale(1.08) rotate(-2deg);
}

.team-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px dashed rgba(99, 102, 241, 0.25);
    border-radius: 50%;
    animation: rotateDashed 20s linear infinite;
    opacity: 0.8;
}

@keyframes rotateDashed {
    100% {
        transform: rotate(360deg);
    }
}

.avatar-sk {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.avatar-tr {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.avatar-pn {
    background: linear-gradient(135deg, #db2777 0%, #f43f5e 100%);
}

.avatar-ap {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.avatar-ng {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.avatar-vs {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.team-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--secondary);
}

.team-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    background: rgba(67, 97, 238, 0.06);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.team-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.team-socials a {
    color: var(--slate-400);
    transition: color var(--transition-fast), transform var(--transition-fast);
    font-size: 16px;
}

.team-socials a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Legal Documents & Policies Layout */
.legal-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
    background: var(--slate-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    box-shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.02);
}

.legal-sidebar h3 {
    font-size: 12px;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legal-nav a {
    font-size: 14px;
    color: var(--slate-600);
    text-decoration: none;
    transition: all var(--transition-fast);
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-weight: 500;
}

.legal-nav a:hover {
    color: var(--primary);
    background: rgba(67, 97, 238, 0.05);
}

.legal-nav a.active,
.legal-nav a:active {
    color: var(--primary);
    background: rgba(67, 97, 238, 0.08);
    font-weight: 600;
}

.legal-content {
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-xl);
    padding: 56px;
    box-shadow: 0 20px 50px -15px rgba(15, 23, 42, 0.05);
}

.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 35px;
    border-bottom: 2px solid var(--slate-100);
    padding-bottom: 20px;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.legal-section p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--slate-600);
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section strong {
    color: var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for new layouts */
@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .legal-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .legal-sidebar {
        display: none;
    }

    .minimal-page-header h1 {
        font-size: 2.25rem;
    }

    .legal-content {
        padding: 40px;
    }
}

@media screen and (max-width: 768px) {
    .story-timeline::after {
        left: 20px;
        transform: none;
    }

    .timeline-container {
        width: 100%;
        padding-left: 45px;
        padding-right: 10px;
    }

    .timeline-container::after {
        left: 10px !important;
        right: auto !important;
        top: 32px;
    }

    .timeline-container.left,
    .timeline-container.right {
        left: 0;
    }

    .timeline-content {
        padding: 25px;
    }

    .minimal-page-header {
        padding: 60px 20px 50px;
    }
}

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

    .stats-strip {
        grid-template-columns: 1fr;
    }

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

    .stat-item {
        padding: 25px 15px;
    }

    .contact-form-card {
        padding: 30px 24px;
    }
}

/* Remove dot patterns (vertical side lines and horizontal section dividers) for minimal company pages */
html:has(body.minimal-page)::before,
html:has(body.minimal-page)::after,
html:has(body .minimal-page-header)::before,
html:has(body .minimal-page-header)::after {
    display: none !important;
}

body.minimal-page section::after,
body:has(.minimal-page-header) section::after {
    display: none !important;
}

/* Lazy Loaded Sections Styles */
.lazy-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* Unified Desktop Mega Menu Dropdown Styles */
@media (min-width: 1025px) {

    /* Hide the default nested dropdown contents in desktop view except for Company */
    .nav-item.has-dropdown:not([data-category="company"]) .dropdown-content:not(.desktop-only) {
        display: none !important;
    }

    /* Set Company nav item as relative boundary for its dropdown */
    .nav-item.has-dropdown[data-category="company"] {
        position: relative !important;
    }

    /* Style for Company's separate individual narrow dropdown on desktop */
    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only {
        display: block !important;
        position: absolute;
        top: calc(100% + 12px) !important;
        left: 50%;
        transform: translateX(-50%);
        width: 310px !important;
        /* Increased width to prevent text truncation */
        min-width: 310px !important;
        max-width: 310px !important;
        height: auto !important;
        background: var(--bg-surface) !important;
        border: 1px solid rgba(15, 23, 42, 0.08) !important;
        border-top: none !important;
        border-radius: 0 0 var(--radius-xl) var(--radius-xl) !important;
        box-shadow: var(--shadow-premium) !important;
        clip-path: inset(0 -50px -50px -50px) !important;
        padding: 16px 8px !important;
        box-sizing: border-box !important;
        z-index: 102;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.2s ease !important;
    }

    .nav-item.has-dropdown[data-category="company"].active .dropdown-content.desktop-only,
    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only.active {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Transparent bridge to connect Company nav tab with dropdown and prevent accidental closure */
    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 30px;
        background: transparent;
        pointer-events: auto;
    }

    /* Reformat Company dropdown inner elements to a single vertical column stack */
    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only .dropdown-content-inner {
        display: flex;
        flex-direction: column;
        height: auto !important;
        width: 100% !important;
        padding: 0 !important;
        transform: none !important;
        transition: none !important;
    }

    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only .mega-menu-main {
        display: flex;
        flex-direction: column;
        gap: 2px;
        padding: 0 !important;
        width: 100% !important;
    }

    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only .mega-menu-col {
        min-width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only .mega-menu-heading {
        display: none !important;
        /* Hide structural headers in narrow list */
    }

    .nav-item.has-dropdown[data-category="company"] .dropdown-content.desktop-only .dropdown-link {
        padding: 8px 12px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Target the desktop-only unified menu */
    .dropdown-content.desktop-only {
        display: block !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-width: 1312px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 102;
        opacity: 0;
        transition: opacity 0.2s ease !important;
        /* Opacity only, no scale/translate */
    }

    .dropdown-content.desktop-only.active {
        opacity: 1;
        pointer-events: auto;
    }

    /* Transparent bridge to connect nav tabs with unified dropdown and prevent accidental closure */
    .dropdown-content.desktop-only::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 0;
        right: 0;
        height: 24px;
        background: transparent;
        pointer-events: auto;
    }

    #unified-desktop-menu .dropdown-link {
        white-space: normal !important;
    }

    #unified-desktop-menu .link-info {
        min-width: 0;
    }

    .unified-mega-menu-inner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 0 4px var(--s-32);
        height: 400px !important;
        align-items: stretch;
        box-sizing: border-box;
        background: transparent;
    }

    /* Columns within the unified dropdown */
    .mega-menu-col-unified {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 16px 20px 24px;
        border-right: 1px solid rgba(15, 23, 42, 0.04);
        transition: opacity 0.25s ease, filter 0.25s ease;
        opacity: 0.35;
        /* Muted by default */
        filter: grayscale(20%);
    }

    .mega-menu-col-unified:last-child {
        border-right: none;
    }

    /* Highlighted active column state */
    .mega-menu-col-unified.active {
        opacity: 1;
        filter: none;
    }

    /* Column Headings */
    .mega-menu-col-unified .col-header {
        padding-top: 14px;
        border-top: 3px solid transparent;
        margin-bottom: 12px;
        transition: border-color 0.25s ease;
    }

    .mega-menu-col-unified.active .col-header {
        border-top-color: var(--primary);
        /* Active blue border */
    }

    .mega-menu-col-unified .col-title {
        font-family: var(--font-sans);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--text-muted);
        transition: color 0.25s ease;
    }

    .mega-menu-col-unified.active .col-title {
        color: var(--primary);
        /* Highlighted text color */
    }

    /* Mute icons as well in non-active columns */
    .dropdown-content.desktop-only.active .mega-menu-col-unified:not(.active) .icon-box {
        background: rgba(15, 23, 42, 0.03) !important;
        opacity: 0.4 !important;
        filter: grayscale(100%) !important;
    }

    .dropdown-content.desktop-only.active .mega-menu-col-unified:not(.active) .icon-box svg {
        color: var(--text-muted) !important;
    }

    /* Remove translate/transform animations from container inner layout */
    .dropdown-content-inner {
        transform: none !important;
        transition: none !important;
    }

    /* Keep nav capsules active on hover of corresponding unified categories */
    .nav-item.active .nav-link {
        color: var(--primary) !important;
    }

    .nav-item.active .nav-link::before {
        width: 100% !important;
        opacity: 1 !important;
    }
}

/* Responsive sizing for unified mega menu on intermediate desktop displays */
@media (min-width: 1025px) and (max-width: 1300px) {
    .mega-menu-bg {
        height: 380px !important;
    }

    .unified-mega-menu-inner {
        padding: 0 4px var(--s-24) !important;
        height: 380px !important;
    }



    .mega-menu-col-unified {
        padding: 12px 14px 18px !important;
        gap: 8px !important;
    }

    .mega-menu-col-unified .col-header {
        margin-bottom: 8px !important;
        padding-top: 10px !important;
    }

    #unified-desktop-menu .dropdown-link {
        padding: 6px 8px !important;
        gap: 10px !important;
    }

    #unified-desktop-menu .icon-box {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
    }

    #unified-desktop-menu .icon-box svg,
    #unified-desktop-menu .icon-box i {
        width: 16px !important;
        height: 16px !important;
    }

    #unified-desktop-menu .link-title {
        font-size: 13px !important;
    }

    #unified-desktop-menu .link-subtitle {
        font-size: 11px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1180px) {
    .mega-menu-bg {
        height: 340px !important;
    }

    .unified-mega-menu-inner {
        height: 340px !important;
    }



    .mega-menu-col-unified {
        padding: 10px 8px 12px !important;
        gap: 4px !important;
    }

    #unified-desktop-menu .dropdown-link {
        padding: 4px 6px !important;
        gap: 6px !important;
    }

    #unified-desktop-menu .icon-box {
        width: 28px !important;
        height: 28px !important;
        border-radius: 6px !important;
    }

    #unified-desktop-menu .icon-box svg,
    #unified-desktop-menu .icon-box i {
        width: 14px !important;
        height: 14px !important;
    }

    #unified-desktop-menu .link-title {
        font-size: 12px !important;
    }

    #unified-desktop-menu .link-subtitle {
        display: none !important;
        /* Hide subtitle completely on small desktop displays */
    }
}

@media (max-width: 1024px) {

    /* Hide the unified desktop menu on mobile/tablet */
    #unified-desktop-menu {
        display: none !important;
    }
}