/* ============================================
   NERVALA MODERN DESIGN - CSS
   ============================================ */

:root {
    --primary-color: #39db66;
    --secondary-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-color: #334155;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

#mainNav {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInScale 1s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-product-img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(37, 99, 235, 0.3));
    animation: productFloat 3s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    color: #fbbf24;
    margin-right: 8px;
}

.hero-content {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-label {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-label i {
    margin-right: 8px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00e57b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00e57b 100%);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */

.why-choose-section {
    background: white;
}

.trust-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 15px;
}

.trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.rating-display .stars {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-display .rating-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.3rem;
}

.review-badge {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 16px;
    flex-grow: 1;
    font-style: italic;
}

.reviewer-name {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: white;
}

.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-works-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.how-works-section .section-title,
.how-works-section .section-subtitle {
    color: white;
}

.how-works-section .section-title::after {
    background: var(--secondary-color);
}

.how-works-content .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
}

.work-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.work-step {
    display: flex;
    gap: 24px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.work-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   BONUSES SECTION
   ============================================ */

.bonuses-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.bonus-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.bonus-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bonus-card:hover .bonus-image img {
    transform: scale(1.1);
}

.bonus-content {
    padding: 30px;
}

.bonus-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.bonus-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1rem;
}

.new-price {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
}

.bonus-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

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

.pricing-section,
.pricing-section-alt {
    background: white;
}

.pricing-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.pricing-img:hover {
    transform: scale(1.02);
}

.order-notice {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */

.ingredients-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.ingredient-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00e57b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.ingredient-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.ingredient-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
    background: white;
}

.guarantee-image img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(37, 99, 235, 0.3));
}

.guarantee-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 24px;
}

.guarantee-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.benefit-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: white;
}

.accordion-item {
    border: 2px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px 24px;
    font-size: 1.1rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #d09c42 0%, #bda06f 100%);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-size: 1.2rem;
}

.accordion-body {
    padding: 24px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* ============================================
   ORDER PROCESS SECTION
   ============================================ */

.order-process-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.order-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.order-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.order-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 16px;
}

.security-info,
.pricing-info,
.refund-info {
    background: white;
    padding: 24px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.order-content ul {
    list-style: none;
    padding-left: 0;
}

.order-content ul li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.order-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #334155 100%);
    padding: 100px 0;
}

.final-product-img {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: productFloat 3s ease-in-out infinite;
}

.final-pricing {
    margin: 30px 0;
}

.regular-price {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.regular-price del {
    color: rgba(255, 255, 255, 0.5);
}

.special-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f97316 100%);
    border: none;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00e57b 100%);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

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

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .work-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .benefit-card {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

    .final-pricing .special-price {
        font-size: 2rem;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .trust-icon {
        width: 100px;
        height: 100px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-aos] {
    pointer-events: auto;
}

.aos-animate {
    pointer-events: auto;
}

/* Smooth animations for AOS */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}
section.pricing-section-alt img {
    width: 499px;
    height: auto;
    margin: 0 auto;
}
.btn-primary {
    background: linear-gradient(135deg, #39db66 0%, #1dc06f 100%);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #09a65d91;
}