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

:root {
    --primary: #ff6600;
    --secondary: #1a1a2e;
    --dark: #0d0d1a;
    --card: #16213e;
    --accent: #ff4500;
    --text: #e0e0e0;
    --gold: #ffd700;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo span {
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s !important;
}

.nav-btn:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

.nav-panel {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 8px 16px;
    border-radius: 5px;
    transition: all 0.3s !important;
}

.nav-panel:hover {
    background: var(--primary);
    color: #fff !important;
}

/* ===== HERO (DATACENTER FULL 4K HD) ===== */
.hero {
    min-height: 100vh;
    background: 
        /* Overlay i lehtë që i jep kontrast tekstit por ruaj cilësinë 4K të dritave */
        radial-gradient(circle at center, rgba(13,13,26,0.75) 0%, rgba(13,13,26,0.60) 50%, rgba(13,13,26,0.85) 100%),
        url('https://images.unsplash.com/photo-1695668548342-c0c1ad479aee?q=100&w=3840&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
    /* Rrit kontrastin dhe qartësinë e detajeve në 4K */
    filter: contrast(110%) brightness(105%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,102,0,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero-badge {
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeDown 0.8s ease;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeDown 1s ease 0.2s both;
}

.hero h1 .highlight {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255,102,0,0.5);
}

.hero p {
    font-size: 18px;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeDown 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeDown 1s ease 0.6s both;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,102,0,0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== STATS ===== */
.stats {
    background: var(--card);
    padding: 40px 40px;
    border-bottom: 1px solid rgba(255,102,0,0.2);
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
}

.stat-item p {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECTION TITLE ===== */
.section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: #888;
    font-size: 16px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto;
    border-radius: 2px;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.price-card {
    background: var(--card);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255,102,0,0.2);
}

.price-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: #fff;
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.price-card .plan-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.price-card .price sup {
    font-size: 20px;
    vertical-align: top;
    margin-top: 10px;
}

.price-card .price sub {
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.price-card .price-desc {
    color: #888;
    font-size: 13px;
    margin: 10px 0 25px;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #ccc;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
    font-size: 16px;
}

.price-card ul li.no::before {
    content: '✗';
    color: #555;
}

.price-card ul li.no {
    color: #555;
}

/* ===== FEATURES ===== */
.features-section {
    background: var(--secondary);
    padding: 80px 40px;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card);
    border-radius: 12px;
    padding: 35px 25px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== WHY US ===== */
.why-section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 20px;
}

.why-text h2 span {
    color: var(--primary);
}

.why-text p {
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

.why-list li .icon {
    width: 40px;
    height: 40px;
    background: rgba(255,102,0,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-visual {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255,102,0,0.2);
}

.server-status {
    margin-bottom: 20px;
}

.server-status h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.uptime-bar {
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
    height: 6px;
    margin-top: 15px;
}

.uptime-fill {
    background: linear-gradient(90deg, var(--primary), #ff4500);
    height: 100%;
    border-radius: 50px;
    width: 99.9%;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--secondary);
    padding: 80px 40px;
}

.testimonials-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
}

.author-info p {
    font-size: 12px;
    color: #888;
    margin: 0;
    font-style: normal;
}

/* ===== CTA ===== */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,102,0,0.1) 0%, rgba(13,13,26,0) 100%);
    border-top: 1px solid rgba(255,102,0,0.1);
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-section h2 span {
    color: var(--primary);
}

.cta-section p {
    color: #888;
    font-size: 18px;
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
    background: #080810;
    padding: 60px 40px 30px;
    border-top: 2px solid rgba(255,102,0,0.2);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: var(--card);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
    background: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #444;
    font-size: 13px;
}

.footer-bottom .since {
    color: var(--primary);
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav ul { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .price-card.popular { transform: scale(1); }
}