:root {
    --bg-body: #f1f5f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.95);
    --primary: #0096d2;
    --primary-dark: #007bb0;
    --primary-light: #e0f2fe;
    --secondary: #6366f1;
    --accent: #10b981;
    --text-main: #0f172a;
    --text-body: #334155;
    --text-muted: #4b5563;
    --border-color: #cbd5e1;
    --border-focus: #94a3b8;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --header-height: 80px;
    --container-width: 1240px
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2
}

.section-padding {
    padding: 100px 0;
    position: relative
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes float {
    0% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1)
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    background: linear-gradient(-45deg, #f8fafc, #eef2ff, #e0e7ff, #f8fafc);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* Subtle pattern overlay removed as per user request */
    pointer-events: none
}

.navbar {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05)
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    letter-spacing: -0.5px
}

.logo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    color: white;
    font-size: 1.2rem
}

.nav-links {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center
}

.nav-links>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer
}

.nav-links>li::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent
}

.nav-links>li>a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s
}

.nav-links>li>a i.dropdown-arrow {
    font-size: 0.75rem;
    margin-top: 1px;
    transition: transform 0.3s;
    color: var(--text-muted)
}

.nav-links>li:hover>a {
    background: var(--bg-body);
    color: var(--primary)
}

.nav-links>li:hover>a i.dropdown-arrow {
    transform: rotate(180deg);
    color: var(--primary)
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    z-index: 10000
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    transition: background 0.2s;
    border: 1px solid transparent
}

.dropdown-item:hover {
    background: var(--bg-body);
    border-color: #e2e8f0
}

.dropdown-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    border-radius: 8px;
    font-size: 1.1rem;
    border: 1px solid #f1f5f9
}

.dropdown-item:hover i {
    background: var(--primary);
    color: white;
    border-color: var(--primary)
}

.dropdown-item div {
    display: flex;
    flex-direction: column
}

.dropdown-item strong {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700
}

.dropdown-item span {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3)
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4)
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05)
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1)
}

.btn-text {
    background: none;
    color: var(--text-body);
    padding: 5px 10px
}

.btn-text:hover {
    color: var(--primary)
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main)
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary)
}

.btn-full {
    width: 100%
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem
}

.breadcrumbs {
    padding: 100px 0 20px;
    color: var(--text-muted);
    font-size: 0.9rem
}

.breadcrumbs a {
    color: var(--text-body);
    font-weight: 500
}

.breadcrumbs a:hover {
    color: var(--primary)
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--border-color)
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm)
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.05rem
}

.accordion-header i {
    color: var(--text-muted);
    transition: transform 0.3s
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--text-body);
    display: none;
    border-top: 1px solid #f1f5f9;
    margin-top: -5px;
    padding-top: 15px
}

.accordion-item.active .accordion-body {
    display: block
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary)
}

.tabs-container {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: #f8fafc
}

.tab-btn {
    flex: 1;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.2s;
    border-right: 1px solid var(--border-color)
}

.tab-btn:last-child {
    border-right: none
}

.tab-btn:hover {
    background: #f1f5f9;
    color: var(--text-main)
}

.tab-btn.active {
    background: white;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    margin-bottom: -1px
}

.tab-content {
    padding: 40px;
    display: none
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease
}

.comparison-table-wrapper {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03)
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    text-align: left;
    min-width: 700px
}

.comparison-table th {
    background: #f1f5f9;
    padding: 20px 25px;
    color: var(--text-main);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--border-color)
}

.comparison-table td {
    padding: 18px 25px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s
}

.comparison-table tr:hover td {
    background: #f8fbff
}

.comparison-table tr:last-child td {
    border-bottom: none
}

.comparison-table td.highlight {
    color: var(--primary);
    font-weight: 700
}

.comparison-table i {
    color: var(--accent)
}

.comparison-table i.fa-xmark {
    color: #ef4444
}

.dense-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.feature-box {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02)
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02)
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), white);
    color: var(--primary);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    transition: all 0.3s
}

.feature-box:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg)
}

.feature-box h3 {
    font-size: 1.1rem
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-muted)
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px
}

.steps-line {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    z-index: 0;
    display: none;
    overflow: hidden
}

.steps-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    background-size: 50% 100%;
    transform: translateX(-100%);
    animation: flowLine 3s ease-in-out infinite
}

