:root {
    /* Colors */
    --clr-bg-dark: #0B0E14;
    /* Deep midnight blue/black */
    --clr-bg-light: #151A25;
    /* Lighter surface */
    --clr-primary: #E5A93C;
    /* Gold/Amber */
    --clr-primary-hover: #F2C166;
    --clr-text: #FFFFFF;
    --clr-text-muted: #A0A6B1;
    --clr-card: rgba(255, 255, 255, 0.03);
    --clr-card-border: rgba(229, 169, 60, 0.15);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Utilities */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Base */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    line-height: 1.3;
    font-weight: 600;
}

.highlight {
    color: var(--clr-primary);
}

.text-center {
    text-align: center;
}

.mt-xl {
    margin-top: 3rem;
}

/* Layout Base */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Sections */
.section-dark {
    background-color: var(--clr-bg-dark);
    padding: 4rem 0;
}

.section-light {
    background-color: var(--clr-bg-light);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header .title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.section-header .intro-text {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--clr-primary), #B8860B);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(229, 169, 60, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 169, 60, 0.4);
    background: linear-gradient(135deg, var(--clr-primary-hover), #D4AF37);
}

.secondary-btn {
    background: transparent;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    box-shadow: none;
}

.secondary-btn:hover {
    background: rgba(229, 169, 60, 0.1);
    color: var(--clr-primary-hover);
    box-shadow: 0 8px 25px rgba(229, 169, 60, 0.2);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-primary);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-primary);
}

/* Animations Core */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 169, 60, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(229, 169, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 169, 60, 0);
    }
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

/* 1. Hero Section */
.hero {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 5rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.headline {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Carousel */
.hero-mockups {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 2.5rem auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(229, 169, 60, 0.15);
}

.hero-mockups img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9/19;
    /* Approximating phone mockup aspect ratio */
    object-fit: cover;
}

/* Swiper Bullet Styling Override */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
    background: var(--clr-primary);
}

.hero-mockups .swiper-pagination {
    bottom: 10px !important;
}

.social-proof-text {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-proof-text i {
    color: var(--clr-primary);
    font-size: 1.2rem;
}

.hero-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(229, 169, 60, 0.06) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* 2. Problems & 4. Benefits Cards Base */
.card {
    background: var(--clr-card);
    border: 1px solid var(--clr-card-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 169, 60, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    text-align: center;
}

.problem-card .card-icon {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.problem-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* 3. How It Works */
.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-primary), rgba(229, 169, 60, 0.1));
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--clr-bg-dark);
    border: 2px solid var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 0 15px rgba(229, 169, 60, 0.2);
}

.step-content {
    background: var(--clr-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    flex-grow: 1;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.step-title i {
    color: var(--clr-primary);
    font-size: 1.5rem;
}

.step-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* 4. Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: transparent;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--clr-primary);
    flex-shrink: 0;
    background: rgba(229, 169, 60, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* 5. Testimonials */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.testimonial-card {
    text-align: left;
    padding: 3rem;
    position: relative;
    height: auto;
}

.decoration-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(229, 169, 60, 0.1);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--clr-text);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author .avatar i {
    font-size: 3rem;
    color: var(--clr-primary);
}

.author-info strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--clr-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 6. Pricing */
.pricing {
    position: relative;
    overflow: hidden;
}

.pricing-card {
    background: linear-gradient(to bottom, #11141E, #0A0C13);
    border: 1px solid var(--clr-primary);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(229, 169, 60, 0.1);
}

.pricing-header {
    padding: 2.5rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-text-muted);
}

.price-box .old-price {
    text-decoration: line-through;
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.current-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--clr-primary);
    margin-top: 0.5rem;
}

.current-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.current-price .value {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.pricing-body {
    padding: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.features-list li i {
    color: var(--clr-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.main-cta {
    display: block;
    width: 100%;
}

.guarantee-box {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

.guarantee-box i {
    color: #4CAF50;
    font-size: 1.5rem;
}

.pricing-glow {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(229, 169, 60, 0.05) 0%, rgba(11, 14, 20, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

/* 7. Final CTA */
.final-cta {
    padding: 6rem 0;
    position: relative;
}

.reinforcement-text {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
}

/* 8. Footer */
.footer {
    background: #050608;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-links a {
    color: var(--clr-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--clr-primary);
}

.footer-links .separator {
    color: var(--clr-text-muted);
    margin: 0 0.5rem;
}

.footer-contact p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .section-header .title {
        font-size: 1.8rem;
    }

    .steps-container::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .pricing-body {
        padding: 1.5rem;
    }

    .current-price .value {
        font-size: 3.5rem;
    }
}