﻿:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
    --green: #10B981;
    --purple: #8B5CF6;
    --orange: #F59E0B;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero - FREE Platform Announcement */
.hero-free {
    background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-free::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-free h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-free .tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #1e293b;
    font-weight: 700;
}

.free-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.free-benefit {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.free-benefit i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.free-benefit h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.free-benefit p {
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Tagline Section */
.tagline-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.tagline-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tagline-section .subtitle {
    font-size: 1.4rem;
    color: #64748b;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.tagline-section .big-quote {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--zoogaboog-blue);
    margin-top: 2rem;
    font-style: italic;
}

/* Platform Access Section */
.platform-access {
    padding: 6rem 0;
    background: #f9fafb;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateY(-6px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.category-card:nth-child(1) .category-icon { background: #8B5CF6; }
.category-card:nth-child(2) .category-icon { background: #6366F1; }
.category-card:nth-child(3) .category-icon { background: #06B6D4; }
.category-card:nth-child(4) .category-icon { background: #EC4899; }
.category-card:nth-child(5) .category-icon { background: #10B981; }
.category-card:nth-child(6) .category-icon { background: #F59E0B; }
.category-card:nth-child(7) .category-icon { background: #EF4444; }
.category-card:nth-child(8) .category-icon { background: #14B8A6; }
.category-card:nth-child(9) .category-icon { background: var(--zoogaboog-blue); }

.category-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.category-count {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zoogaboog-blue);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 1rem;
}

/* How Pricing Works */
.how-pricing-works {
    padding: 6rem 0;
    background: white;
}

.pricing-explanation {
    max-width: 900px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
}

.pricing-explanation h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-explanation p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.pricing-points {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-points li {
    padding: 1rem 0;
    display: flex;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-points li:last-child {
    border-bottom: none;
}

.pricing-points i {
    color: var(--green);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-points strong {
    color: #1e293b;
    font-weight: 800;
}

/* Pricing Examples */
.pricing-examples {
    padding: 6rem 0;
    background: #f9fafb;
}

.examples-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
}

.examples-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.examples-table thead {
    background: #1e293b;
    color: white;
}

.examples-table th {
    padding: 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: left;
}

.examples-table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.examples-table tbody tr:last-child {
    border-bottom: none;
}

.examples-table tbody tr:hover {
    background: #f9fafb;
}

.examples-table td {
    padding: 1.5rem;
    vertical-align: top;
}

.product-name {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.1rem;
}

.price-cell {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--zoogaboog-blue);
}

.what-included {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

.examples-cta {
    text-align: center;
    margin-top: 3rem;
}

.examples-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(1, 170, 222, 0.3);
}

.examples-cta-btn:hover {
    background: var(--zoogaboog-dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(1, 170, 222, 0.4);
    color: white;
}

/* Package Bundles */
.bundles-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.bundles-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.bundle-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 3px solid var(--orange);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
    position: relative;
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
}

.bundle-card h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.bundle-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.bundle-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bundle-items {
    list-style: none;
    padding: 0;
}

.bundle-items li {
    padding: 1rem 0;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.bundle-items li:last-child {
    border-bottom: none;
}

.bundle-items i {
    color: var(--green);
    font-size: 1.4rem;
}

.bundle-pricing {
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 16px;
}

.original-price {
    font-size: 1.3rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.bundle-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.savings {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 800;
    margin-bottom: 2rem;
}

.bundle-btn {
    display: block;
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--orange);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.3);
}

.bundle-btn:hover {
    background: #D97706;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Custom Quote CTA */
.custom-quote-section {
    padding: 6rem 0;
    background: var(--zoogaboog-blue);
    color: white;
    text-align: center;
}

.custom-quote-section h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.custom-quote-section p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.quote-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--zoogaboog-blue);
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.quote-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: #1e293b;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.final-cta .tagline {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 700;
}

.final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(1, 170, 222, 0.3);
}

.final-cta-btn:hover {
    background: white;
    color: var(--zoogaboog-blue);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .bundle-content {
        grid-template-columns: 1fr;
    }
    
    .hero-free h1 {
        font-size: 3rem;
    }
}
