:root {
            --p-color-bg: #f9fbfc;
            --p-color-primary: #008060;
            --p-color-primary-hover: #006e52;
            --p-color-text: #202223;
            --p-color-text-light: #6d7175;
            --p-border-radius: 12px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--p-color-bg); color: var(--p-color-text); line-height: 1.6; }

        header { background: white; padding: 20px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.03); position: sticky; top: 0; z-index: 100; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-size: 22px; font-weight: 700; color: var(--p-color-primary); display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo img { height: 40px; border-radius: 8px; }
        .logo span { color: var(--p-color-text); }

        /* Hero Section */
        .hero { padding: 100px 0; background: linear-gradient(135deg, #f0f7f4 0%, #ffffff 100%); overflow: hidden; }
        .hero-wrapper { display: flex; align-items: center; gap: 60px; }
        .hero-content { flex: 1; }
        .hero-image { flex: 1; position: relative; }
        .hero-image img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 8px solid white; transition: transform 0.3s ease; }
        .hero-image img:hover { transform: translateY(-10px); }

        h1 { font-size: 52px; line-height: 1.1; margin-bottom: 24px; color: #1c2226; letter-spacing: -0.02em; }
        p.subtitle { font-size: 20px; color: var(--p-color-text-light); margin-bottom: 40px; }

        /* Install Form */
        .install-form { background: white; padding: 10px; border-radius: 16px; display: flex; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 500px; }
        .install-form input { flex: 1; border: none; padding: 15px 20px; font-size: 16px; outline: none; background: transparent; }
        .btn-install { background: var(--p-color-primary); color: white; border: none; padding: 15px 30px; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-size: 16px; }
        .btn-install:hover { background: var(--p-color-primary-hover); transform: scale(1.02); }

        /* Features */
        .features { padding: 100px 0; background: white; }
        .section-title { text-align: center; margin-bottom: 70px; }
        .section-title h2 { font-size: 36px; margin-bottom: 16px; }
        .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
        .feature-card { padding: 40px; background: #f9fbfc; border-radius: 20px; transition: all 0.3s; border: 1px solid #f1f1f1; }
        .feature-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
        .icon-box { width: 60px; height: 60px; background: #e3f1df; color: #008060; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
        .feature-card h3 { margin-bottom: 15px; font-size: 22px; }
        .feature-card p { color: var(--p-color-text-light); }

        /* Pricing Section */
        .pricing { padding: 100px 0; background: #f0f7f4; text-align: center; }
        .pricing-card { background: white; max-width: 400px; margin: 0 auto; padding: 50px; border-radius: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
        .price { font-size: 48px; font-weight: 800; margin: 20px 0; color: var(--p-color-primary); }
        .price span { font-size: 18px; color: var(--p-color-text-light); font-weight: 400; }
        .pricing-features { text-align: left; margin: 30px 0; list-style: none; }
        .pricing-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .pricing-features li::before { content: "✓"; color: #008060; font-weight: bold; }

        /* Footer */
        footer { background: #1c2226; color: white; padding: 80px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
        .footer-logo { font-size: 24px; font-weight: 700; color: #008060; margin-bottom: 20px; }
        .footer-desc { color: #b0b0b0; max-width: 300px; }
        .footer-links h4 { margin-bottom: 24px; font-size: 18px; }
        .footer-links a { display: block; color: #b0b0b0; text-decoration: none; margin-bottom: 12px; transition: color 0.2s; }
        .footer-links a:hover { color: white; }
        .copyright { text-align: center; color: #6d7175; padding-top: 40px; border-top: 1px solid #333; }

        @media (max-width: 900px) {
            .hero-wrapper { flex-direction: column; text-align: center; padding-top: 40px; }
            .hero-content { order: 1; }
            .hero-image { order: 2; margin-top: 40px; }
            .install-form { margin: 0 auto; flex-direction: column; padding: 20px; }
            .grid { grid-template-columns: 1fr; }
            h1 { font-size: 36px; }
            .hero { padding: 60px 0; }
        }