@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --background-color: #0B132B;
    --white-color: #FFFFFF;
    --yellow-color: #F9E900;
    --darkblue-color: #171738;
    --dimgray-color: #637074;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-position: 50% 50%;
    background-size: 1.1rem 1.1rem;
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
}

/* ============================
   PRICING SECTION
   ============================ */

.pricing-section {
    position: relative;
    padding: 5rem 1rem;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.hero-yellow-circle2 {
    width: 1000px;
    height: 1000px;
    background-color: var(--yellow-color);
    filter: blur(100px);
    opacity: 0.1;
    border-radius: 50%;
    position: absolute;
    right: -500px;
    top: -300px;
    z-index: -1;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Hero */
.pricing-container h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.pricing-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    color: var(--yellow-color);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.1s;
}

.pricing-description {
    font-size: 1rem;
    font-weight: 200;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 1.2rem auto;
    line-height: 1.6;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.15s;
}

.pricing-promise {
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    color: var(--yellow-color);
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

.pricing-promise i {
    font-size: 1.2rem;
}

/* ============================
   PRICING GROUPS
   ============================ */

.pricing-group {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.pricing-group-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-group-title i {
    font-size: 1.6rem;
    color: var(--yellow-color);
}

/* ============================
   PRICING CARDS
   ============================ */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 233, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--yellow-color);
    background: rgba(249, 233, 0, 0.04);
    box-shadow: 0 0 30px rgba(249, 233, 0, 0.06);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(249, 233, 0, 0.1);
}

/* Card Header */
.pricing-card-header {
    margin-bottom: 1.5rem;
}

.pricing-badge {
    display: inline-block;
    background-color: var(--yellow-color);
    color: var(--darkblue-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.8rem;
    border-radius: 2rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yellow-color);
    line-height: 1.2;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.6;
}

.pricing-note {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
}

/* Best For */
.pricing-best-for {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================
   FEATURES LIST
   ============================ */

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.9rem;
    font-weight: 300;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pricing-features li i {
    color: var(--yellow-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature-detail {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
}

/* ============================
   ADD-ON PRICING
   ============================ */

.pricing-addon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.8rem;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
}

.addon-label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 0.3rem;
}

.addon-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--yellow-color);
    display: block;
    margin-bottom: 0.8rem;
}

.addon-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.addon-examples strong {
    color: var(--white-color);
    font-weight: 500;
}

/* ============================
   PERFECT FOR TAGS
   ============================ */

.pricing-perfect-for {
    margin-bottom: 1.5rem;
}

.pricing-perfect-for > span {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.6rem;
}

.perfect-for-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.perfect-for-tags .tag {
    font-size: 0.78rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.3rem 0.7rem;
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================
   CTA BUTTON
   ============================ */

.pricing-cta {
    display: block;
    text-align: center;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--yellow-color);
    border-radius: 3rem;
    color: var(--yellow-color);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.pricing-cta:hover {
    background: var(--yellow-color);
    color: var(--darkblue-color);
    transform: scale(1.03);
}

.pricing-cta-featured {
    background: var(--yellow-color);
    color: var(--darkblue-color);
}

.pricing-cta-featured:hover {
    background: var(--white-color);
    color: var(--darkblue-color);
}

/* ============================
   INFO GRID (Bottom Sections)
   ============================ */

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 6rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.pricing-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
}

.pricing-info-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yellow-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-info-card h3 i {
    font-size: 1.4rem;
}

.pricing-info-card > p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-info-card > ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.pricing-info-card > ul li {
    font-size: 0.88rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-info-card > ul li i {
    color: var(--yellow-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Info Examples (page types) */
.info-examples {
    margin-top: 0.5rem;
}

.info-examples-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.info-tags span {
    font-size: 0.78rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 0.4rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Info Excludes (update limitations) */
.info-excludes {
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-excludes-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.info-excludes ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-excludes ul li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-excludes ul li i {
    color: rgba(255, 100, 100, 0.7);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Email Examples */
.email-examples {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.email-example {
    font-size: 0.88rem;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.5rem 0.8rem;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Source Sans 3', monospace;
}

.email-cost {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--yellow-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.email-cost i {
    font-size: 1.1rem;
}

/* Payment Structure */
.payment-structure {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.payment-block {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0.6rem;
    padding: 1rem;
}

.payment-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--yellow-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.payment-block ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.payment-block ul li {
    font-size: 0.88rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-block ul li i {
    color: var(--yellow-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-info-grid {
        grid-template-columns: 1fr;
    }

    .pricing-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-info-card {
        padding: 1.5rem;
    }
}
