@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #030508;
    color: #cbd5e1;
    font-family: 'Inter', sans-serif;
    background-image: 
        radial-gradient(circle at 10% 30%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(107, 33, 168, 0.03) 0%, transparent 40%),
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mb-50 { margin-bottom: 50px; }
.w-100 { width: 100%; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #030508; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #3b82f6; }

/* NAVBAR */
.floating-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(6, 8, 13, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 24px 0 32px;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { 
    color: #3b82f6;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-links a:hover { 
    color: #ffffff; 
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-btn {
    color: #94a3b8;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.03);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
}

.user-avatar { width: 24px; height: 24px; border-radius: 50%; }

/* HERO SECTION */
.hero, .page-hero {
    padding: 200px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1, .page-title {
    font-size: 56px; 
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span, .page-title span {
    background: linear-gradient(135deg, #60a5fa 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p, .page-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin: 0 auto 40px auto; 
    max-width: 600px;
    line-height: 1.6;
}

/* FEATURES SECTION */
.features { padding: 80px 0; }

.massive-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 12px;
}

.subtitle {
    font-size: 16px;
    color: #94a3b8;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.03);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

/* PRICING SECTION */
.pricing-section {
    padding: 40px 0 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: center;
}

.price-card {
    background: #06080d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.price-card.popular {
    background: #0a0f1c;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.slot-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px;
    align-self: flex-start;
}

.price-card.popular .slot-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
}

.price-card h3 {
    font-size: 20px;
    color: #f8fafc;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount span {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
}

.features-list li.highlight {
    color: #e2e8f0;
    font-weight: 600;
}

.features-list li.highlight::before {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

/* FAQ SECTION */
.faq { padding: 60px 0 100px; }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #e2e8f0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #60a5fa;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

/*  FOOTER  */
.site-footer {
    background: #030406;
    border-top: 1px solid #1e293b;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand-col .logo {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 26px;
}

.footer-brand-col p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(88, 101, 242, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 101, 242, 0.2);
}

.footer-links-col h4 {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-col a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-col a:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    color: #475569;
    font-size: 13px;
    font-weight: 500;
}

.footer-tech {
    display: flex;
    gap: 6px;
}

.footer-tech .text-blue {
    color: #60a5fa;
    font-weight: 700;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
    .price-card.popular { transform: none; }
    .floating-nav { width: calc(100% - 32px); top: 16px; }
    .nav-links { display: none; }
}

@media (max-width: 768px) {
    .hero h1, .page-title { font-size: 42px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 24px; text-align: center; }
}

.server-list-section {
    padding: 40px 0 120px;
}

.server-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.srv-card {
    background: linear-gradient(180deg, #0a0f1a 0%, #030508 100%);
    border-radius: 0;
    border: none;
    position: relative;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.srv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #1e293b;
    transition: all 0.3s ease;
}

.srv-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, #0d1424 0%, #05080d 100%);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.1), 0 20px 40px rgba(0, 0, 0, 0.5);
}

.srv-card:hover::before {
    background: #3b82f6;
    box-shadow: 0 0 15px #3b82f6;
}

.popular-srv {
    transform: scale(1.05);
    background: linear-gradient(180deg, #0f172a 0%, #05080d 100%);
    box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.popular-srv::before {
    background: #3b82f6;
}

.popular-srv:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #3b82f6;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 5px 30px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.srv-info {
    text-align: center;
    margin-bottom: 30px;
}

.srv-info h3 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.srv-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.badge-slot, .badge-stock {
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-slot {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.badge-stock {
    display: flex;
    align-items: center;
    gap: 6px;
}

.in-stock { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.low-stock { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.in-stock .dot { background: #10b981; box-shadow: 0 0 5px #10b981; }
.low-stock .dot { background: #f59e0b; box-shadow: 0 0 5px #f59e0b; }

.srv-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.spec:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lbl {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.val {
    font-size: 14px;
    color: #f8fafc;
    font-weight: 700;
    text-align: right;
}

.val span {
    display: block;
    color: #475569;
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
}

.text-blue { color: #60a5fa !important; }

.srv-checkout {
    text-align: center;
}

.srv-price {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.srv-price span {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.srv-checkout .btn {
    width: 100%;
    padding: 14px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.infrastructure-section {
    padding: 80px 0;
    background: #030406;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.infra-card {
    background: transparent;
    border: none;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.infra-card:hover {
    transform: translateY(-5px);
}

.infra-icon {
    font-size: 32px;
    margin: 0 auto 20px auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}

.infra-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
}

.infra-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .server-list { grid-template-columns: repeat(2, 1fr); }
    .popular-srv { transform: none; z-index: 1; }
    .popular-srv:hover { transform: translateY(-10px); }
    .infra-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .server-list { grid-template-columns: 1fr; }
    .infra-grid { grid-template-columns: 1fr; }
}