/* style.css - A professional and clean stylesheet for Innovations Live */

/* ---=== Global Reset & Typography ===--- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ---=== Header & Navigation ===--- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}

.logo span {
    color: #4f46e5;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-links a:hover {
    color: #4f46e5;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #4f46e5;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ---=== Hero Section ===--- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    color: #111827;
    padding-top: 100px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text .highlight-text {
    color: #4f46e5;
}

.hero-text p.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4b5563;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


/* ---=== Buttons ===--- */
.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background-color: #4f46e5;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #4338ca;
    box-shadow: 0 7px 20px rgba(79, 70, 229, 0.3);
}

/* ---=== Main Content & Cards ===--- */
section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111827;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    border-color: #c7d2fe;
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.card p, .card ul {
    color: #4b5563;
    line-height: 1.7;
}

.card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

/* ---=== Services Section ===--- */
.service-card {
    text-align: center;
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #4f46e5;
}

/* ---=== Products & Social Section ===--- */
.product-showcase {
    background-color: #111827;
    padding: 5rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.product-showcase h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-showcase p {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ---=== Pricing Section ===--- */
#pricing .pricing-content {
    background-color: #f0f9ff;
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e0f2fe;
}

.pricing-content p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
}

.pricing-content strong {
    color: #0c4a6e;
    font-weight: 600;
}
.pricing-content .highlight-text{
    color: #4f46e5;
}

/* ---=== Footer ===--- */
footer {
    background: #111827;
    color: #d1d5db;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 4px solid #4f46e5;
}

footer a {
    color: #9ca3af;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #6366f1;
}

footer p {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}


/* ---=== Downloads Page Specific Styles ===--- */
.downloads-hero {
    padding: 8rem 2rem 6rem;
    background-color: #f9fafb;
    text-align: center;
}

.downloads-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.downloads-hero p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.bundle-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: flex-start;
}

.bundle-features h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item .icon {
    font-size: 1.5rem;
    color: #4f46e5;
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #4b5563;
}

.purchase-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 120px;
}

.purchase-card-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.purchase-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4f46e5;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
}

.purchase-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

.includes-list {
    list-style: none;
    margin: 1.5rem 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.includes-list .icon-check {
    color: #22c55e;
}

.secure-payment {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* ---=== Responsive Design ===--- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        grid-row: 1;
        margin-bottom: 3rem;
    }
    .bundle-container {
        grid-template-columns: 1fr;
    }
    .purchase-card {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 73px; /* Adjust based on header height */
        right: -100%;
        width: 100%;
        height: calc(100vh - 73px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: #333;
        border-radius: 2px;
    }

    .hero-text h1, .downloads-hero h1 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 4rem 1rem;
    }
}
.strikethrough {
    text-decoration: line-through;
    color: #9ca3af;
}