        :root {
            --fontly-home-primary: #6366f1;
            --fontly-home-secondary: #8b5cf6;
            --fontly-home-dark: #1e293b;
            --fontly-home-light: #f8fafc;
            --fontly-home-accent: #06b6d4;
            --fontly-home-success: #10b981;
            --fontly-home-warning: #f59e0b;
            --fontly-home-danger: #ef4444;
            --fontly-home-gradient: linear-gradient(135deg, var(--fontly-home-primary), var(--fontly-home-secondary));
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        /* Hero Section */
        .fontly-home-hero {
            background: linear-gradient(135deg, var(--fontly-home-dark) 0%, #2d3748 50%, #1a202c 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 6rem 0;
        }

        .fontly-home-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .fontly-home-hero::after {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .fontly-home-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .fontly-home-hero-badge {
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            color: var(--fontly-home-accent);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            display: inline-block;
        }

        .fontly-home-hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fontly-home-hero-subtitle {
            font-size: 1.3rem;
            color: #cbd5e1;
            margin-bottom: 3rem;
            max-width: 800px;
            line-height: 1.6;
            margin-left: auto;
            margin-right: auto;
        }

        .fontly-home-btn-primary {
            background: var(--fontly-home-gradient);
            border: none;
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .fontly-home-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
            color: white;
        }

        .fontly-home-btn-outline {
            border: 2px solid var(--fontly-home-accent);
            background: transparent;
            color: var(--fontly-home-accent);
            padding: 0.8rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .fontly-home-btn-outline:hover {
            background: var(--fontly-home-accent);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
        }

        .fontly-home-hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .fontly-home-stat {
            text-align: center;
        }

        .fontly-home-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--fontly-home-accent);
            display: block;
        }

        .fontly-home-stat-label {
            color: #94a3b8;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .fontly-home-hero-mockup {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 2.5rem;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 3rem auto 0;
        }

        .fontly-home-hero-mockup::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .fontly-home-mockup-content {
            position: relative;
            z-index: 2;
        }

        /* Features Section */
        .fontly-home-features {
            padding: 8rem 0;
            background: var(--fontly-home-light);
            position: relative;
        }

        .fontly-home-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, var(--fontly-home-dark) 0%, var(--fontly-home-light) 100%);
        }

        .fontly-home-section-badge {
            background: var(--fontly-home-gradient);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .fontly-home-feature-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .fontly-home-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .fontly-home-feature-card:hover::before {
            left: 100%;
        }

        .fontly-home-feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: var(--fontly-home-primary);
        }

        .fontly-home-feature-icon {
            font-size: 3.5rem;
            color: var(--fontly-home-primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .fontly-home-feature-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--fontly-home-dark);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .fontly-home-feature-desc {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        .fontly-home-btn-secondary {
            background: var(--fontly-home-primary);
            color: white;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .fontly-home-btn-secondary:hover {
            background: var(--fontly-home-secondary);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
        }

        /* Live Demo Section */
        .fontly-home-demo {
            padding: 8rem 0;
            background: white;
            position: relative;
        }

        .fontly-home-demo-container {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
        }

        .fontly-home-demo-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .fontly-home-demo-controls {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .fontly-home-demo-preview {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fontly-home-control-group {
            margin-bottom: 1.5rem;
        }

        .fontly-home-control-label {
            font-weight: 600;
            color: var(--fontly-home-dark);
            margin-bottom: 0.5rem;
            display: block;
        }

        input.fontly-home-control-input {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        input.fontly-home-control-input:focus {
            outline: none;
            border-color: var(--fontly-home-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .fontly-home-control-select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            background: white;
            transition: all 0.3s ease;
        }

        .fontly-home-control-select:focus {
            outline: none;
            border-color: var(--fontly-home-primary);
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .fontly-home-control-range {
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: #e2e8f0;
            outline: none;
            -webkit-appearance: none;
        }

        .fontly-home-control-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--fontly-home-primary);
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
        }

        .fontly-home-control-range::-moz-range-thumb {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--fontly-home-primary);
            cursor: pointer;
            border: none;
            box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
        }

        .fontly-home-preview-text {
            font-size: 2rem;
            line-height: 1.4;
            color: var(--fontly-home-dark);
            transition: all 0.3s ease;
        }

        /* Tools Grid Section */
        .fontly-home-tools-grid {
            padding: 8rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .fontly-home-tool-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .fontly-home-tool-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--fontly-home-primary);
        }

        .fontly-home-tool-icon {
            font-size: 3rem;
            color: var(--fontly-home-primary);
            margin-bottom: 1.5rem;
        }

        .fontly-home-tool-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--fontly-home-dark);
            margin-bottom: 1rem;
        }

        .fontly-home-tool-desc {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .fontly-home-tool-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .fontly-home-tool-features li {
            color: #64748b;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .fontly-home-tool-features i {
            color: var(--fontly-home-success);
            font-size: 1.1rem;
        }

        /* Statistics Section */
        .fontly-home-stats {
            padding: 6rem 0;
            background: var(--fontly-home-dark);
            color: white;
        }

        .fontly-home-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .fontly-home-stats-item {
            padding: 2rem;
        }

        .fontly-home-stats-number {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--fontly-home-accent);
            display: block;
            margin-bottom: 0.5rem;
        }

        .fontly-home-stats-label {
            font-size: 1.1rem;
            color: #cbd5e1;
            font-weight: 500;
        }

        /* Testimonials Section */
        .fontly-home-testimonials {
            padding: 8rem 0;
            background: white;
        }

        .fontly-home-testimonial-card {
            background: #f8fafc;
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            height: 100%;
            position: relative;
        }

        .fontly-home-testimonial-quote {
            font-size: 1.2rem;
            color: #475569;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .fontly-home-testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .fontly-home-testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--fontly-home-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .fontly-home-testimonial-info h5 {
            font-weight: 700;
            color: var(--fontly-home-dark);
            margin-bottom: 0.25rem;
        }

        .fontly-home-testimonial-info p {
            color: #64748b;
            margin: 0;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .fontly-home-cta {
            background: linear-gradient(135deg, var(--fontly-home-dark) 0%, #2d3748 100%);
            padding: 8rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .fontly-home-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .fontly-home-cta-content {
            position: relative;
            z-index: 2;
        }

        .fontly-home-cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }

        .fontly-home-cta-subtitle {
            font-size: 1.2rem;
            color: #cbd5e1;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .fontly-home-btn-glow {
            background: transparent;
            border: 2px solid var(--fontly-home-accent);
            color: var(--fontly-home-accent);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .fontly-home-btn-glow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .fontly-home-btn-glow:hover::before {
            left: 100%;
        }

        .fontly-home-btn-glow:hover {
            background: var(--fontly-home-accent);
            color: white;
            box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
            transform: translateY(-3px);
        }

        /* Scroll to top button */
        .fontly-home-scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--fontly-home-primary);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }

        .fontly-home-scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .fontly-home-scroll-top:hover {
            background: var(--fontly-home-secondary);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .fontly-home-hero-title {
                font-size: 2.8rem;
            }
            
            .fontly-home-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .fontly-home-cta-title {
                font-size: 2.2rem;
            }
            
            .fontly-home-hero-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .fontly-home-features {
                padding: 4rem 0;
            }
            
            .fontly-home-demo {
                padding: 4rem 0;
            }
        }

        @media (max-width: 576px) {
            .fontly-home-hero-title {
                font-size: 2.2rem;
            }
            
            .fontly-home-feature-card {
                padding: 2rem 1.5rem;
            }
            
            .fontly-home-demo-controls {
                padding: 1.5rem;
            }
        }

        /* Loading Animation */
        .fontly-home-loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
 