/* ================================
   RESET
================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #080b14;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: auto;
}


/* ================================
   NAVBAR
================================ */

.navbar {
    width: 100%;
    background: rgba(8, 11, 20, 0.95);
    border-bottom: 1px solid #1d2435;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 25px;
    font-weight: bold;
    color: #4da3ff;
}

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    color: #aeb7c8;
    font-size: 15px;
    transition: 0.3s;
}

.navbar nav a:hover {
    color: #ffffff;
}

.nav-button {
    background: #328bea;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-button:hover {
    background: #2177d0;
    transform: translateY(-2px);
}


/* ================================
   HERO
================================ */

.hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(50, 139, 234, 0.18),
            transparent 35%
        );
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.hero-badge {
    display: inline-block;
    padding: 7px 14px;
    margin-bottom: 20px;
    border: 1px solid #23476e;
    border-radius: 50px;
    color: #55aaff;
    background: rgba(50, 139, 234, 0.08);
    font-size: 13px;
    font-weight: bold;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: #3d9bff;
}

.hero-text p {
    max-width: 600px;
    color: #9da8bb;
    font-size: 17px;
    margin-bottom: 30px;
}


/* ================================
   HERO BUTTON
================================ */

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary {
    background: #328bea;
}

.btn-primary:hover {
    background: #2177d0;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #2b3548;
    color: #c5cedc;
}

.btn-secondary:hover {
    border-color: #328bea;
    color: #ffffff;
}


/* ================================
   HERO SERVER CARD
================================ */

.hero-card {
    padding: 30px;
    background: #101622;
    border: 1px solid #202b3e;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.server-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6ee7a0;
    font-size: 14px;
    margin-bottom: 25px;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #36d879;
    box-shadow: 0 0 10px #36d879;
}

.hero-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.hero-card > p {
    color: #8d99ad;
    margin-bottom: 25px;
}

.server-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.server-info div {
    background: #171f2d;
    padding: 13px 10px;
    border-radius: 8px;
    text-align: center;
}

.server-info small {
    display: block;
    color: #7f8b9e;
    font-size: 11px;
}

.server-info strong {
    font-size: 14px;
}

.ip-box {
    background: #080b14;
    border: 1px solid #273349;
    padding: 13px;
    border-radius: 8px;
    text-align: center;
    color: #55aaff;
    font-family: monospace;
}

/* ================================
   SECTION TITLE
================================ */

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title span {
    color: #3d9bff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 38px;
    margin: 10px 0 12px;
}

.section-title p {
    color: #8f9bae;
}


/* ================================
   HOSTING
================================ */

.hosting {
    padding: 100px 0;
    background: #0b101b;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hosting-card {
    position: relative;
    padding: 35px 30px;
    background: #111827;
    border: 1px solid #202b3e;
    border-radius: 15px;
    transition: 0.3s;
}

.hosting-card:hover {
    transform: translateY(-8px);
    border-color: #328bea;
}

.hosting-card.popular {
    border-color: #328bea;
    box-shadow: 0 15px 50px rgba(50, 139, 234, 0.12);
}

.popular-label {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 5px 9px;
    border-radius: 5px;
    background: #328bea;
    color: #ffffff;
    font-size: 9px;
    font-weight: bold;
}

.hosting-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.package-desc {
    color: #7f8b9e;
    font-size: 14px;
    margin-bottom: 25px;
}

.price {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 25px;
}

.price span {
    color: #7f8b9e;
    font-size: 13px;
    font-weight: normal;
}

.hosting-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.hosting-card li {
    padding: 9px 0;
    border-bottom: 1px solid #1d2636;
    color: #aeb8c8;
    font-size: 14px;
}

.hosting-card li:last-child {
    border-bottom: none;
}

.package-button {
    display: block;
    width: 100%;
    padding: 13px;
    text-align: center;
    border-radius: 8px;
    background: #1a2332;
    border: 1px solid #29364a;
    color: #ffffff;
    font-weight: bold;
    transition: 0.3s;
}

.hosting-card.popular .package-button,
.package-button:hover {
    background: #328bea;
    border-color: #328bea;
}