@keyframes flowLine {
    0% {
        transform: translateX(-100%)
    }

    50% {
        transform: translateX(100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 200px
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05)
}

.steps-container:hover .step-item:nth-child(2) .step-number {
    animation: popIn 0.5s forwards;
    animation-delay: 0.1s
}

.steps-container:hover .step-item:nth-child(3) .step-number {
    animation: popIn 0.5s forwards;
    animation-delay: 0.8s
}

.steps-container:hover .step-item:nth-child(4) .step-number {
    animation: popIn 0.5s forwards;
    animation-delay: 1.5s
}

@keyframes popIn {
    0% {
        transform: scale(1);
        border-color: var(--border-color)
    }

    50% {
        transform: scale(1.2);
        border-color: var(--primary);
        background: var(--primary-light);
        color: var(--primary)
    }

    100% {
        transform: scale(1.1);
        border-color: var(--primary);
        background: white;
        color: var(--primary);
        box-shadow: 0 0 0 4px var(--primary-light)
    }
}

.step-item:hover .step-number {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2)
}

.step-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    transition: color 0.3s
}

.step-item:hover h4 {
    color: var(--primary)
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted)
}

@media (min-width:768px) {
    .steps-line {
        display: block
    }
}

.hero {
    padding-top: 130px;
    padding-bottom: 100px;
    background: linear-gradient(-45deg, #f8fafc, #eef2ff, #e0e7ff, #f8fafc);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    position: relative;
    overflow: hidden
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out
}

.hero-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
    border: 1px solid #dbeafe
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--text-main)
}

.hero-content h1 span {
    display: inline-block;
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(0, 150, 210, 0.1);
    font-weight: 800
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 48px
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color)
}

.stat-item {
    display: flex;
    flex-direction: column
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 5px
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color)
}

@media (max-width:991px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-content p {
        margin: 0 auto 30px
    }

    .hero-btns {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }
}

.glass-status-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite
}

.glass-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #0096d2)
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px
}

.status-live {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 20px
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    position: relative
}

.pulsing-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse 1.5s cubic-bezier(0, 0, 0.2, 1) infinite
}

@keyframes pulse {

    75%,
    100% {
        transform: scale(2);
        opacity: 0
    }
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.status-location {
    display: flex;
    align-items: center;
    gap: 12px
}

.loc-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05)
}

.loc-info h4 {
    font-size: 1rem;
    margin-bottom: 2px
}

.loc-info span {
    font-size: 0.8rem;
    color: var(--text-muted)
}

.latency-badge {
    font-family: monospace;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px
}

.latency-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981
}

.status-graph {
    margin-top: 25px;
    height: 60px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    opacity: 0.5
}

.bar {
    flex: 1;
    background: var(--primary);
    border-radius: 2px 2px 0 0;
    animation: graphGrow 2s ease infinite alternate
}

@keyframes graphGrow {
    0% {
        height: 20%
    }

    100% {
        height: 80%
    }
}

.pricing-header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%
}

input:checked+.slider {
    background-color: var(--primary)
}

input:checked+.slider:before {
    transform: translateX(26px)
}

.discount-badge {
    background: #fee2e2;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05)
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1)
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
    transform: scale(1.05);
    z-index: 2
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.2)
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%
}

.pricing-category {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 20px
}

.pricing-category.active {
    display: flex
}

.pricing-card.horizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    padding: 25px 35px;
    gap: 30px;
    text-align: left;
    min-height: auto;
    margin: 0
}

.pricing-card.horizontal .card-header {
    flex: 1.5;
    text-align: left;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pricing-card.horizontal .price {
    margin-top: 10px
}

.pricing-card.horizontal .features-list {
    flex: 2;
    margin: 0;
    border-top: none;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px
}

.pricing-card.horizontal .features-list li {
    margin-bottom: 0;
    font-size: 0.9rem
}

.pricing-card.horizontal .card-actions-wrapper {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    min-width: 200px;
    justify-content: center
}

.processor-selector {
    width: 100%;
    margin-bottom: 5px
}

.processor-selector label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px
}

.processor-select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-main);
    background: #f8fafc;
    cursor: pointer;
    outline: none;
    transition: all 0.2s
}

.processor-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light)
}

.server-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap
}

.server-tab-btn {
    padding: 12px 24px;
    border-radius: 50px;
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    box-shadow: var(--shadow-sm)
}

.server-tab-btn i {
    font-size: 1.1rem
}

.server-tab-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary)
}

.server-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3)
}

.pricing-category {
    display: none;
    animation: fadeIn 0.5s ease
}

.pricing-category.active {
    display: block
}

@media (max-width:991px) {
    .pricing-card.horizontal {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 20px
    }

    .pricing-card.horizontal .card-header {
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 5px
    }

    .pricing-card.horizontal .features-list {
        grid-template-columns: 1fr;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
        margin-bottom: 5px
    }

    .pricing-card.horizontal .card-actions-wrapper {
        align-items: stretch
    }
}

