:root {
    --bg:#050b14;
    --text:#ffffff;
    --muted:#9aa4b2;
    --blue:#1f6bff;
    --card-bg:rgba(255,255,255,.06);
    --shadow:rgba(0,0,0,0.7);
}

body.light {
    --bg:#f5f7fb;
    --text:#0b1220;
    --muted:#5c6470;
    --card-bg:rgba(0,0,0,.05);
    --shadow:rgba(0,0,0,0.3);
}

* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Orbitron",sans-serif;
}

body {
    background:var(--bg);
    color:var(--text);
    transition:.4s;
    overflow-x:hidden;
}

/* HEADER */
header {
    position:fixed;
    top:0;
    width:100%;
    padding:16px 0;
    z-index:1000;
    transition:.3s;
}

.header-content {
    max-width:1400px;
    margin:0 auto;
    padding:0 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

header.blur {
    background:rgba(5,11,20,.85);
    backdrop-filter:blur(14px);
    box-shadow:0 4px 20px rgba(0,0,0,.2);
}

.logo {
    font-size:22px;
    font-weight:700;
    color:var(--text);
    display:flex;
    align-items:center;
    gap:8px;
}

.logo i {
    color:var(--blue);
}

nav {
    display:flex;
    gap:25px;
    margin:0 20px;
}

nav a {
    color:var(--muted);
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:6px;
    transition:.3s;
    position:relative;
    padding:5px 0;
}

nav a i {
    font-size:12px;
}

nav a:hover {
    color:var(--text);
}

nav a::after {
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    background:var(--blue);
    transition:.3s;
}

nav a:hover::after {
    width:100%;
}

.header-right {
    display:flex;
    align-items:center;
    gap:15px;
}

/* Removed Language Selector Styles */

.client-btn {
    background:var(--blue);
    color:white;
    padding:8px 20px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    border:none;
    cursor:pointer;
}

.client-btn:hover {
    background:#0d5aff;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(31,107,255,.4);
}

#themeToggle {
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    color:var(--text);
    cursor:pointer;
    font-size:16px;
    width:40px;
    height:40px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

#themeToggle:hover {
    background:rgba(255,255,255,.1);
    transform:rotate(15deg);
}

/* HERO */
.hero {
    padding-top:20%; /* More space from header */
    padding-bottom:100px; /* Bottom spacing */
    background-size:cover;
    background-position:center;
    transition:background-image 5s ease-in-out; /* Slower transition */
    position:relative;
    background-image:url('https://imgs.search.brave.com/Mw1D3Dp2fq0peBTJj_rDkkjJLb6_-XuBvyUsUJwFT4Y/rs:fit:860:0:0:0/g:ce/aHR0cHM6Ly93YWxs/cGFwZXJzLmNvbS9p/bWFnZXMvaGQvZml2/ZW0tOXo2dmRuYTNw/a2cwNXQ3dy5qcGc');
}

.hero-overlay {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:linear-gradient(
        to bottom,
        rgba(5,11,20,0.9) 0%,
        rgba(5,11,20,0.7) 30%,
        rgba(5,11,20,0.4) 60%,
        rgba(5,11,20,0.2) 80%,
        transparent 100%
    );
    z-index:1;
}

.hero-bottom-overlay {
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height:40%;
    background:linear-gradient(
        to bottom,
        transparent 0%,
        rgba(5,11,20,0.3) 20%,
        rgba(5,11,20,0.6) 50%,
        var(--bg) 100%
    );
    z-index:1;
}

.hero-container {
    max-width:1400px;
    margin:0 auto;
    padding:0 30px;
    height:100%;
    position:relative;
    z-index:2;
}

.hero-content {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:60px;
    min-height:100%;
}

.main-content {
    flex:1;
    max-width:600px;
    text-align:left;
    margin-top:20px;
}

.main-content h1 {
    font-size:56px;
    margin-bottom:25px;
    line-height:1.1;
    text-shadow:0 2px 10px var(--shadow);
}

.main-content span {
    color:var(--blue);
    text-shadow:0 0 25px rgba(31,107,255,0.7);
    display:inline-block;
    transition:all 0.5s ease;
}

.main-content p {
    margin:0 0 40px;
    color:var(--muted);
    font-size:18px;
    line-height:1.6;
    max-width:500px;
    text-shadow:0 1px 5px var(--shadow);
}

.buttons {
    display:flex;
    gap:20px;
}

