body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0f1a;
    color: #e6e6e6;
}

/* NAVBAR */
.navbar {
    background: rgba(11, 15, 26, 0.9);
    backdrop-filter: blur(10px);
}

/* LOGO NAVBAR */
.navbar-logo {
    height: 34px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand span {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Hover sutil */
.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
    opacity: 0.9;
}


/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b0f1a, #11182f);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.3), transparent 70%);
    filter: blur(80px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border: none;
    padding: 12px 28px;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.45);
}

/* SECTIONS */
section {
    padding: 100px 0;
}

.section-title {
    font-weight: 600;
    margin-bottom: 50px;
    text-align: center;
}

/* SERVICE CARDS */
.service-card {
    background: linear-gradient(180deg, #11182f, #0b0f1a);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* PROCESS */
.process-step {
    text-align: center;
    padding: 30px;
}

.process-step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    line-height: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* CONTACT */
.contact-box {
    background: linear-gradient(180deg, #11182f, #0b0f1a);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* FOOTER */
footer {
    background: #080b14;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}