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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}


/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #202020;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;
}

.logo {
    font-size: 25px;
    font-weight: 800;
}

.logo span {
    color: #4da6ff;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #bdbdbd;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #4da6ff;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}


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

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 120px 25px 80px;

    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
}

.hero-tag,
.section-header span,
.benefits-content > span,
.cta span {
    color: #4da6ff;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 3px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 85px);
    line-height: 1.05;
    margin: 25px 0;
}

.hero h1 span {
    color: #4da6ff;
}

.hero p {
    max-width: 700px;
    margin: auto;

    color: #aaa;
    font-size: 19px;
}

.hero-buttons {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;

    font-weight: bold;

    transition: 0.3s;
}

.btn-primary {
    background: #4da6ff;
    color: #fff;
}

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

.btn-secondary {
    border: 1px solid #444;
    color: white;
}

.btn-secondary:hover {
    border-color: #4da6ff;
    color: #4da6ff;
}

.hero-decoration {
    position: absolute;

    font-size: 400px;

    color: rgba(77, 166, 255, 0.025);

    font-weight: bold;

    user-select: none;
}


/* ================= SECTIONS ================= */

.section {
    max-width: 1200px;
    margin: auto;

    padding: 110px 25px;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: auto auto 60px;
}

.section-header h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.1;
    margin: 15px 0;
}

.section-header p {
    color: #999;
}


/* ================= SERVICES ================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    background: #111;

    border: 1px solid #222;

    border-radius: 15px;

    padding: 35px 25px;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #4da6ff;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: rgba(77, 166, 255, 0.1);

    color: #4da6ff;

    font-weight: bold;

    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: #999;
}


/* ================= BENEFITS ================= */

.benefits {
    max-width: 1200px;

    margin: auto;

    padding: 110px 25px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.benefits-content h2 {
    font-size: clamp(35px, 5vw, 55px);
    line-height: 1.1;

    margin: 20px 0;
}

.benefits-content strong {
    color: #4da6ff;
}

.benefits-content p {
    color: #999;
}

.benefit-list {
    margin-top: 30px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.benefit {
    color: #ddd;
}

.benefit span {
    color: #4da6ff;
    margin-right: 8px;
}


/* CODE BOX */

.code-box {
    background: #0d0d0d;

    border: 1px solid #292929;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.code-header {
    height: 45px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 0 15px;

    border-bottom: 1px solid #222;
}

.code-header span {
    width: 11px;
    height: 11px;

    background: #444;

    border-radius: 50%;
}

.code-content {
    padding: 35px;

    font-family: monospace;

    line-height: 2;
    color: #aaa;
}

.code-content span {
    color: #4da6ff;
}

.indent {
    padding-left: 30px;
}

.indent2 {
    padding-left: 60px;
    color: #fff;
}


/* ================= PROJECTS ================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.project-card {
    background: #111;

    border: 1px solid #222;

    border-radius: 15px;

    overflow: hidden;

    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-8px);
}

.project-image {
    height: 230px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-weight: bold;

    letter-spacing: 3px;

    background: linear-gradient(
        135deg,
        #171717,
        #252525
    );
}

.project-two {
    background: linear-gradient(
        135deg,
        #111,
        #1d2d3d
    );
}

.project-three {
    background: linear-gradient(
        135deg,
        #111,
        #30251d
    );
}

.project-info {
    padding: 25px;
}

.project-info p {
    color: #999;
    margin: 10px 0 20px;
}

.project-info a {
    color: #4da6ff;
}


/* ================= PLANS ================= */

.plans-section {
    max-width: 1250px;
}

.plans-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.plan-card {
    position: relative;

    background: #111;

    border: 1px solid #292929;

    border-radius: 15px;

    padding: 40px 30px;
}

.plan-card.featured {
    border-color: #4da6ff;

    transform: scale(1.03);
}

.popular {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    background: #4da6ff;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: bold;
}

.plan-description {
    color: #999;

    margin: 15px 0;
}

.price {
    font-size: 42px;

    font-weight: bold;

    margin: 25px 0;
}

.price small {
    font-size: 14px;
    color: #999;
}

.plan-card li {
    color: #bbb;
    margin: 12px 0;
}

.plan-card .btn {
    width: 100%;

    text-align: center;

    margin-top: 25px;
}


/* ================= PROCESS ================= */

.process {
    max-width: 1100px;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.process-step {
    text-align: center;
}

.step-number {
    font-size: 40px;

    color: #4da6ff;

    font-weight: bold;

    margin-bottom: 15px;
}

.process-step p {
    color: #888;

    margin-top: 10px;
}


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

.cta {
    max-width: 1200px;

    margin: 80px auto;

    padding: 100px 25px;

    text-align: center;

    background: #101820;

    border: 1px solid #20384d;

    border-radius: 20px;
}

.cta-content {
    max-width: 750px;
    margin: auto;
}

.cta h2 {
    font-size: clamp(35px, 5vw, 60px);

    line-height: 1.1;

    margin: 20px 0;
}

.cta p {
    color: #999;

    margin-bottom: 30px;
}


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

.footer {
    border-top: 1px solid #222;

    padding: 50px 25px 20px;
}

.footer-content {
    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.footer-content p {
    color: #777;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    align-items: center;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: #4da6ff;
}

.footer-bottom {
    max-width: 1200px;

    margin: 40px auto 0;

    padding-top: 20px;

    border-top: 1px solid #222;

    color: #666;

    font-size: 13px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: auto;
    }

    .plan-card.featured {
        transform: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

}


@media (max-width: 700px) {

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: #0b0b0b;

        flex-direction: column;

        align-items: center;

        padding: 25px;

        display: none;

        border-bottom: 1px solid #222;
    }

    .nav-links.active {
        display: flex;
    }

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

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

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

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .hero p {
        font-size: 17px;
    }

}