﻿
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
    color: #2b2b2b;
    line-height: 1.6;
}

/* LAYOUT */
.pricing-container {
    max-width: 1240px;
    margin: 160px auto 80px;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* CARD BASE */
.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(245, 158, 11, 0.25);
    }

/* IMAGE */
.card-media {
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
}

    .card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        filter: brightness(0.8);
        transition: transform 0.4s ease, filter 0.3s ease;
    }

.card:hover .card-media img {
    transform: scale(1.05);
    filter: brightness(1);
}

/* TITLES */
.card-title {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: #eba123;
    padding: 1.75rem 2rem 0.5rem;
}

/* BODY */
.card-body {
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .card-body p {
        color: #555;
        margin-bottom: 1rem;
    }

/* FEATURES */
.features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.55rem;
    font-weight: 500;
    color: #333;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
    font-weight: 700;
}

.cta {
    margin-top: auto;
    background: #eab124;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    padding: 0.85rem;
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cta:hover {
    background: #4d4949;
}
.terms-apply-info-link {
    color: #eab124;
}
.disclaimer {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #a67c00;
}
.card.demo {
    background: #fffdf6;
    padding: 2.25rem;
}

.demo-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.demo-text {
    font-size: 1.1rem;
    color: #7c5800;
    margin-bottom: 1.25rem;
}

.demo-cta {
    background: #eab124;
}

/* MOBILE */
@media (max-width: 768px) {
    .pricing-container {
        margin-top: 120px;
    }

    .card-body,
    .card.demo {
        padding: 1.5rem;
    }
}