/* ================================
   FEATURES
================================ */

.features {
    padding: 100px 0;
    background: #080b14;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px 25px;
    background: #101622;
    border: 1px solid #202b3e;
    border-radius: 14px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #328bea;
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
    background: rgba(50, 139, 234, 0.12);
    font-size: 23px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #8995a8;
    font-size: 14px;
}

/* ================================
   CTA
================================ */

.cta {
    padding: 90px 0;
    text-align: center;
    background: #0b101b;
    border-top: 1px solid #1d2636;
    border-bottom: 1px solid #1d2636;
}

.cta h2 {
    font-size: 40px;
    margin-bottom: 12px;
}

.cta p {
    color: #8f9bae;
    margin-bottom: 30px;
}


/* ================================
   FOOTER
================================ */

footer {
    padding: 60px 0 20px;
    background: #060910;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-content h3 {
    color: #3d9bff;
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-content h4 {
    margin-bottom: 15px;
}

.footer-content p {
    max-width: 400px;
    color: #7f8b9e;
    font-size: 14px;
}

.footer-content a {
    display: block;
    width: fit-content;
    margin-bottom: 8px;
    color: #8995a8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-content a:hover {
    color: #3d9bff;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #1b2331;
    text-align: center;
}

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


/* ================================
   RESPONSIVE - TABLET
================================ */

@media (max-width: 900px) {

    .navbar nav {
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hosting-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}


/* ================================
   RESPONSIVE - HP
================================ */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    /* Navbar */

    .navbar .container {
        min-height: 65px;
    }

    .navbar nav {
        display: none;
    }

    .logo {
        font-size: 21px;
    }

    .nav-button {
        padding: 9px 13px;
        font-size: 12px;
    }


    /* Hero */

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-buttons {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        flex: 1;
        padding: 12px 15px;
    }

    .hero-card {
        padding: 23px;
    }

    .server-info {
        gap: 6px;
    }

    .server-info div {
        padding: 10px 5px;
    }

    .server-info strong {
        font-size: 12px;
    }


    /* Section */

    .hosting,
    .features {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 35px;
    }

    .section-title h2 {
        font-size: 29px;
    }


    /* Hosting */

    .hosting-grid {
        grid-template-columns: 1fr;
    }

    .hosting-card {
        padding: 30px 25px;
    }


    /* Features */

    .features-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: 30px;
    }


    /* Footer */

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

/* =========================
   ABOUT OWNER
========================= */

.about-owner {
    padding: 100px 20px;
    background: #080808;
}

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

.section-title span {
    color: #ff2020;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

.section-title h2 {
    color: #ffffff;
    font-size: 38px;
    margin: 8px 0;
}

.section-title p {
    color: #888;
}

.owner-card {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 55px;
    align-items: center;
    padding: 30px;
    background: linear-gradient(145deg, #151515, #090909);
    border: 1px solid #292929;
    border-radius: 24px;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.08);
}

.owner-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #3a3a3a;
}

.owner-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.owner-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 15px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid #ff2020;
    border-radius: 8px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.owner-badge span {
    color: #ff2020;
}

.owner-label {
    color: #ff2020;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.owner-info h2 {
    color: #ffffff;
    font-size: 42px;
    margin: 8px 0 0;
}

.owner-info h3 {
    color: #aaa;
    font-size: 17px;
    font-weight: normal;
    margin-bottom: 25px;
}

.owner-info p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 15px;
}

.owner-stats {
    display: flex;
    gap: 35px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #292929;
}

.owner-stats div {
    display: flex;
    flex-direction: column;
}

.owner-stats strong {
    color: #ffffff;
    font-size: 22px;
}

.owner-stats small {
    color: #777;
    margin-top: 3px;
}

/* MOBILE */

@media (max-width: 768px) {

    .about-owner {
        padding: 70px 15px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .owner-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 18px;
    }

    .owner-image img {
        height: 380px;
    }

    .owner-info {
        padding: 5px;
    }

    .owner-info h2 {
        font-size: 34px;
    }

    .owner-stats {
        gap: 20px;
    }
}