.primary {
    background:var(--blue);
    padding:16px 32px;
    border-radius:12px;
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:16px;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

.primary:hover {
    background:#0d5aff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(31,107,255,.5);
}

.ddos {
    color:var(--text);
    text-decoration:none;
    border:2px solid rgba(255,255,255,.2);
    padding:16px 32px;
    border-radius:12px;
    transition:.3s;
    font-weight:600;
    font-size:16px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.ddos:hover {
    border-color:var(--blue);
    color:var(--blue);
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(31,107,255,.3);
}

/* FEATURES SIDE */
.features-side {
    flex:0 0 500px;
}

.features-grid {
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-row {
    display:flex;
    gap:20px;
}

.feature {
    flex:1;
    background:var(--card-bg);
    backdrop-filter:blur(10px);
    padding:25px;
    border-radius:16px;
    border:1px solid rgba(255,255,255,.1);
    transition:.4s;
    min-width:240px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.feature:hover {
    transform:translateY(-8px) scale(1.03);
    border-color:rgba(31,107,255,.4);
    box-shadow:0 20px 40px rgba(31,107,255,.3);
}

.feature i {
    font-size:28px;
    color:var(--blue);
    margin-bottom:15px;
    text-shadow:0 0 10px rgba(31,107,255,0.5);
}

.feature h4 {
    margin:10px 0;
    font-size:18px;
    font-weight:600;
}

.feature span {
    color:var(--muted);
    font-size:14px;
    display:block;
    margin-top:5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        gap:40px;
    }
    
    .main-content h1 {
        font-size:48px;
    }
    
    .features-side {
        flex:0 0 450px;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding:120px 0 80px;
        min-height:auto;
    }
    
    .hero-content {
        flex-direction:column;
        justify-content:flex-start;
        text-align:center;
        gap:60px;
    }
    
    .main-content {
        text-align:center;
        max-width:100%;
        margin-top:0;
    }
    
    .main-content p {
        margin-left:auto;
        margin-right:auto;
    }
    
    .features-side {
        flex:0 0 auto;
        width:100%;
        max-width:600px;
    }
    
    .features-grid {
        gap:15px;
    }
    
    nav {
        display:none;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding:0 20px;
    }
    
    .main-content h1 {
        font-size:36px;
    }
    
    .main-content p {
        font-size:16px;
    }
    
    .buttons {
        flex-direction:column;
        gap:15px;
    }
    
    .primary, .ddos {
        justify-content:center;
        padding:14px 24px;
    }
    
    .feature-row {
        flex-direction:column;
    }
    
    .feature {
        min-width:auto;
    }
    
    .hero {
        padding:100px 0 60px;
    }
}

/* Advanced Features Section - Updated for transparent hover */
.advanced-features {
    padding: 100px 0;
    background: var(--bg);
}

.advanced-features .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Default state - semi-transparent background */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.05), rgba(31, 107, 255, 0.02));
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.1), transparent);
    opacity: 0;
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

/* Hover state - transparent with blue shadow */
.feature-card:hover {
    background: transparent !important;
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 
        0 0 30px rgba(31, 107, 255, 0.3),
        0 10px 40px rgba(31, 107, 255, 0.2),
        inset 0 0 20px rgba(31, 107, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card.large-card {
    grid-column: span 2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.1), rgba(31, 107, 255, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: var(--muted);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Icon hover effect */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.3), rgba(31, 107, 255, 0.4));
    box-shadow: 
        0 0 20px rgba(31, 107, 255, 0.5),
        0 10px 30px rgba(31, 107, 255, 0.3);
    color: var(--blue) !important;
    text-shadow: 0 0 15px rgba(31, 107, 255, 0.7);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover h3 {
    color: var(--blue);
    text-shadow: 0 0 10px rgba(31, 107, 255, 0.3);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.large-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.large-card-content .feature-icon {
    margin: 0 auto 25px;
}

.large-card-content h3 {
    font-size: 26px;
}

.large-card-content p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
}

/* Special hover effect for the large card */
.feature-card.large-card:hover {
    box-shadow: 
        0 0 40px rgba(31, 107, 255, 0.4),
        0 15px 50px rgba(31, 107, 255, 0.3),
        inset 0 0 30px rgba(31, 107, 255, 0.15);
}

/* Promise Section */
.promise-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.05), rgba(31, 107, 255, 0.02));
    position: relative;
    overflow: hidden;
}

.promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.promise-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.promise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.promise-text {
    flex: 1;
    max-width: 600px;
}

.promise-text h2 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--text);
    line-height: 1.2;
}

.promise-text p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.promise-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.promise-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.3), rgba(31, 107, 255, 0.6));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promise-btn:hover::before {
    opacity: 1;
}

.promise-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.1), rgba(31, 107, 255, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(31, 107, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(31, 107, 255, 0.1), transparent 30%);
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.image-placeholder i {
    font-size: 80px;
    color: var(--blue);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.image-placeholder:hover i {
    transform: scale(1.1);
    color: var(--blue);
    text-shadow: 0 0 20px rgba(31, 107, 255, 0.7);
}

.image-placeholder:hover::before {
    animation: rotate 2s linear infinite;
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
    .feature-card.large-card {
        grid-column: span 1;
    }
    
    .promise-content {
        flex-direction: column;
        text-align: center;
    }
    
    .promise-text {
        max-width: 100%;
    }
    
    .promise-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }
    
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .promise-section {
        padding: 80px 0;
    }
    
    .promise-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .advanced-features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .promise-section {
        padding: 60px 0;
    }
    
    .promise-text h2 {
        font-size: 28px;
    }
    
    .promise-text p {
        font-size: 16px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .promise-content {
        gap: 40px;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 50px;
    }
    
    .promise-btn {
        width: 100%;
        justify-content: center;
    }
}

/* GLOBAL SECTION */
.global-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, #071225, #050b14 70%);
}

.global-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.global-text {
    max-width: 500px;
}

.global-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.global-text h2 span {
    color: var(--blue);
}

.global-text p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

.global-canvas {
    width: 480px;
    height: 480px;
    position: relative;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    cursor: grab;
}

/* Responsive */
@media (max-width: 1024px) {
    .global-container {
        flex-direction: column;
        text-align: center;
    }
}
/* GLOBAL SECTION */
.global-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--bg);
}

/* ARC LINE */
.global-arc {
    position: absolute;
    top: 40px;
    left: 50%;
    width: 1200px;
    transform: translateX(-50%);
}

.global-arc path {
    fill: none;
    stroke: rgba(31,107,255,0.6);
    stroke-width: 3;
    filter: drop-shadow(0 0 12px rgba(31,107,255,0.8));
}

/* LAYOUT */
.global-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* GLOBE */
.global-globe {
    width: 520px;
    height: 520px;
    position: relative;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    cursor: grab;
}

/* TOOLTIP */
#tooltip {
    position: absolute;
    background: rgba(0,0,0,0.8);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    color: white;
    transition: 0.2s;
}

/* TEXT */
.global-text {
    max-width: 520px;
}

.global-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.global-text span {
    color: var(--blue);
}