.visual-card {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.blog-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary)
}

.blog-img {
    height: 200px;
    background: #cbd5e1;
    position: relative
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary)
}

.blog-content {
    padding: 25px
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    gap: 10px
}

.blog-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4
}

.blog-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem
}

footer {
    background: white;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-links li {
    margin: 10px 0
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px
}

@media (max-width:1024px) {
    .nav-links {
        display: none
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-main)
    }

    .mobile-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        z-index: 998;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s;
        display: flex;
        border-top: 1px solid var(--border-color)
    }

    .mobile-menu.active {
        transform: translateX(0)
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-visual {
        margin-top: 40px;
        display: none
    }

    .steps-container {
        flex-direction: column;
        gap: 40px
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding-top: 80px;
    border-top: 1px solid #1e293b;
    margin-top: auto
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px
}

.footer-col h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: #94a3b8;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px)
}

.newsletter-box {
    position: relative;
    margin-bottom: 20px
}

.newsletter-box input {
    width: 100%;
    padding: 14px 18px;
    padding-right: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #334155;
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.3s
}

.newsletter-box input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1)
}

.newsletter-box button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.2s
}

.newsletter-box button:hover {
    background: var(--primary-dark)
}

.social-links {
    display: flex;
    gap: 12px
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: all 0.3s
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: none;
    padding: 15px 0;
    font-size: 0.9rem;
    background: transparent;
    margin-bottom: 0
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.payment-methods {
    display: flex;
    gap: 15px;
    opacity: 0.6
}

@media (max-width:991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }
}

@media (max-width:576px) {
    .footer-container {
        grid-template-columns: 1fr
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 20px;
        text-align: center
    }
}

.domain-search-wrapper {
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 750px;
    margin: 0 auto 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.domain-search-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12)
}

.domain-search-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    padding: 10px 20px;
    color: var(--text-main);
    background: transparent
}

.domain-search-wrapper input::placeholder {
    color: #94a3b8
}

.domain-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.domain-tag {
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03)
}

.domain-tag:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px)
}

.domain-tag span {
    color: var(--primary);
    font-weight: 800;
    margin-left: 5px
}

.feature-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.modern-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s
}

.modern-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.15)
}

.modern-card:hover::before {
    opacity: 1
}

.card-icon-circle {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary);
    border: 1px solid #e2e8f0;
    transition: all 0.4s
}

.modern-card:hover .card-icon-circle {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3)
}

.modern-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main)
}

.modern-card p {
    font-size: 0.95rem;
    color: var(--text-muted)
}

.glass-table-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05)
}

.glass-table {
    width: 100%;
    border-collapse: collapse
}

.glass-table thead th {
    background: #f8fafc;
    padding: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    border-bottom: 2px solid #e2e8f0
}

.glass-table td {
    padding: 25px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    transition: background 0.2s
}

.glass-table tr:hover td {
    background: #fdfeff
}

.tld-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-main);
    background: #f1f5f9;
    padding: 10px 20px;
    border-radius: 12px;
    min-width: 100px
}

.status-valid {
    background: #dcfce7;
    color: #16a34a
}

.status-promo {
    background: #fee2e2;
    color: #dc2626
}

.status-special {
    background: #dbeafe;
    color: #0096d2
}

.status-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase
}

.pulsing-underscore {
    animation: blink 1s infinite;
    font-weight: bold;
    color: #22c55e
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

.speed-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.pricing-card {
    display: flex;
    flex-direction: column
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed var(--border-color)
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-main)
}

.pricing-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px
}

.pricing-card .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: var(--text-main);
    font-weight: 800
}

.pricing-card .currency {
    font-size: 1.5rem;
    margin-right: 4px;
    color: var(--text-main)
}

.pricing-card .amount {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--text-main);
    letter-spacing: -2px
}

.pricing-card .period {
    color: var(--text-muted);
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 2px;
    font-weight: 500
}

.features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-body)
}

.features-list li i {
    color: var(--accent);
    background: #dcfce7;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0
}

.features-list li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7
}

.features-list li.disabled i {
    background: #f1f5f9;
    color: var(--text-muted)
}

.pricing-card.featured {
    background: linear-gradient(to bottom, #f8fbff, white);
    border: 2px solid var(--primary);
    position: relative
}

.pricing-card.featured .amount {
    color: var(--primary)
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    letter-spacing: 0.5px
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap
}

.pricing-tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem
}

.pricing-tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px)
}

.pricing-tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3)
}

.pricing-category {
    display: none;
    animation: fadeIn 0.4s ease
}

.pricing-category.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.installation-note {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
    font-size: 0.9rem;
    display: inline-block
}

