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

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

/* Hero */
.hero {
        background: white;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: var(--green);
        color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Section */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

/* Template Card */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.template-card {
        background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
        transition: all 0.3s ease;
        cursor: pointer;
    }

.template-card:hover {
    border-color: var(--zoogaboog-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.template-image {
    background: white;
    height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    color: #cbd5e1;
    font-size: 3.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.template-content {
    padding: 1.75rem;
}

.template-type {
    color: var(--zoogaboog-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.template-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.template-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.template-meta {
        display: flex;
    justify-content: space-between;
        align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.template-format {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

.download-btn {
    background: var(--zoogaboog-blue);
        color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    background: var(--zoogaboog-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 170, 222, 0.3);
}

/* Download Counter */
.download-counter {
    position: fixed;
    bottom: 30px;
    right: 30px;
        background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--zoogaboog-blue);
    z-index: 1000;
    display: none;
}

.download-counter.show {
    display: block;
}

.download-counter-text {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.download-counter-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--zoogaboog-blue);
}

/* Download Gate Modal */
.gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.gate-modal.show {
    display: flex;
}

.gate-content {
    background: white;
    padding: 4rem 3rem;
    border-radius: 28px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.gate-icon {
    width: 100px;
    height: 100px;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 2rem;
    animation: celebration 0.6s ease-in-out;
}

@keyframes celebration {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.gate-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.gate-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    background: white;
    border-radius: 16px;
    padding: 2rem;
}

.benefits-list li {
    padding: 0.85rem 0;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--green);
    font-size: 1.5rem;
}

.lead-magnets {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 1.5rem;
        border-radius: 12px;
    margin-bottom: 2rem;
}

.lead-magnets h4 {
    color: #92400e;
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.lead-magnets ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lead-magnets li {
    color: #78350f;
    font-weight: 600;
    padding: 0.5rem 0;
}

.lead-magnets li i {
    color: var(--orange);
    margin-right: 0.5rem;
}

.signup-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--zoogaboog-blue);
    color: white;
        border: none;
        border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    cursor: pointer;
        transition: all 0.3s ease;
    margin-bottom: 1rem;
    }

.signup-btn:hover {
    background: var(--zoogaboog-dark-blue);
        transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(1, 170, 222, 0.3);
}

.maybe-later {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-weight: 600;
    padding: 0.75rem;
}

.maybe-later:hover {
    color: #64748b;
}

/* Custom Quote Banner */
.custom-quote-banner {
    background: var(--orange);
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
        color: white;
    margin: 5rem 0;
    box-shadow: 0 15px 60px rgba(245, 158, 11, 0.25);
}

.custom-quote-banner h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.custom-quote-banner p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: white;
    color: var(--orange);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.75rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--zoogaboog-blue);
    color: white;
    border-color: var(--zoogaboog-blue);
    transform: translateY(-2px);
    }
