* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0f0f0f;
    color: white;
    min-height: 100vh;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #000;
}

.logo {
    color: #ff4500;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff4500;
}


.pricing {
    padding: 80px 8%;
}

.heading {
    text-align: center;
    margin-bottom: 60px;
}

.heading h1 {
    font-size: 3rem;
    color: #ff4d00;
}

.heading p {
    color: #ccc;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    width: 320px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;

    opacity: 0;
    transform: translateY(100px);

    transition: 0.5s;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.6);
}

.card h2 {
    margin-bottom: 15px;
}

.card h3 {
    font-size: 2.5rem;
    color: #ff4d00;
    margin-bottom: 20px;
}

.card h3 span {
    font-size: 1rem;
    color: #aaa;
}

.card ul {
    list-style: none;
    margin-bottom: 25px;
}

.card ul li {
    margin: 12px 0;
}

.btn {
    padding: 15px 35px;
    border: none;
    background: #ff4d00;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    transition: .4s;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #ff4d00;
}

.popular {
    border: 2px solid #ff4d00;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #1c1c1c;
    min-width: 220px;

    list-style: none;
    display: none;

    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 10px 20px rgba(0,0,0,.3);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #ff4d00;
    color: white;
}

.dropdown:hover .dropdown-menu {
    display: block;
}


.dropdown > a i {
    margin-left: 6px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff4d00;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: bold;
}

@media(max-width:768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}

footer {
    text-align: center;
    padding: 20px;
    background: #000;
}