/* ========================================
   PRICING PAGE STYLES
   ======================================== */

/* Hero Section */
.pricing-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #b9ff66;
    animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: #b9ff66;
}

.confetti:nth-child(2) {
    left: 20%;
    animation-delay: 0.5s;
    background: #ffeb3b;
}

.confetti:nth-child(3) {
    left: 30%;
    animation-delay: 1s;
    background: #ff9800;
}

.confetti:nth-child(4) {
    left: 40%;
    animation-delay: 1.5s;
    background: #b9ff66;
}

.confetti:nth-child(5) {
    left: 50%;
    animation-delay: 2s;
    background: #2196f3;
}

.confetti:nth-child(6) {
    left: 60%;
    animation-delay: 0.3s;
    background: #e91e63;
}

.confetti:nth-child(7) {
    left: 70%;
    animation-delay: 0.8s;
    background: #b9ff66;
}

.confetti:nth-child(8) {
    left: 80%;
    animation-delay: 1.3s;
    background: #9c27b0;
}

.confetti:nth-child(9) {
    left: 90%;
    animation-delay: 1.8s;
    background: #00bcd4;
}

.confetti:nth-child(10) {
    left: 95%;
    animation-delay: 2.3s;
    background: #b9ff66;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Main Illustration */
.pricing-illustration {
    text-align: center;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite;
}

.main-illustration {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(185, 255, 102, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Content */
.pricing-content {
    text-align: center;
}

.oops-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.oops-badge i {
    font-size: 24px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.2;
}

.pricing-title .highlight {
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

.pricing-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #b9ff66;
    z-index: -1;
    animation: underline-grow 1s ease-out;
}

@keyframes underline-grow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* Free Announcement */
.free-announcement {
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 12px 40px rgba(185, 255, 102, 0.4);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 12px 40px rgba(185, 255, 102, 0.4);
    }

    50% {
        box-shadow: 0 16px 50px rgba(185, 255, 102, 0.6);
    }
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #b9ff66;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.free-badge i {
    font-size: 20px;
}

.free-text {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.free-highlight {
    color: #fff;
    background: #000;
    padding: 4px 16px;
    border-radius: 8px;
    display: inline-block;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

.free-subtext {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* Free Features */
.free-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.free-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
    transition: all 0.3s ease;
}

.free-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.free-feature i {
    font-size: 28px;
    color: #b9ff66;
}

.free-feature span {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

/* CTA Buttons */
.pricing-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn i {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    color: #000;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
}

.btn-secondary {
    background: #fff;
    color: #000;
    border: 3px solid #000;
    box-shadow: 0 6px 0 #000;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #000;
    background: #f0f0f0;
}

/* Fun Message */
.fun-message {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #b9ff66;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fun-message p {
    font-size: 16px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.fun-message i {
    font-size: 24px;
    color: #ffeb3b;
}

/* Why Free Section */
.why-free-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: #000;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

.why-free-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.why-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 0 8px 0 #000;
    transition: all 0.4s ease;
    text-align: center;
    flex: 1 1 300px;
    max-width: 380px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 0 #000;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #b9ff66 0%, #a8e65c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid #000;
}

.why-icon i {
    font-size: 36px;
    color: #000;
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.why-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Future Plans Section */
.future-plans-section {
    padding: 80px 20px;
}

.future-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid #000;
    box-shadow: 0 8px 0 #000;
}

.future-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.future-text i {
    font-size: 24px;
    color: #b9ff66;
}

.future-list {
    list-style: none;
    padding: 0;
}

.future-list li {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.future-list i {
    font-size: 20px;
    color: #b9ff66;
}

.future-illustration {
    text-align: center;
}

.future-illustration i {
    font-size: 120px;
    color: #b9ff66;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #b9ff66;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #b9ff66;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #b9ff66;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 1000px) {
    .pricing-container {
        padding: 0;
        max-width: 100%;
    }

    .why-free-grid {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .why-card {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-free-grid {
        flex-direction: column;
    }

    .why-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 0;
    }

    .pricing-title {
        font-size: 32px;
    }

    .free-text {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .future-content {
        grid-template-columns: 1fr;
    }

    .final-cta-content h2 {
        font-size: 32px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 18px;
    }
}