/* Global */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Soft premium glow */
body::before {
    content: "";
    position: fixed;
    width: 500px;
    height: 500px;
    background: rgba(212, 175, 55, 0.08);
    /* gold tone */
    filter: blur(120px);
    top: 10%;
    left: 10%;
    z-index: -1;
}

/* subtle white light */
body::after {
    content: "";
    position: fixed;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    filter: blur(100px);
    bottom: 10%;
    right: 10%;
    z-index: -1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    align-items: center;
}

.logo {
    font-weight: 600;
}

.back-btn {
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero p {
    color: rgba(255, 255, 255, 0.7);
}

/* Features */
.features {
    padding: 40px 8%;
}

/* Row layout */
.feature-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

/* Reverse */
.feature-row.reverse {
    flex-direction: row-reverse;
}

/* Text */
.text {
    flex: 1;
}

.text h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Image */
.image {
    flex: 1;
}

.image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: 0.3s;
}

.image img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        text-align: center;
    }

    .feature-row.reverse {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 28px;
    }
}