/* CSS Variables for Easy Theming */
:root {
    --primary-color: #ff6a00;
    /* Vibrant energetic orange */
    --primary-dark: #cc5500;
    --secondary-color: #0b1c3c;
    /* Deep athletic blue */
    --dark-bg: #111b29;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;
    --success: #2ecc71;
    --danger: #e74c3c;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 106, 0, 0.4);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 0.5em;
    font-weight: 800;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-bold {
    font-weight: 700;
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--secondary-color);
}

.text-large {
    font-size: 1.25rem;
}

.text-small {
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--primary-color);
}

.highlight-secondary {
    color: var(--secondary-color);
}

.highlight-success {
    color: var(--success);
}

.color-primary {
    color: var(--primary-color);
}

.color-success {
    color: var(--success);
}

.color-white {
    color: var(--white);
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.py-large {
    padding: 5rem 0;
}

.py-medium {
    padding: 3rem 0;
}

.py-small {
    padding: 1.5rem 0;
}

.pb-small {
    padding-bottom: 1.5rem;
}

.mt-large {
    margin-top: 3rem;
}

.mt-medium {
    margin-top: 2rem;
}

.mt-small {
    margin-top: 1rem;
}

.mb-large {
    margin-bottom: 3rem;
}

.mb-medium {
    margin-bottom: 2rem;
}

.mb-small {
    margin-bottom: 1rem;
}

.w-full {
    width: 100%;
}

/* Backgrounds */
.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-red {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-dark);
    color: var(--white);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.cta-button.outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-button.primary-action {
    background-color: #ffd700;
    /* High contrast yellow for main CTA */
    color: #000;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.cta-button.primary-action:hover {
    background-color: #ffea00;
    box-shadow: 0 0 35px rgba(255, 215, 0, 0.8);
    color: #000;
}

.cta-text {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.cta-subtext {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

.pulse-animation:hover {
    animation: none;
}

/* ------------------ Specific Sections ------------------ */

/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 40%, rgba(255, 255, 255, 0.85) 100%), url('https://images.unsplash.com/photo-1576632426341-11d4da7ddc99?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 106, 0, 0.15);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-weight: 500;
}

.hero-benefits {
    margin-bottom: 2rem;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.hero-benefits li i {
    color: var(--primary-color);
    min-width: 24px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.mockup-container {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.mockup-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

.mockup-container img {
    border-radius: var(--radius-lg);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    color: var(--secondary-color);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--danger);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    width: 35px;
    height: 35px;
}

.problem-card p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Solution Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

/* Benefits Section */
.benefits-columns {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.benefit-img {
    flex: 1;
}

.benefit-img img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefits-list {
    flex: 1;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.check-icon {
    background-color: rgba(255, 106, 0, 0.15);
    color: var(--primary-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #eee;
    transition: var(--transition);
}

.pricing-card.basic {
    margin-top: 2rem;
}

.pricing-card.premium {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: none;
    transform: scale(1.05);
    z-index: 10;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
}

.card-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.price-block {
    margin: 2rem 0;
    text-align: center;
}

.old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.premium .old-price {
    color: rgba(255, 255, 255, 0.6);
}

.current-price {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1;
}

.premium .current-price {
    color: var(--white);
}

.features-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.plan-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.plan-features i {
    flex-shrink: 0;
    width: 20px;
}

/* Bonus Box within Premium */
.bonus-box {
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-title {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-list li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Why Premium Grid */
.why-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
}

.why-item i {
    color: var(--success);
}

/* Vision Section */
.vision-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-glow);
}

.step-item p {
    margin-top: 1rem;
    font-size: 1.15rem;
    font-weight: 500;
}

/* Guarantee Section */
.guarantee-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 8px solid var(--success);
}

.guarantee-icon img {
    max-width: 180px;
}

.guarantee-text h2 {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #08111e;
    color: rgba(255, 255, 255, 0.5);
    padding: 3rem 0;
    font-size: 0.85rem;
}


/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}


/* Bonuses Section */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 106, 0, 0.2);
    border-color: var(--primary-color);
}

.bonus-image-container {
    position: relative;
    width: 100%;
}

.bonus-image-container img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-bottom: 2px solid var(--primary-color);
}

.bonus-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--success);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.bonus-content {
    padding: 1.5rem;
}

.bonus-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    line-height: 1.2;
}

.bonus-content p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bonus-value {
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.strike {
    text-decoration: line-through;
    color: #888;
}


/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item[open] .faq-question {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ------------------ Media Queries (Mobile Responsiveness) ------------------ */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    .pricing-card.basic {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-benefits li {
        justify-content: center;
    }

    .benefits-columns {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .guarantee-flex {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .badge-1,
    .badge-2 {
        display: none;
        /* Simplify image on mobile */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        width: 100%;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .current-price {
        font-size: 3rem;
    }
}