﻿:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Hero Section */
.hero-massive {
    background: #01aade;
    padding: 8rem 0 6rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-massive::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-massive {
    position: relative;
    z-index: 1;
}

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

.hero-massive .subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-massive .big-claim {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-massive {
    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;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-cta-massive:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--zoogaboog-dark-blue);
}

/* Problem Section */
.problem-section {
    background: #f9fafb;
    padding: 5rem 0;
    text-align: center;
}

.problem-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.problem-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Solution Section */
.solution-section {
    background: white;
    padding: 6rem 0;
    text-align: center;
}

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

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

/* Categories Showcase */
.categories-showcase {
    background: #f9fafb;
    padding: 6rem 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.showcase-header p {
    font-size: 1.3rem;
    color: #64748b;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.category-showcase-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #e2e8f0;
    transition: all 0.4s ease;
    cursor: default;
}

.category-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

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

.category-showcase-card p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.example-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.category-count {
    font-size: 0.95rem;
    color: var(--zoogaboog-blue);
    font-weight: 700;
}

/* Color themes */
.cat-purple { background: #8B5CF6; }
.cat-purple-hover:hover { border-color: #8B5CF6; }

.cat-orange { background: #F59E0B; }
.cat-orange-hover:hover { border-color: #F59E0B; }

.cat-cyan { background: #06B6D4; }
.cat-cyan-hover:hover { border-color: #06B6D4; }

.cat-pink { background: #EC4899; }
.cat-pink-hover:hover { border-color: #EC4899; }

.cat-green { background: #10B981; }
.cat-green-hover:hover { border-color: #10B981; }

.cat-red { background: #EF4444; }
.cat-red-hover:hover { border-color: #EF4444; }

.cat-teal { background: #14B8A6; }
.cat-teal-hover:hover { border-color: #14B8A6; }

.cat-indigo { background: #6366F1; }
.cat-indigo-hover:hover { border-color: #6366F1; }

.cat-deep-purple { background: #9333ea; }
.cat-deep-purple-hover:hover { border-color: #9333ea; }

/* Big Numbers Section */
.big-numbers {
    background: white;
    padding: 5rem 0;
    text-align: center;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.number-item {
    padding: 2rem;
}

.number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--zoogaboog-blue);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.number-label {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
}

.number-sublabel {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Why Section */
.why-section {
    background: #1e293b;
    padding: 6rem 0;
    color: white;
}

.why-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.why-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Final CTA */
.final-cta {
    background: var(--zoogaboog-blue);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

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

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

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

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    color: var(--zoogaboog-dark-blue);
}

.final-cta-subtext {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-massive h1 {
        font-size: 2.5rem;
    }
    
    .hero-massive .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-massive .big-claim {
        font-size: 1.4rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
}
