/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0f1a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 14px 28px;
    background: rgba(15,19,42,0.95);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.navbar .logo {
    font-size: 26px;
    font-weight: 700;
    color: #00c4a2;
    justify-content: center;
     align-items: center;
}

.navbar nav a {
    margin-left: 22px;
    text-decoration: none;
    color: #e0e0e0;
    font-size: 15px;
    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: #00c4a2;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    padding: 120px 24px 60px;
    gap: 30px;
    text-align: center;
}

.hero-left h1 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-left p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #00c4a2;
    color: #0b0f1a;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #00a886;
}

/* HERO MOCKUP */
.hero-right {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.hero-mockup {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* SECTIONS */
.section {
    padding: 70px 24px;
}

.section.alt {
    background: #10132a;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center;
    color: #ffffff;
}

/* GRID CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.card {
    background: #1c2038;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card p {
    font-size: 15px;
    color: #c0c0c0;
}

/* STEPS */
.steps {
    max-width: 400px;
    margin: auto;
    display: grid;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1c2038;
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.num {
    background: #00c4a2;
    color: #0b0f1a;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* CONTACT */
.contact-section .desc {
    text-align: center;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.contact-box {
    max-width: 360px;
    margin: auto;
    padding: 24px;
    background: #1c2038;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    text-align: center;
}

.contact-box p {
    margin-bottom: 10px;
    color: #c0c0c0;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
    background: #0b0f1a;
}

/* RESPONSIVE */
@media (min-width: 900px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    .hero-left {
        max-width: 520px;
    }
}

.about-text {
    max-width: 850px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
    color: #c8c8c8;
    text-align: center;
}

.about-list {
    max-width: 850px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-item {
    background: #1c2038;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    color: #d5d5d5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

@media(max-width:900px) {
    .about-text, .about-list {
        padding: 0 12px;
    }
}

.tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.tag.open {
    background: #00c4a2;
    color: #0b0f1a;
}

.tag.soon {
    background: #ffaa00;
    color: #0b0f1a;
}

.tag.closed {
    background: #555;
    color: #e0e0e0;
}