.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto
}

.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.08)
}

.accordion-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    background: white;
    transition: background 0.2s
}

.accordion-header:hover {
    background: #f8fafc
}

.accordion-header i {
    color: var(--text-muted);
    transition: transform 0.3s
}

.accordion-item.active .accordion-header {
    color: var(--primary)
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: var(--primary)
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 25px 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px
}

.text-center {
    text-align: center
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted)
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px
}

.breadcrumb-list li i {
    font-size: 0.7rem;
    color: #cbd5e1
}

.breadcrumb-list li a {
    color: var(--text-muted);
    transition: color 0.2s
}

.breadcrumb-list li a:hover {
    color: var(--primary)
}

.breadcrumb-list li.active {
    color: var(--primary);
    font-weight: 600
}

.server-table-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    overflow: hidden
}

.server-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    padding: 12px 20px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-items: center
}

.server-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
    transition: all 0.1s
}

.server-table-row:last-child {
    border-bottom: none
}

.server-table-row:hover {
    background: #f8fbff
}

.server-row-name h4 {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0;
    font-weight: 600
}

.server-row-name p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0
}

.server-row-spec {
    font-size: 0.85rem;
    color: var(--text-body);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px
}

.server-row-spec i {
    color: var(--text-muted);
    font-size: 0.75rem
}

.server-row-price {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1rem
}

.server-row-price span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400
}

.table-processor-select {
    width: 100%;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.8rem;
    background: white;
    color: var(--text-body)
}

@media (max-width:991px) {
    .server-table-header {
        display: none
    }

    .server-table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 15px;
        border-bottom: 1px solid var(--border-color)
    }

    .server-row-spec {
        justify-content: center;
        background: #f8fafc;
        padding: 6px;
        border-radius: 4px
    }

    .server-table-container {
        background: transparent;
        box-shadow: none;
        border: none
    }

    .server-table-row {
        background: white;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        margin-bottom: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02)
    }
}

.server-table-container {
    background: white !important;
    border-radius: 12px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden !important;
    max-width: 1200px;
    margin: 0 auto
}

.server-table-header,
.server-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1.1fr 1fr 1fr 0.9fr 1.2fr !important;
    align-items: center;
    gap: 10px
}

.server-table-header {
    background: #f8fafc !important;
    border-bottom: 2px solid #e2e8f0 !important;
    padding: 15px 25px !important;
    color: #64748b !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase
}

.server-table-row {
    background: white;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease;
    padding: 20px 25px !important
}

.server-table-row:last-child {
    border-bottom: none !important
}

.server-table-row:hover {
    background-color: #f8fafc !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: #f1f5f9 !important;
    z-index: auto !important
}

.server-table-row[style*="background:#f0f7ff"] {
    background-color: #dff6ff !important;
    border-left: 4px solid #0096d2 !important
}

.server-table-row[style*="background:#f0f7ff"] .server-row-name p {
    color: #0096d2 !important
}

.btn-primary.btn-sm {
    background: #0096d2;
    border: 1px solid #0096d2;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px
}

.btn-secondary.btn-sm {
    background: white;
    border: 1px solid #cbd5e1;
    color: #475569;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px
}

.btn-secondary.btn-sm:hover {
    border-color: #94a3b8;
    background: #f8fafc
}

.table-processor-select {
    border-radius: 8px;
    padding: 8px 12px;
    background-color: #f8fafc
}

.processor-toggle-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px
}

.proc-toggle-btn {
    background: white;
    border: 1px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    font-size: 0.9rem
}

.proc-toggle-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05)
}

.proc-toggle-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3)
}

.proc-toggle-btn i {
    font-size: 1.1rem
}

.server-tab-btn.active[onclick*='gpu'] {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important
}

#server-gpu .proc-toggle-btn.active {
    background: #7c3aed !important;
    border-color: #7c3aed !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3) !important
}

.server-tab-btn.active[onclick*='dedicated'] {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important
}

#server-dedicated .proc-toggle-btn.active {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3) !important
}

#server-dedicated .btn-primary {
    background: #f59e0b !important;
    border-color: #f59e0b !important;
    color: white !important
}

.mobile-menu-btn {
    display: none
}

.mobile-menu {
    display: none
}