.global-text p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* LOCATIONS */
.global-locations {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.location {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.05);
    padding: 10px 14px;
    border-radius: 12px;
}

.location img {
    width: 28px;
    height: auto;
}

.location span {
    color: var(--muted);
    font-size: 13px;
}

/* GLOBE */
.global-globe {
    width: 520px;
    height: 520px;
}

#svgGlobe {
    width: 100%;
    height: 100%;
    cursor: grab;
}

.globe-border {
    fill: none;
    stroke: rgba(31,107,255,0.5);
    stroke-width: 2;
}

/* CONTINENTS */
.continent {
    fill: rgba(31,107,255,0.25);
    stroke: rgba(31,107,255,0.6);
    stroke-width: 1;
    transition: 0.4s;
}

/* Country highlight */
.europe,
.north-america {
    fill: rgba(31,107,255,0.7);
    filter: drop-shadow(0 0 12px rgba(31,107,255,0.9));
}

/* Glow pulse */
.pulse {
    animation: pulseGlow 3s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%,100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Responsive */
@media (max-width: 1024px) {
    .global-container {
        flex-direction: column;
        text-align: center;
    }
}
.sky-arc {
    width: 100%;
    height: 120px;
    position: absolute;
    top: -1px;
    left: 0;
    pointer-events: none;
}
.global-section {
    position: relative;
}
.global-separator {
    width: 120px;
    height: 420px;
    background: radial-gradient(
        ellipse at center,
        rgba(30, 90, 200, 0.35) 0%,
        rgba(30, 90, 200, 0.18) 35%,
        rgba(30, 90, 200, 0.05) 60%,
        rgba(30, 90, 200, 0.0) 75%
    );
    filter: blur(25px);
    pointer-events: none;
}

/* Layout tweak */
.global-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 900px) {
    .global-separator {
        display: none;
    }
}


/*       pricing            */
/* ===============================

/* ===============================
   PRICING SECTION
================================ */
.pricing-section {
    padding: 120px 30px;
    background: var(--bg);
    position: relative;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: radial-gradient(
        ellipse at center,
        rgba(59,130,246,0.25),
        transparent 70%
    );
    filter: blur(45px);
    z-index: 0;
}

/* ===============================
   HEADER
================================ */
.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.pricing-header h2 span {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
    padding-bottom: 5px;
}

.pricing-header > div > p {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.currency-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.currency-select:hover {
    border-color: var(--blue);
    background: rgba(31, 107, 255, 0.1);
}

.currency-select option {
    background: var(--bg);
    color: var(--text);
}

/* ===============================
   PRICING GRID (3 COLUMNS)
================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(31, 107, 255, 0.25);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Featured Card */
.pricing-card.featured {
    background: rgba(31, 107, 255, 0.08);
    border: 2px solid var(--blue);
    position: relative;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* ===============================
   CARD CONTENT
================================ */
.pricing-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.pricing-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text);
}

.pricing-card .desc {
    color: var(--muted);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
    min-height: 48px;
}

/* Price Styling */
.price {
    margin: 25px 0 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price span:first-child {
    display: block;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 5px;
}

.price h4 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
}

.price .amount {
    font-size: 42px;
    font-weight: 700;
}

.price .per {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 5px;
}

/* Features List */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 12px 0;
    color: var(--muted);
    font-size: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
}

/* ===============================
   BUTTONS (LIKE CLIENT SPACE BUTTON)
================================ */
.pricing-card .btn {
    display: block;
    text-align: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Regular Button */
.pricing-card .btn:not(.primary) {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card .btn:not(.primary):hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.3);
}

/* Primary Button (Featured Card) */
.pricing-card .btn.primary {
    background: linear-gradient(135deg, var(--blue), #0d5aff);
    color: white;
    box-shadow: 0 5px 15px rgba(31, 107, 255, 0.4);
}

.pricing-card .btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.pricing-card .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(31, 107, 255, 0.5);
}

