:root {
            --nt-yellow: #F0B90B;
            --nt-green: #3BA36D;
            --nt-green-light: rgba(59,163,109,0.12);
            --nt-bg: #FAFAF7;
            --nt-bg-dark: #1A231A;
            --nt-dark: #1C1C1C;
            --nt-white: #FFFFFF;
            --nt-text: #2C2C2C;
            --nt-text-light: #6B6B6B;
            --nt-cream: #F5F3ED;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--nt-bg); color: var(--nt-text); line-height: 1.7; }
        .dark { background: var(--nt-bg-dark); color: var(--nt-white); }

        /* Organic shapes */
        .organic-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
        
        /* Navigation */
        .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(250,250,247,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06); }
        .nav-inner { max-width: 1320px; margin: 0 auto; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; }
        .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .logo-icon { width: 44px; height: 44px; background: var(--nt-yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: #000; }
        .logo-text { font-size: 20px; font-weight: 700; color: var(--nt-text); }
        .nav-links { display: flex; gap: 40px; }
        .nav-links a { color: var(--nt-text-light); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
        .nav-links a:hover { color: var(--nt-green); }
        .nav-cta { background: var(--nt-green); color: var(--nt-white); padding: 12px 28px; border-radius: 100px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.3s; }
        .nav-cta:hover { background: #348C5D; transform: translateY(-2px); }

        /* Hero */
        .hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 24px 80px; position: relative; overflow: hidden; }
        .hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: var(--nt-green-light); border-radius: 50%; filter: blur(100px); }
        .hero-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }

        .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--nt-cream); padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--nt-green); margin-bottom: 28px; }
        
        .hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(44px, 5.5vw, 68px); font-weight: 600; line-height: 1.1; margin-bottom: 28px; font-style: italic; letter-spacing: -0.5px; }
        .hero h1 .highlight { color: var(--nt-yellow); font-weight: 700; }
        .hero p { font-size: 17px; color: var(--nt-text-light); margin-bottom: 40px; max-width: 520px; line-height: 1.9; }

        .hero-stats { display: flex; gap: 48px; margin-bottom: 48px; }
        .stat-item .stat-num { font-size: 36px; font-weight: 700; color: var(--nt-green); }
        .stat-item .stat-label { font-size: 13px; color: var(--nt-text-light); margin-top: 4px; }

        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--nt-yellow); color: #000; padding: 18px 36px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(240,185,11,0.3); }
        .btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--nt-green); padding: 18px 36px; border-radius: 100px; font-weight: 600; font-size: 15px; text-decoration: none; border: 2px solid var(--nt-green); transition: all 0.3s; }
        .btn-secondary:hover { background: var(--nt-green-light); }

        /* Nature Card */
        .nature-card { background: var(--nt-white); border-radius: 32px; padding: 48px; box-shadow: 0 40px 80px rgba(0,0,0,0.06); position: relative; overflow: hidden; }
        .nature-card::before { content: ''; position: absolute; top: -50%; right: -30%; width: 300px; height: 300px; background: var(--nt-green-light); border-radius: 50%; }
        .nature-card-inner { position: relative; z-index: 1; }
        .nature-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; font-style: italic; margin-bottom: 32px; color: var(--nt-text); }
        .nature-items { display: flex; flex-direction: column; gap: 24px; }
        .nature-item { display: flex; align-items: flex-start; gap: 16px; }
        .nature-item-icon { width: 48px; height: 48px; background: var(--nt-green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
        .nature-item-content h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; color: var(--nt-text); }
        .nature-item-content p { font-size: 13px; color: var(--nt-text-light); line-height: 1.6; }

        /* Section */
        .section { padding: 120px 24px; }
        .section-cream { background: var(--nt-cream); }
        .section-inner { max-width: 1320px; margin: 0 auto; }
        .section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--nt-green); margin-bottom: 16px; }
        .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 600; margin-bottom: 20px; font-style: italic; }
        .section-subtitle { font-size: 17px; color: var(--nt-text-light); max-width: 560px; line-height: 1.9; }

        /* Features */
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-top: 60px; }
        .feature-card { background: var(--nt-white); border-radius: 24px; padding: 40px; transition: all 0.4s; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .feature-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
        .feature-icon { width: 56px; height: 56px; background: var(--nt-green-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 24px; }
        .feature-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
        .feature-desc { font-size: 14px; color: var(--nt-text-light); line-height: 1.8; }

        /* Stats */
        .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
        .stat-box { background: var(--nt-white); border-radius: 24px; text-align: center; padding: 40px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .stat-box .stat-num { font-size: 40px; font-weight: 700; color: var(--nt-yellow); }
        .stat-box .stat-label { font-size: 14px; color: var(--nt-text-light); margin-top: 8px; }

        /* Products */
        .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 60px; }
        .product-card { background: var(--nt-white); border-radius: 24px; padding: 36px; transition: all 0.4s; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
        .product-icon { width: 64px; height: 64px; background: var(--nt-green-light); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
        .product-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
        .product-desc { font-size: 14px; color: var(--nt-text-light); line-height: 1.8; margin-bottom: 16px; }
        .product-link { font-size: 14px; font-weight: 600; color: var(--nt-green); text-decoration: none; transition: opacity 0.3s; }
        .product-link:hover { opacity: 0.7; }

        /* Security */
        .security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 60px; }
        .security-item { background: var(--nt-white); text-align: center; padding: 40px 24px; border-radius: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: all 0.3s; }
        .security-item:hover { transform: translateY(-4px); }
        .security-icon { width: 72px; height: 72px; background: var(--nt-green-light); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
        .security-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
        .security-desc { font-size: 13px; color: var(--nt-text-light); line-height: 1.7; }

        /* CTA */
        .cta-section { padding: 140px 24px; text-align: center; background: var(--nt-cream); position: relative; }
        .cta-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: var(--nt-green-light); border-radius: 50%; filter: blur(100px); }
        .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 52px); font-weight: 600; font-style: italic; margin-bottom: 24px; position: relative; }
        .cta-desc { font-size: 17px; color: var(--nt-text-light); max-width: 500px; margin: 0 auto 48px; line-height: 1.9; position: relative; }
        .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

        /* Footer */
        .footer { background: var(--nt-bg-dark); color: var(--nt-white); padding: 60px 24px 40px; }
        .footer-inner { max-width: 1320px; margin: 0 auto; }
        .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
        .footer-logo-icon { width: 36px; height: 36px; background: var(--nt-yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #000; }
        .footer-logo-text { font-size: 18px; font-weight: 700; }
        .footer-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 500px; }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
            .hero-stats { justify-content: center; }
            .hero-btns { justify-content: center; }
            .stats-row { grid-template-columns: repeat(2, 1fr); }
            .section, .cta-section { padding: 80px 24px; }
        }