:root {
    /* Base Palette - Premium Dark & Vivid Accents */
    --primary-color: #6366f1;
    /* Indigo */
    --primary-dark: #4338ca;
    --secondary-color: #ec4899;
    /* Pink */
    --accent-color: #f59e0b;
    /* Amber */
    --success-color: #10b981;
    /* Emerald */
    --info-color: #0ea5e9;
    /* Sky Blue */
    --purple-pop: #8b5cf6;
    /* Violet */

    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-light: #f8fafc;
    --text-dim: #94a3b8;
    --white: #ffffff;

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.08);

    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.15);

    --radius: 1.5rem;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    /* Base for readability */
}

/* Better mobile typography */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.02em;
    /* Tighter titling */
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Announcement Bar --- */
.announcement-bar {
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #6366f1);
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
    text-align: center;
    padding: 0.8rem;
    /* More touch area */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
    position: relative;
    z-index: 50;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Hero Section Modified --- */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    background: radial-gradient(circle at center top, #1e1b4b 0%, var(--bg-dark) 70%);
    text-align: center;
    overflow: hidden;
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}

.centered-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.full-width-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    /* Larger Desktop */
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff 20%, #c7d2fe 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
    line-height: 1.1;
}

.highlight {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    position: relative;
    white-space: nowrap;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(245, 158, 11, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin: 0 auto 3rem;
    max-width: 720px;
    font-weight: 400;
}

.center-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}


.feature-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* --- Buttons Responsive --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 3rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .cta-button {
        width: 100%;
        /* Full width on mobile */
        padding: 1.2rem 1rem;
        /* Adjust padding */
        font-size: 1.1rem;
        /* Slightly smaller font */
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -5px rgba(99, 102, 241, 0.6);
}

.cta-button.secondary {
    background: var(--white);
    color: var(--primary-dark);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    box-shadow: none;
    color: var(--primary-color);
}

.cta-button.outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(236, 72, 153, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
}

/* --- Dynamic Sections --- */
section {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
    /* prevent edge touching */
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.section-header .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* --- Audience Cards (Dynamic Colors) --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Slightly larger min for better readability */
    gap: 2rem;
    justify-content: center;
}

@media (max-width: 640px) {
    .audience-grid {
        grid-template-columns: 1fr;
        /* Stack clearly on small screens */
        gap: 1.5rem;
    }
}

.audience-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Equal heights */
}

/* Colorful top borders/glows for variety */
.audience-card:nth-child(1) {
    border-top: 4px solid var(--primary-color);
}

.audience-card:nth-child(2) {
    border-top: 4px solid var(--secondary-color);
}

.audience-card:nth-child(3) {
    border-top: 4px solid var(--accent-color);
}

.audience-card:nth-child(4) {
    border-top: 4px solid var(--success-color);
}

.audience-card:nth-child(5) {
    border-top: 4px solid var(--purple-pop);
}

.audience-card:hover {
    transform: translateY(-10px);
    background: #252e47;
    /* Slightly lighter */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.audience-card h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* --- Features (Centralized & Visual) --- */
.whats-included {
    background: linear-gradient(to bottom, var(--bg-dark), #151e32);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 640px) {
    .feature-item {
        width: 100%;
        aspect-ratio: auto;
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center items inside */
    text-align: center;
    /* Center text */
    width: 280px;
    transition: all 0.3s ease;
    flex-grow: 1;
    /* Allow growing */
    max-width: 350px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Bonuses (Vibrant) --- */
.inverted-section {
    background: linear-gradient(135deg, #4c1d95 0%, #312e81 100%);
    /* Richer Purple */
    position: relative;
}

/* Add subtle pattern overlay */
.inverted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.bonus-layout {
    display: grid;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

.bonus-card {
    background: rgba(255, 255, 255, 0.08);
    /* More visible */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.12);
}

.bonus-badge {
    background: var(--accent-color);
    color: #4c1d95;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    display: inline-block;
    margin-bottom: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Why Choose (Checklist) --- */
.why-choose {
    background: var(--bg-dark);
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Optimised min width */
    gap: 2rem;
    justify-content: center;
}

@media (max-width: 640px) {
    .benefit-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.benefit-list li {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: background 0.3s;
}

.benefit-list li:hover {
    background: var(--bg-card);
}


.check {
    background: var(--success-color);
    color: white;
    /* White check */
    width: 30px;
    height: 30px;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Pay/Pricing Cards (Reference White Theme) --- */
.pricing {
    background: linear-gradient(to bottom, #0f172a, #1e1b4b);
    padding-top: 4rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    /* Center Vertically */
}

/* White Card Base */
.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #334155;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card h3 {
    color: #1e40af;
    /* Blue */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

/* Price Box Layout */
.price-box {
    width: 100%;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: #334155;
}

/* Specific elements inside price box */
.old-price {
    text-decoration: line-through;
    color: #ef4444 !important;
    /* Light Red force */
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    display: block;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #16a34a !important;
    /* Green force */
    line-height: 1;
    letter-spacing: -1px;
    display: block;
}

.discount-tag {
    background: #ffedd5;
    color: #ea580c;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    /* Square-ish */
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
    display: inline-block;
}

.payment-info {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* List Items */
.features {
    text-align: left;
    width: 100%;
    margin-bottom: 2rem;
    background: transparent;
    padding: 0;
    border: none;
}

.features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.4;
}

.features li.unavailable {
    color: #94a3b8;
}

/* Button */
.cta-button {
    width: 100%;
    transition: all 0.2s;
}

.card button,
.card .cta-button {
    width: 100%;
    background: #16a34a;
    /* Green */
    color: white !important;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    padding: 1rem;
    border: none;
    font-size: 1.1rem;
    box-shadow: none;
    /* Flat look preferred by ref */
    margin-top: auto;
}

.card button:hover,
.card .cta-button:hover {
    background: #15803d;
    transform: none;
}

/* Outline button override */
.card.basic .cta-button.outline {
    background: #16a34a;
    color: white;
    border: none;
}

/* Premium Card specific */
.card.premium {
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 10;
    border: 2px solid #16a34a;
    /* Green border */
    background: #ffffff;
    /* Ensure white */
}

.card.premium:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e40af;
    color: white;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-proof {
    color: #ea580c;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* --- Countdown --- */
.timer {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.time-block {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
    min-width: 70px;
    padding: 0.5rem;
    text-align: center;
    border-radius: 8px;
}

.separator {
    font-size: 2rem;
    color: #94a3b8;
}

/* --- Testimonials (Cards) --- */
.testimonials-grid {
    justify-content: center;
}

.testimonial-card {
    text-align: center;
    background: linear-gradient(145deg, #1e293b, #162036);
    box-shadow: 5px 5px 15px #0b1120, -5px -5px 15px #25334a;
    border: none;
}

.profile-icon {
    font-size: 2.5rem;
    background: var(--glass-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Mobile Fixes --- */
@media (max-width: 900px) {
    .pricing-cards {
        flex-direction: column;
    }

    .card.premium {
        transform: scale(1.02);
        margin: 2rem 0;
    }

    .card.premium:hover {
        transform: scale(1.05);
    }

    .bonus-layout {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}