@media (max-width:991px) {

    .nav-links,
    .nav-actions {
        display: none !important
    }

    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        color: var(--text-main);
        cursor: pointer;
        padding: 5px;
        z-index: 10001
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: white;
        padding: 25px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        border-bottom: 1px solid var(--border-color);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto
    }

    .mobile-menu.active {
        transform: translateY(0)
    }

    .mobile-menu>a {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-main);
        padding: 12px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.2s;
        border: 1px solid transparent
    }

    .mobile-menu>a:hover {
        background: #f8fafc;
        color: var(--primary);
        border-color: #f1f5f9;
        transform: translateX(5px)
    }

    .mobile-menu>a i {
        width: 24px;
        text-align: center;
        color: var(--primary);
        font-size: 1.1rem
    }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 25px;
        border-top: 1px dashed var(--border-color)
    }

    .mobile-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1rem
    }

    .container {
        padding: 0 20px
    }

    .hero {
        padding-top: 140px;
        text-align: center
    }

    .hero-content h1 {
        font-size: 2.5rem
    }
}

.mobile-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column
}

.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s
}

.mobile-dropdown-btn span {
    display: flex;
    align-items: center;
    gap: 15px
}

.mobile-dropdown-btn i.fa-solid {
    width: 24px;
    text-align: center;
    color: var(--primary);
    font-size: 1.1rem
}

.mobile-dropdown-btn .arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    width: auto !important
}

.mobile-dropdown.active .arrow {
    transform: rotate(180deg);
    color: var(--primary)
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: flex
}

.mobile-dropdown-content a {
    padding: 10px 15px;
    font-size: 0.95rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    text-decoration: none
}

.mobile-dropdown-content a:hover {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02)
}

.mobile-dropdown-content a i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem
}

.mobile-dropdown-content a:hover i {
    color: var(--primary)
}

.page-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0
}

.page-hero .container {
    position: relative;
    z-index: 1
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -1px
}

.page-hero p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    line-height: 1.6
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary)
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px
}

.stats-section {
    background: #0f172a;
    color: white;
    padding: 60px 0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    display: block
}

.stat-label {
    color: #94a3b8;
    font-size: 1.1rem
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.team-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md)
}

.team-img {
    height: 300px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 4rem
}

.team-info {
    padding: 25px
}

.team-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem
}

.team-role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px
}

@media (max-width:991px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8
}

.support-channels {
    display: grid;
    gap: 20px
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s
}

.channel-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateX(5px)
}

.channel-icon {
    font-size: 2rem;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.brand-hero {
    background: #0f172a;
    color: white;
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.brand-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, transparent 80%, #0f172a 100%);
    background-size: 100% 100%;
    opacity: 0.5;
    z-index: 0
}

.brand-hero .container {
    position: relative;
    z-index: 2
}

.brand-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1.5px
}

.brand-hero p {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto
}

.premium-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.2)
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #4f46e5);
    opacity: 0;
    transition: opacity 0.3s
}

.premium-card:hover::before {
    opacity: 1
}

.trust-strip {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0
}

.trust-label {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px
}

.trust-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 25px
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--card-color, #cbd5e1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease
}

.trust-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: transparent
}

.trust-card:hover::before {
    transform: scaleX(1)
}

.trust-card.btk-card:hover {
    box-shadow: 0 20px 40px -10px rgba(239, 68, 68, 0.25);
    --card-color: #ef4444
}

.trust-card.trustpilot-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 182, 122, 0.25);
    --card-color: #00b67a
}

.trust-card.sikayetvar-card:hover {
    box-shadow: 0 20px 40px -10px rgba(255, 102, 0, 0.25);
    --card-color: #ff6600
}

.trust-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.4s ease
}

.trust-card:hover .trust-icon-box {
    transform: rotateY(180deg);
    background: white;
    box-shadow: var(--shadow-sm)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.15);
    transform: translateY(-5px)
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: all 0.3s
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1)
}

.server-row-price {
    white-space: nowrap !important;
    display: flex;
    align-items: center;
    gap: 5px
}

.server-row-price .amount {
    white-space: nowrap !important
}

.server-table-row {
    padding: 24px 30px !important
}

.server-row-name h4 {
    font-size: 1.1rem !important
}

.server-row-name p {
    font-size: 0.85rem !important
}

.server-row-spec {
    font-size: 1rem !important
}

.server-row-price {
    font-size: 1.25rem !important
}

.server-row-price span {
    font-size: 0.9rem !important
}

#pricing .container {
    max-width: 1400px !important
}

.server-table-container {
    max-width: 100% !important
}

#pricing .container {
    max-width: 1600px !important;
    width: 95% !important
}

.server-table-row {
    padding: 32px 40px !important
}

.server-row-name h4 {
    font-size: 1.25rem !important
}

.server-row-name p {
    font-size: 0.95rem !important
}

.server-row-spec {
    font-size: 1.1rem !important
}

.server-row-price {
    font-size: 1.5rem !important
}

.server-row-price span {
    font-size: 1rem !important
}