body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f172a;
    color: #fff;
}

/* HEADER */
.topbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

nav a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* HERO */
.hero {
    position: relative;
    height: 90vh;
    background: url('https://picsum.photos/1600/900?tech') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* BUTTON */
.btn {
    background: #06b6d4;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    text-align: center;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* CARDS */
.card {
    background: rgba(255,255,255,0.05);
    margin: 15px;
    padding: 20px;
    border-radius: 15px;
    width: 260px;
}

/* PRICING NEW DESIGN */
.price-card {
    background: linear-gradient(145deg, #1e293b, #020617);
    border-radius: 20px;
    padding: 30px;
    margin: 20px;
    width: 280px;
    text-align: center;
    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card h2 {
    font-size: 32px;
    color: #06b6d4;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-card button {
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #06b6d4;
    color: white;
    cursor: pointer;
}

.featured {
    border: 2px solid #06b6d4;
}

/* CTA CENTER FIX */
.cta {
    text-align: center;
}

.cta .btn {
    display: inline-block;
}

/* FOOTER FIX */
.footer {
    background: #020617;
    padding: 50px 20px;
}

.footer-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    text-align: left;
}

.footer-grid div {
    max-width: 250px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.7;
}