/* ================= Pricing Plan Pages ================= */

/* Base */
* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    background-color: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Header */
.prod-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #020617;
    border-bottom: 1px solid #1e293b;
}

.prod-logo {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
}

.prod-btn {
    padding: 10px 20px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.prod-btn:hover {
    background-color: #1d4ed8;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-1px);
}

/* Hero Section */
.prod-hero {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
    background: radial-gradient(circle at top, #1e293b, #020617);
}

/* Content Card */
.prod-content {
    max-width: 720px;
    width: 100%;
    background-color: #020617;
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

/* Title */
.prod-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #f8fafc;
}

/* Price description */
.prod-content p {
    font-size: 18px;
    color: #93c5fd;
    margin-bottom: 30px;
}

/* Feature List */
.prod-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.prod-content ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #cbd5f5;
    border-bottom: 1px solid #1e293b;
}

.prod-content ul li:last-child {
    border-bottom: none;
}

.prod-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* CTA Button */
.prod-primary-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 700;
    border-radius: 10px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.prod-primary-btn:hover {
    background-color: #1e40af;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    transform: translateY(-2px);
}

/* Footer */
.prod-footer {
    text-align: center;
    padding: 25px;
    background-color: #020617;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid #1e293b;
}

/* Animation Support */
.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .prod-nav {
        padding: 18px 25px;
    }

    .prod-content {
        padding: 40px 25px;
    }

    .prod-content h1 {
        font-size: 32px;
    }

    .prod-content p {
        font-size: 16px;
    }
}
