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

        body {
            font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background: #FFF8E1;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 248, 225, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 0;
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 700;
            color: #1A1A1A;
            text-decoration: none;
        }

        .logo span {
            color: #FF7733;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #444;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 16px;
        }

        .nav-links a:hover {
            color: #FF7733;
        }

        .cta-button {
            background: #FF7733;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 119, 51, 0.3);
        }

        .cta-button:hover {
            background: #FF6622;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 51, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 40px 60px;
            background: linear-gradient(135deg, #FFF8E1 0%, #FFE4B5 50%, #FFF8E1 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 119, 51, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-50px, 50px) scale(1.1); }
        }

        .hero-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 64px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1A1A1A;
        }

        .hero-text .highlight {
            color: #FF7733;
        }

        .hero-text p {
            font-size: 22px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #FF7733;
            color: white;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 119, 51, 0.3);
            display: inline-block;
        }

        .btn-primary:hover {
            background: #FF6622;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 119, 51, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #FF7733;
            padding: 16px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #FFF;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .fox-illustration {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #FFB366 0%, #FF7733 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 200px;
            box-shadow: 0 20px 60px rgba(255, 119, 51, 0.3);
            animation: bounce 3s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Features Section */
        .section {
            padding: 100px 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #1A1A1A;
        }

        .section-title .highlight {
            color: #FF7733;
        }

        .section-subtitle {
            text-align: center;
            font-size: 20px;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            font-size: 64px;
            margin-bottom: 20px;
            display: block;
        }

        .feature-card h3 {
            font-size: 24px;
            color: #FF7733;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .feature-card p {
            color: #666;
            line-height: 1.7;
            font-size: 16px;
        }

        /* About Section */
        .about {
            background: linear-gradient(135deg, #FFE4B5 0%, #FFF8E1 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1A1A1A;
        }

        .about-text p {
            font-size: 18px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-image {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .about-image ul {
            list-style: none;
        }

        .about-image li {
            padding: 15px 0;
            font-size: 18px;
            color: #444;
            border-bottom: 1px solid #F0F0F0;
            padding-left: 35px;
            position: relative;
        }

        .about-image li:last-child {
            border-bottom: none;
        }

        .about-image li:before {
            content: "🦊";
            position: absolute;
            left: 0;
            font-size: 20px;
        }

        /* How It Works */
        .how-it-works {
            background: white;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF7733 0%, #FFB366 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(255, 119, 51, 0.3);
        }

        .step h3 {
            font-size: 20px;
            color: #1A1A1A;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .step p {
            color: #666;
            font-size: 15px;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #A8D5BA 0%, #B8E6C9 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .testimonial-text {
            font-size: 16px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 700;
            color: #FF7733;
            font-size: 16px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FF7733 0%, #FFB366 100%);
            color: white;
            text-align: center;
            padding: 80px 40px;
        }

        .cta-section h2 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 22px;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn-white {
            background: white;
            color: #FF7733;
            padding: 18px 45px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: inline-block;
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        /* Footer */
        footer {
            background: #1A1A1A;
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .footer-brand span {
            color: #FF7733;
        }

        .footer-description {
            color: #AAA;
            line-height: 1.7;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #FF7733;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #AAA;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #FF7733;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            color: #888;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #1A1A1A;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .fox-illustration {
                width: 300px;
                height: 300px;
                font-size: 150px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 36px;
            }

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

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

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
