
        .cta-button {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
        }

        /* Hero Section */
        .hero-pdf {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1a1a1a;
            padding: 8rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-pdf::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero-pdf::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
        }

        .hero-content-pdf {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-pdf h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero-pdf p {
            font-size: 1.3rem;
            color: #2d2d2d;
            margin-bottom: 2rem;
        }

        .hero-badge {
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .badges {
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Filter Section */
        .filter-section {
            max-width: 1400px;
            margin: 3rem auto;
            padding: 0 5%;
        }

        .filter-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .filter-btn {
            background: white;
            color: #1a1a1a;
            border: 2px solid #fef3c7;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            border-color: #fbbf24;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        /* Templates Grid */
        .templates-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 5%;
        }

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

        .template-card {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .template-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(251, 191, 36, 0.25);
            border-color: #fbbf24;
        }

        .template-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
        }

        .template-badge.premium {
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            color: #fbbf24;
        }

        .template-preview {
            width: 100%;
            height: 300px;
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .template-preview::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .template-card:hover .template-preview::before {
            opacity: 1;
        }

        .preview-icon {
            font-size: 5rem;
            opacity: 0.3;
            transition: all 0.3s;
        }

        .template-card:hover .preview-icon {
            opacity: 0.5;
            transform: scale(1.1);
        }

        .preview-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .template-card:hover .preview-overlay {
            opacity: 1;
        }

        .preview-btn {
            background: white;
            color: #1a1a1a;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .preview-btn:hover {
            background: #fbbf24;
            transform: scale(1.05);
        }

        .template-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .template-category {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            color: #f59e0b;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            width: fit-content;
            margin-bottom: 1rem;
        }

        .template-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
            font-weight: 700;
            line-height: 1.3;
        }

        .template-description {
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .template-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .template-features li {
            padding: 0.4rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: #666;
            font-size: 0.9rem;
        }

        .template-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #fbbf24;
            font-weight: bold;
        }

        .template-actions {
            display: flex;
            gap: 1rem;
            margin-top: auto;
        }

        .download-btn {
            flex: 1;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a1a;
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .download-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
        }

        .upgrade-btn {
            flex: 1;
            background: #1a1a1a;
            color: #fbbf24;
            padding: 0.9rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .upgrade-btn:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            padding: 5rem 5%;
            margin: 0rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top right, transparent 49%, #ffffff 50%);
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 800;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: #2d2d2d;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .btn-primary:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
            color: #1a1a1a;
            padding: 1.2rem 3rem;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.5);
            transform: translateY(-3px);
        }

        /* Benefits Section */
        .benefits-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 5%;
        }

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

        .benefit-card {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
        }

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

        .benefit-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            color: #1a1a1a;
        }

        .benefit-card p {
            color: #555;
            line-height: 1.7;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #1a1a1a;
            color: #fbbf24;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: #fbbf24;
            color: #1a1a1a;
            transform: rotate(90deg);
        }

        .modal-preview {
            width: 100%;
            min-height: 600px;
            background: linear-gradient(to bottom, #f9fafb 0%, #ffffff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero-pdf h1 {
                font-size: 2.5rem;
            }

            .templates-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .template-actions {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .hero-pdf::after,
            .cta-section::before {
                background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
            }
        }