:root {
    --primary-color: #fe320b;
    --primary-hover: #e02d0a;
    --secondary-color: #d62b09;
    --accent-color: #ff5a36;
    --text-color: #f8f9fa;
    --text-muted: #adb5bd;
    --bg-color: #212529;
    --card-bg: #2b2d42;
    --card-hover: #343a40;
    --featured-bg: #1a1b2e;
    --success-color: #4bb543;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #1a1b2e 0%, #2b2d42 100%);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #ffb8b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.pricing-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Pricing Cards */
.pricing-container {
    padding: 2rem 0 2rem;
    margin: 0;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 1800px;
    padding: 0 2rem;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: visible;
    width: 100%;
    max-width: 340px;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.card-label {
    position: absolute;
    top: -15px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(254, 50, 11, 0.15);
    color: var(--primary-color);
    z-index: 2;
}

.card-label.popular {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(254, 50, 11, 0.4);
}

.card-header {
    padding: 2.5rem 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: visible;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.price {
    margin: 1.5rem 0 0.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
    margin-right: 0.25rem;
    color: var(--accent-color);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    position: relative;
}

.period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.5rem;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.price-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.5rem 0;
}

.savings {
    background: rgba(254, 50, 11, 0.1);
    color: var(--accent-color);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.price-discount-percentage {
    background: rgb(55, 154, 222);
    color: white;
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.features i {
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    color: var(--primary-color);
    font-size: 1rem;
}

.features li strong {
    color: #ffffff;
    font-weight: 500;
}

.card-footer {
    margin-top: auto;
    padding-top: 0.5rem;
}

.description {
    font-size: 0.95rem;
    padding: 0rem 2rem 1rem 2rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 50, 11, 0.4);
}

.featured-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color)) !important;
    font-size: 1rem;
    padding: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-btn::before {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color)) !important;
}

.featured-btn:hover {
    box-shadow: 0 5px 20px rgba(254, 50, 11, 0.4) !important;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-badges i {
    color: var(--primary-color);
}

.discount-banner .g-bg-primary{
    border-radius: 12px;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.8), rgba(43, 45, 66, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin: 4rem auto;
    max-width: 1000px;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
}

.guarantee-content i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(254, 50, 11, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.guarantee-content p {
    color: var(--text-muted);
    margin: 0;
}


/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #1a1b2e 0%, #2b2d42 100%);
    padding: 5rem 0;
    margin-top: 4rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #ffffff;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Terms of Service checkbox */
.center-container {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    text-align: center; /* center text alignment */
}

.acceptance-checkbox {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 15px;
    cursor: pointer;
}

.acceptance-checkbox input[type="checkbox"] {
    width: 22px; /* bigger size */
    height: 22px;
    accent-color: #fe320b; /* brand color for box + tick */
    border-radius: 6px; /* rounded corners */
    margin-right: 10px;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-cards {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .pricing-card {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2.25rem;
    }
    
    .pricing-hero p {
        font-size: 1.1rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .card-header {
        padding: 2rem 1.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content i {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 4rem 1rem;
    }
    
    .pricing-hero h1 {
        font-size: 1.8rem;
    }
    
    .amount {
        font-size: 3rem;
    }

    .card-header, .card-body {
        padding: 1.5rem 1.25rem;
    }
    
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}