.pricing-card .btn.primary:hover::before {
    left: 100%;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 20px;
    }
    
    .pricing-header h2 {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        grid-column: span 1;
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .price h4 {
        font-size: 36px;
    }
    
    .price .amount {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .pricing-header {
        margin-bottom: 50px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card img {
        height: 150px;
    }
    
    .pricing-card h3 {
        font-size: 22px;
    }
    
    .price h4 {
        font-size: 32px;
    }
    
    .price .amount {
        font-size: 32px;
    }
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section {
    padding: 120px 30px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-logo-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.faq-header .logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(31, 107, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}

.faq-header .logo i {
    color: var(--blue);
    font-size: 28px;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.faq-subtitle {
    color: var(--muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.faq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    background: rgba(31, 107, 255, 0.05);
    border-color: rgba(31, 107, 255, 0.3);
    transform: translateY(-5px);
}

.faq-card:hover::before {
    transform: scaleY(1);
}

.faq-card.active {
    background: rgba(31, 107, 255, 0.08);
    border-color: var(--blue);
}

.faq-card.active::before {
    transform: scaleY(1);
}

/* Question Row */
.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.faq-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
    background: rgba(31, 107, 255, 0.15);
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 50px;
    text-align: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    flex: 1;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-card:hover .faq-question h3,
.faq-card.active .faq-question h3 {
    color: var(--blue);
}

.faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(31, 107, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-toggle i {
    transition: all 0.3s ease;
}

.faq-toggle .fa-minus {
    display: none;
}

.faq-card.active .faq-toggle {
    background: var(--blue);
    color: white;
}

.faq-card.active .faq-toggle .fa-plus {
    display: none;
}

.faq-card.active .faq-toggle .fa-minus {
    display: block;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-card.active .faq-answer {
    max-height: 500px;
    margin-top: 20px;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding-left: 70px;
}

/* CTA Section */
.faq-cta {
    background: linear-gradient(135deg, rgba(31, 107, 255, 0.1), rgba(31, 107, 255, 0.05));
    border: 1px solid rgba(31, 107, 255, 0.2);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--blue), #0d5aff);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(31, 107, 255, 0.4);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue);
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.3);
}

/* ===============================
   RESPONSIVE FAQ
================================ */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-header h2 {
        font-size: 42px;
    }
    
    .faq-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 20px;
    }
    
    .faq-header {
        margin-bottom: 60px;
    }
    
    .faq-header h2 {
        font-size: 36px;
    }
    
    .faq-header .logo {
        font-size: 26px;
        padding: 12px 24px;
    }
    
    .faq-header .logo i {
        font-size: 24px;
    }
    
    .faq-card {
        padding: 25px 20px;
    }
    
    .faq-question {
        gap: 15px;
    }
    
    .faq-answer p {
        padding-left: 0;
        padding-top: 10px;
    }
    
    .faq-number {
        min-width: 40px;
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .cta-content h3 {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 15px;
        margin: 5px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-button.secondary {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Update the logo styles in FAQ section */
.faq-header .logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(31, 107, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}

/* Logo image styling */
.faq-header .logo-img {
    width: 40px; /* Adjust size as needed */
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2); /* Makes logo stand out */
}

/* If you want the logo without text, use this alternative: */
/*
.faq-header .logo {
    display: flex;
    justify-content: center;
    padding: 20px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(31, 107, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-header .logo-img {
    width: 100%;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}
*/

/* Optional: Add glow effect to logo */
.faq-header .logo:hover .logo-img {
    filter: brightness(1.5) drop-shadow(0 0 8px rgba(31, 107, 255, 0.5));
}


/* ===============================
   FOOTER
================================ */
.main-footer {
    background: #050a12;
    border-top: 1px solid rgba(31, 107, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Background pattern */
.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(31, 107, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(31, 107, 255, 0.02) 0%, transparent 50%);
    z-index: 0;
}

/* Footer Top */
.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.footer-column {
    color: var(--muted);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--blue);
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--blue);
    transform: translateX(5px);
}

.footer-links a i {
    width: 20px;
    font-size: 14px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--blue);
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item span {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.contact-item a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--blue);
}

/* About Text Column */
.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.footer-logo i {
    color: var(--blue);
}

.about-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.discord { background: #5865F2; }
.social-link.twitter { background: #1DA1F2; }
.social-link.github { background: #333; }
.social-link.youtube { background: #FF0000; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Music Credit */
.music-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.music-credit i {
    color: var(--blue);
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright {
    color: var(--muted);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright i {
    font-size: 12px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--blue);
}

.divider {
    color: var(--muted);
    opacity: 0.5;
}

/* Scroll to Top Button */
.scroll-top-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(31, 107, 255, 0.1);
    border: 1px solid rgba(31, 107, 255, 0.3);
    color: var(--blue);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 107, 255, 0.3);
}

/* ===============================
   RESPONSIVE FOOTER
================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-top {
        padding: 60px 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-legal {
        order: 1;
    }
    
    .copyright {
        order: 2;
    }
    
    .footer-scroll {
        order: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links a,
    .contact-item a {
        font-size: 14px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* ===============================
   MOBILE MENU STYLES
================================ */

/* Mobile Menu Button - Hidden by default (desktop) */
.mobile-menu-btn {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Desktop Navigation - Always visible on desktop */
.desktop-nav {
    display: flex;
    gap: 25px;
    margin: 0 20px;
}

.desktop-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a i {
    font-size: 12px;
}

.desktop-nav a:hover {
    color: var(--text);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: .3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mobile-nav-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 400px;
    margin-left: auto;
    background: rgba(5, 11, 20, 0.98);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.mobile-nav-header .logo {
    font-size: 24px;
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
}

.mobile-close-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.mobile-nav-links a {
    color: var(--text);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a i {
    color: var(--blue);
    font-size: 18px;
    width: 24px;
}

.mobile-nav-links a:hover {
    background: rgba(31, 107, 255, 0.15);
    transform: translateX(5px);
    color: var(--blue);
}

.mobile-nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.mobile-nav-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-theme-toggle {
    width: 100%;
    padding: 16px;
    background: rgba(31, 107, 255, 0.1);
    border: 1px solid rgba(31, 107, 255, 0.3);
    color: var(--text);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-theme-toggle:hover {
    background: rgba(31, 107, 255, 0.2);
    transform: translateY(-2px);
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}

/* ===============================
   RESPONSIVE HEADER
================================ */
@media (max-width: 1024px) {
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none;
    }
    
    /* Show mobile menu button only on mobile */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Adjust header right for mobile */
    .header-right {
        gap: 10px;
    }
    
    /* Make Client Space button icon-only on mobile */
    .client-btn span {
        display: none;
    }
    
    .client-btn {
        padding: 8px 12px;
        font-size: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .client-btn i {
        margin: 0;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .client-btn {
        width: 40px;
        height: 40px;
        padding: 0;
    }
    
    #themeToggle {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .mobile-nav-content {
        max-width: 320px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 18px;
        gap: 6px;
    }
    
    .logo i {
        font-size: 16px;
    }
    
    .mobile-nav-content {
        max-width: 280px;
    }
    
    .mobile-nav-links a {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ===============================
   GLOWING SCROLLBAR
================================ */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(5, 11, 20, 0.5);
    border-radius: 10px;
    margin: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(31, 107, 255, 0.8),
        rgba(31, 107, 255, 0.6)
    );
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 0 10px rgba(31, 107, 255, 0.5),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        var(--blue),
        rgba(31, 107, 255, 0.8)
    );
    box-shadow: 
        0 0 15px rgba(31, 107, 255, 0.7),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-corner {
    background: rgba(5, 11, 20, 0.8);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(31, 107, 255, 0.6) rgba(5, 11, 20, 0.5);
}

/* Light theme glowing scrollbar */
body.light ::-webkit-scrollbar-track {
    background: rgba(245, 247, 251, 0.5);
}

body.light ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        rgba(31, 107, 255, 0.6),
        rgba(31, 107, 255, 0.4)
    );
    box-shadow: 
        0 0 10px rgba(31, 107, 255, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

body.light ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        var(--blue),
        rgba(31, 107, 255, 0.6)
    );
}

body.light * {
    scrollbar-color: rgba(31, 107, 255, 0.4) rgba(245, 247, 251, 0.5);
}

/* ===============================
   DROPDOWN NAVIGATION
================================ */

.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 0;
    transition: .3s;
    position: relative;
}

.dropdown-toggle:hover {
    color: var(--text);
}

.dropdown-toggle::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue);
    transition: .3s;
}

.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 20, 35, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(31, 107, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    margin-top: 15px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(31, 107, 255, 0.2);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: rgba(10, 20, 35, 0.95);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    border-left: 1px solid rgba(31, 107, 255, 0.3);
    border-right: 1px solid rgba(31, 107, 255, 0.3);
    border-top: 1px solid rgba(31, 107, 255, 0.3);
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-item.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Header */
.dropdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(31, 107, 255, 0.2);
}

.dropdown-header i {
    color: var(--blue);
    font-size: 16px;
}

.dropdown-header span {
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.dropdown-item:hover {
    background: rgba(31, 107, 255, 0.15);
    transform: translateX(5px);
}

.dropdown-item i {
    color: var(--blue);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.dropdown-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item .item-title {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item .item-desc {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

/* Light theme styles */
body.light .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(31, 107, 255, 0.2);
}

body.light .dropdown-menu::before {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(31, 107, 255, 0.2);
    border-right: 1px solid rgba(31, 107, 255, 0.2);
    border-top: 1px solid rgba(31, 107, 255, 0.2);
}

body.light .dropdown-item:hover {
    background: rgba(31, 107, 255, 0.1);
}

/* Mobile adjustments */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none; /* Hide desktop nav on mobile */
    }
    
    /* Mobile navigation won't have dropdowns */
    .mobile-nav-links .dropdown-menu {
        display: none !important;
    }
}
/* Mobile Navigation Styles */
.mobile-section-header {
    color: var(--blue);
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-subitem {
    padding: 12px 20px 12px 50px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 5px;
}

.mobile-subitem div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-subitem span {
    font-size: 15px;
    font-weight: 500;
}

.mobile-subitem small {
    color: var(--muted);
    font-size: 12px;
    font-weight: normal;
}
/* ===============================
   CLOUD VPS SECTION
================================ */
.cloud-vps-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, rgba(10, 20, 35, 0.8), rgba(5, 11, 20, 0.9));
    position: relative;
    overflow: hidden;
}

.cloud-vps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.vps-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vps-header {
    text-align: center;
    margin-bottom: 60px;
}

.vps-header h2 {
    font-size: 48px;
    color: var(--text);
    margin-bottom: 10px;
}

.vps-header h3 {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.vps-header p {
    color: var(--muted);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* VPS Specs */
.vps-specs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    background: rgba(31, 107, 255, 0.1);
}

.spec-item i {
    font-size: 28px;
    color: var(--blue);
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.spec-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

/* VPS Pricing Table */
.vps-pricing-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.vps-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: rgba(31, 107, 255, 0.1);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(31, 107, 255, 0.2);
}

.table-col {
    text-align: center;
}

.specs-col {
    text-align: left;
}

.cpu-type {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.cpu-type i {
    color: var(--blue);
    font-size: 24px;
}

.plan-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Table Rows */
.vps-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.vps-table-row:last-child {
    border-bottom: none;
}

.price-row {
    background: rgba(31, 107, 255, 0.05);
}

.spec-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

.spec-name i {
    color: var(--blue);
    width: 20px;
}

.spec-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.spec-detail {
    font-size: 14px;
    color: var(--muted);
}

/* Price Box */
.price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
}

.price span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 5px;
}

.order-btn {
    padding: 12px 30px;
    background: rgba(31, 107, 255, 0.2);
    border: 1px solid rgba(31, 107, 255, 0.3);
    color: var(--text);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.order-btn:hover {
    background: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.3);
}

.order-btn.featured {
    background: linear-gradient(135deg, var(--blue), #0d5aff);
    color: white;
}

.order-btn.featured:hover {
    background: linear-gradient(135deg, #0d5aff, var(--blue));
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.4);
}

/* Currency Selector */
.vps-currency {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.currency-label {
    color: var(--muted);
    font-size: 16px;
}

.currency-options {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
}

.currency-option {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-option.active {
    background: rgba(31, 107, 255, 0.2);
    color: var(--blue);
}

.currency-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

/* Included Features */
.vps-features {
    text-align: center;
}

.vps-features h4 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vps-features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.vps-features .feature:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    background: rgba(31, 107, 255, 0.1);
}

.vps-features .feature i {
    color: var(--blue);
    font-size: 18px;
}

.vps-features .feature span {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cloud-vps-section {
        padding: 60px 20px;
    }
    
    .vps-header h2 {
        font-size: 36px;
    }
    
    .vps-header h3 {
        font-size: 24px;
    }
    
    .vps-header p {
        font-size: 16px;
    }
    
    .vps-specs {
        gap: 20px;
    }
    
    .spec-item {
        min-width: 150px;
        padding: 15px 20px;
    }
    
    .vps-table-header,
    .vps-table-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .specs-col {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    
    .spec-name {
        justify-content: center;
    }
    
    .price {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .vps-currency {
        flex-direction: column;
        gap: 10px;
    }
    
    .spec-item {
        width: 100%;
    }
}

/* ===============================
   DEDICATED SERVERS SECTION
================================ */
.dedicated-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, rgba(15, 25, 45, 0.9), rgba(5, 11, 20, 1));
    position: relative;
    overflow: hidden;
}

.dedicated-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.dedicated-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.dedicated-header {
    text-align: center;
    margin-bottom: 60px;
}

.dedicated-header h2 {
    font-size: 48px;
    color: var(--text);
    margin-bottom: 10px;
}

.dedicated-header h3 {
    font-size: 28px;
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.dedicated-header p {
    color: var(--muted);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CPU Type Selection */
.cpu-type-selection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.selection-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.selection-title i {
    color: var(--blue);
    font-size: 24px;
}

.cpu-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cpu-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cpu-option.active {
    background: rgba(31, 107, 255, 0.2);
    border-color: var(--blue);
    color: var(--blue);
}

.cpu-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.cpu-option i {
    font-size: 18px;
}

/* Plans Title */
.plans-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 30px;
    padding-left: 10px;
}

.plans-title i {
    color: var(--blue);
}

/* Dedicated Plans */
.dedicated-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.dedicated-plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.dedicated-plan:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(31, 107, 255, 0.2);
}

.dedicated-plan.popular {
    border: 2px solid var(--blue);
    background: rgba(31, 107, 255, 0.05);
}

.dedicated-plan.best-value {
    border: 2px solid #ffb300;
    background: rgba(255, 179, 0, 0.05);
}

/* Badges */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(31, 107, 255, 0.4);
}

.value-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb300;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 179, 0, 0.4);
}

/* Plan Header */
.plan-header {
    margin-bottom: 25px;
    text-align: center;
}

.plan-header h4 {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 10px;
}

.plan-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.plan-location i {
    color: var(--blue);
}

/* Plan Specs */
.plan-specs {
    margin-bottom: 25px;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row i {
    color: var(--blue);
    font-size: 20px;
    width: 24px;
}

.spec-content {
    flex: 1;
}

.spec-title {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 500;
}

.spec-desc {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

/* Plan Features */
.plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(31, 107, 255, 0.1);
    color: var(--text);
}

.feature i {
    color: var(--blue);
    font-size: 14px;
    width: 16px;
}

/* Plan Price */
.plan-price {
    text-align: center;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.price span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 5px;
}

.plan-price .order-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.plan-price .order-btn.featured {
    background: linear-gradient(135deg, var(--blue), #0d5aff);
    color: white;
}

.plan-price .order-btn.featured:hover {
    background: linear-gradient(135deg, #0d5aff, var(--blue));
}

/* Additional Features */
.additional-features {
    text-align: center;
    margin-top: 60px;
}

.additional-features h4 {
    font-size: 28px;
    color: var(--text);
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    background: rgba(31, 107, 255, 0.05);
}

.feature-card i {
    font-size: 36px;
    color: var(--blue);
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .dedicated-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dedicated-plan:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dedicated-section {
        padding: 60px 20px;
    }
    
    .dedicated-header h2 {
        font-size: 36px;
    }
    
    .dedicated-header h3 {
        font-size: 24px;
    }
    
    .dedicated-plans {
        grid-template-columns: 1fr;
    }
    
    .dedicated-plan:last-child {
        grid-column: span 1;
    }
    
    .plan-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 36px;
    }
    
    .cpu-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dedicated-plan {
        padding: 20px;
    }
    
    .plan-header h4 {
        font-size: 20px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

/* ===============================
   DISCORD BOT HOSTING SECTION
================================ */
.discord-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(5, 11, 20, 0.9));
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #5865F2, transparent);
}

.discord-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.discord-header {
    text-align: center;
    margin-bottom: 60px;
}

.discord-header h2 {
    font-size: 48px;
    color: var(--text);
    margin-bottom: 10px;
}

.discord-header h3 {
    font-size: 28px;
    color: #5865F2;
    margin-bottom: 20px;
    font-weight: 600;
}

.discord-header p {
    color: var(--muted);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Plan Type Selection */
.plan-type-selection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.plan-type-selection .selection-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 20px;
}

.plan-type-selection .selection-title i {
    color: #5865F2;
    font-size: 24px;
}

.plan-type-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.plan-type-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-type-option.active {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
    color: #5865F2;
}

.plan-type-option:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-type-option i {
    font-size: 18px;
}

/* Discord Plans */
.discord-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.discord-plan {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.discord-plan:hover {
    transform: translateY(-10px);
    border-color: #5865F2;
    box-shadow: 0 20px 50px rgba(88, 101, 242, 0.2);
}

.discord-plan.popular {
    border: 2px solid #5865F2;
    background: rgba(88, 101, 242, 0.05);
}

/* Discord Plan Badge */
.discord-plan .plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(88, 101, 242, 0.2);
    color: #5865F2;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.3);
}

.discord-plan .plan-badge.premium {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Discord Popular Badge */
.discord-plan .popular-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #5865F2;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}

/* Plan Header */
.discord-plan .plan-header {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 20px;
}

.discord-plan .plan-header h4 {
    font-size: 24px;
    color: var(--text);
}

/* Plan Specs */
.discord-plan .plan-specs {
    margin-bottom: 25px;
}

.discord-plan .spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.discord-plan .spec-item:last-child {
    border-bottom: none;
}

.discord-plan .spec-item i {
    color: #5865F2;
    font-size: 20px;
    width: 24px;
}

.discord-plan .spec-content {
    flex: 1;
}

.discord-plan .spec-title {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.discord-plan .spec-value {
    display: block;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

/* Plan Features */
.discord-plan .plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discord-plan .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.discord-plan .feature:hover {
    background: rgba(88, 101, 242, 0.1);
    color: var(--text);
}

.discord-plan .feature i {
    color: #5865F2;
    font-size: 14px;
    width: 16px;
}

/* Plan Price */
.discord-plan .plan-price {
    text-align: center;
}

.discord-plan .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.discord-plan .price span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 5px;
}

.discord-plan .order-btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(88, 101, 242, 0.2);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: var(--text);
}

.discord-plan .order-btn:hover {
    background: #5865F2;
    border-color: #5865F2;
    color: white;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.3);
}

.discord-plan .order-btn.featured {
    background: #5865F2;
    color: white;
}

.discord-plan .order-btn.featured:hover {
    background: #4752c4;
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.4);
}

/* Discord Features */
.discord-features {
    text-align: center;
    margin-top: 60px;
}

.discord-features h4 {
    font-size: 28px;
    color: var(--text);
    margin-bottom: 40px;
}

.discord-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.discord-features .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.discord-features .feature-card:hover {
    transform: translateY(-5px);
    border-color: #5865F2;
    background: rgba(88, 101, 242, 0.05);
}

.discord-features .feature-card i {
    font-size: 36px;
    color: #5865F2;
    margin-bottom: 20px;
}

.discord-features .feature-card h5 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: 600;
}

.discord-features .feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Premium Plans */
.premium-plans .discord-plan {
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-plans .discord-plan:hover {
    border-color: #FFD700;
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.premium-plans .discord-plan.popular {
    border: 2px solid #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.premium-plans .discord-plan .spec-item i {
    color: #FFD700;
}

.premium-plans .discord-plan .feature i {
    color: #FFD700;
}

.premium-plans .discord-plan .feature:hover {
    background: rgba(255, 215, 0, 0.1);
}

.premium-plans .discord-plan .order-btn {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.premium-plans .discord-plan .order-btn:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.premium-plans .discord-plan .order-btn.featured {
    background: #FFD700;
    color: #000;
}

.premium-plans .discord-plan .order-btn.featured:hover {
    background: #e6c200;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .discord-plans {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .discord-plan:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .discord-section {
        padding: 60px 20px;
    }
    
    .discord-header h2 {
        font-size: 36px;
    }
    
    .discord-header h3 {
        font-size: 24px;
    }
    
    .discord-plans {
        grid-template-columns: 1fr;
    }
    
    .discord-plan:last-child {
        grid-column: span 1;
    }
    
    .discord-plan .plan-features {
        grid-template-columns: 1fr;
    }
    
    .discord-features .features-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-plan .price {
        font-size: 36px;
    }
    
    .plan-type-options {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .discord-plan {
        padding: 20px;
    }
    
    .discord-plan .plan-header h4 {
        font-size: 20px;
    }
    
    .discord-plan .price {
        font-size: 32px;
    }
    
    .discord-features .feature-card {
        padding: 20px;
    }
}

/* ===============================
   WEB HOSTING SECTION
================================ */
.webhosting-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, rgba(5, 11, 20, 0.95), rgba(10, 20, 35, 0.9));
    position: relative;
    overflow: hidden;
}

.webhosting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.webhosting-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.webhosting-header h2 {
    font-size: 48px;
    color: var(--text);
    margin-bottom: 15px;
    font-weight: 700;
}

.webhosting-header h2 span {
    color: var(--blue);
    border-bottom: 3px solid var(--blue);
    padding-bottom: 5px;
}

.webhosting-header p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Plan Selection */
.plan-selection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.plan-type {
    display: flex;
    align-items: center;
    gap: 20px;
}

.plan-type-label {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
}

.plan-type-options {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    border-radius: 10px;
}

.plan-type-btn {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: var(--muted);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-type-btn.active {
    background: rgba(31, 107, 255, 0.2);
    color: var(--blue);
}

.plan-type-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.choose-plan h3 {
    font-size: 24px;
    color: var(--text);
    font-weight: 600;
}

/* Web Hosting Plans */
.webhosting-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hosting-plan {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.hosting-plan:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 20px 50px rgba(31, 107, 255, 0.2);
}

.hosting-plan.featured {
    border: 2px solid var(--blue);
    background: rgba(31, 107, 255, 0.05);
    transform: scale(1.05);
}

.hosting-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(31, 107, 255, 0.4);
}

.featured-badge::before {
    content: '★';
    font-size: 12px;
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-title {
    font-size: 32px;
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 700;
}

.plan-subtitle {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
}

.plan-price {
    margin: 25px 0;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    vertical-align: top;
    margin-right: 2px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
}

.price-period {
    font-size: 16px;
    color: var(--muted);
    font-weight: 500;
    margin-left: 5px;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.order-btn.primary {
    background: linear-gradient(135deg, var(--blue), #0d5aff);
    color: white;
    box-shadow: 0 5px 15px rgba(31, 107, 255, 0.4);
}

.order-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.3);
}

.order-btn:not(.primary):hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue);
}

.order-btn.primary:hover {
    background: linear-gradient(135deg, #0d5aff, var(--blue));
    box-shadow: 0 15px 30px rgba(31, 107, 255, 0.5);
}

.order-btn.primary:hover::before {
    left: 100%;
}

/* Plan Specs */
.plan-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spec-category {
    margin-bottom: 10px;
}

.spec-category h4 {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.spec-category h4 i {
    color: var(--blue);
    font-size: 20px;
    width: 24px;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-category li {
    padding: 8px 0;
    color: var(--muted);
    font-size: 15px;
    position: relative;
    padding-left: 34px; /* Align with icon */
}

.spec-category li::before {
    content: "•";
    position: absolute;
    left: 15px;
    color: var(--blue);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .webhosting-plans {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 500px;
    }
    
    .hosting-plan.featured {
        transform: none;
    }
    
    .hosting-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .plan-selection {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .webhosting-section {
        padding: 60px 20px;
    }
    
    .webhosting-header h2 {
        font-size: 36px;
    }
    
    .webhosting-header p {
        font-size: 16px;
    }
    
    .plan-title {
        font-size: 28px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .spec-category h4 {
        font-size: 16px;
    }
    
    .spec-category li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hosting-plan {
        padding: 30px 20px;
    }
    
    .plan-type {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .plan-type-options {
        width: 100%;
    }
    
    .plan-type-btn {
        flex: 1;
        text-align: center;
    }
}

/* ===============================
   MILITARY-GRADE DDoS PROTECTION SECTION
================================ */
.ddos-protection-section {
    padding: 120px 30px;
    background: linear-gradient(135deg, #0a1428, #050b14);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(31, 107, 255, 0.2);
    border-bottom: 1px solid rgba(31, 107, 255, 0.2);
}

.ddos-protection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.ddos-protection-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* 网格背景效果 */
.ddos-protection-section .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(31, 107, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 107, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.ddos-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 头部样式 */
.ddos-header {
    text-align: center;
    margin-bottom: 60px;
}

.ddos-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2), rgba(31, 107, 255, 0.2));
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #ff3232;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.badge-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: badgeGlow 3s infinite;
}

@keyframes badgeGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.ddos-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff3232, var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ddos-header h3 {
    font-size: 28px;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.ddos-description {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 保护流程 */
.protection-pipeline {
    background: rgba(10, 20, 40, 0.7);
    border: 1px solid rgba(31, 107, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(31, 107, 255, 0.1);
}

.protection-pipeline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(255, 50, 50, 0.5), 
        rgba(31, 107, 255, 0.5),
        rgba(50, 255, 150, 0.5)
    );
    border-radius: 22px;
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.pipeline-title {
    text-align: center;
    margin-bottom: 40px;
}

.pipeline-title h4 {
    font-size: 24px;
    color: var(--text);
    font-weight: 600;
    display: inline-block;
    padding: 10px 30px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(31, 107, 255, 0.2);
}

.pipeline-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

/* 连接线 */
.pipeline-connectors {
    position: absolute;
    top: 0;
    left: 60px;
    right: 60px;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.connector-line {
    position: absolute;
    height: 2px;
    background: rgba(31, 107, 255, 0.4);
    top: 50%;
    transform: translateY(-50%);
    left: 120px;
    right: 120px;
}

.connector-line:nth-child(2) {
    top: calc(50% + 120px);
}

/* 流程步骤 */
.pipeline-step {
    display: flex;
    align-items: center;
    background: rgba(5, 11, 20, 0.8);
    border-radius: 15px;
    padding: 25px 30px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pipeline-step:hover {
    transform: translateX(10px);
    border-color: rgba(31, 107, 255, 0.5);
    box-shadow: 0 10px 20px rgba(31, 107, 255, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    border: 2px solid rgba(31, 107, 255, 0.3);
}

.step-icon i {
    font-size: 24px;
    color: var(--blue);
}

.step-content {
    flex: 1;
}

.step-content h5 {
    font-size: 20px;
    color: var(--text);
    margin-bottom: 5px;
    font-weight: 600;
}

.step-content p {
    color: var(--muted);
    font-size: 14px;
}

.step-arrow {
    width: 40px;
    height: 40px;
    background: rgba(31, 107, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.step-arrow i {
    color: var(--blue);
    font-size: 18px;
}

/* 不同步骤的不同颜色 */
.attack-step .step-icon {
    background: rgba(255, 50, 50, 0.1);
    border-color: rgba(255, 50, 50, 0.3);
}

.attack-step .step-icon i {
    color: #ff3232;
}

.attack-step .step-arrow {
    background: rgba(255, 50, 50, 0.1);
}

.attack-step .step-arrow i {
    color: #ff3232;
}

.scrubbing-step .step-icon {
    background: rgba(31, 107, 255, 0.1);
    border-color: rgba(31, 107, 255, 0.3);
}

.clean-step .step-icon {
    background: rgba(50, 255, 150, 0.1);
    border-color: rgba(50, 255, 150, 0.3);
}

.clean-step .step-icon i {
    color: #32ff96;
}

/* 保护统计 */
.protection-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(31, 107, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--blue);
    background: rgba(31, 107, 255, 0.05);
    box-shadow: 0 10px 20px rgba(31, 107, 255, 0.1);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-number span {
    font-size: 24px;
    font-weight: 600;
    color: var(--muted);
    margin-left: 2px;
}

.stat-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA按钮 */
.ddos-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff3232, var(--blue));
    color: white;
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.3);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(31, 107, 255, 0.4);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 107, 255, 0.2);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .protection-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pipeline-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .step-arrow {
        margin-left: 0;
        margin-top: 10px;
        transform: rotate(90deg);
    }
    
    .connector-line {
        display: none;
    }
    
    .pipeline-connectors {
        display: none;
    }
}

@media (max-width: 768px) {
    .ddos-protection-section {
        padding: 60px 20px;
    }
    
    .ddos-header h2 {
        font-size: 36px;
    }
    
    .ddos-header h3 {
        font-size: 22px;
    }
    
    .ddos-description {
        font-size: 16px;
    }
    
    .protection-pipeline {
        padding: 30px 20px;
    }
    
    .pipeline-title h4 {
        font-size: 20px;
        padding: 8px 20px;
    }
    
    .step-content h5 {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .ddos-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .protection-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .ddos-header h2 {
        font-size: 28px;
    }
    
    .ddos-header h3 {
        font-size: 18px;
    }
}

