        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #1a1a2e;
            --navy: #1e3a5f;
            --accent: #2d5a7b;
            --accent-light: #4a8db7;
            --cream: #f5f3f0;
            --cream-dark: #ebe8e4;
            --muted-blue: #c8d4df;
            --white: #ffffff;
            --gray: #666;
            --gray-light: #999;
            --text: #333;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', system-ui, sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: var(--cream);
        }
        
        /* Floating Navigation */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 100px;
            padding: 10px 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            padding: 4px 16px 4px 8px;
        }
        
        .logo-icon {
            width: 32px;
            height: 32px;
            background: var(--navy);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 18px;
            letter-spacing: -0.05em;
        }
        
        .logo-text {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 20px;
            color: var(--primary);
            letter-spacing: -0.03em;
        }
        
        .nav-links {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        
        .nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--gray);
            text-decoration: none;
            padding: 10px 18px;
            border-radius: 100px;
            transition: all 0.2s;
        }
        
        .nav-links a:hover {
            background: var(--cream);
            color: var(--primary);
        }
        
        .nav-cta {
            background: var(--navy) !important;
            color: white !important;
        }
        
        .nav-cta:hover {
            background: var(--accent) !important;
        }
        
        /* Hero Section - Clean Blue Gradient */
        .hero {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #1a1a2e 0%, #1e3a5f 40%, #2d5a7b 70%, #4a8db7 100%);
        }
        
        .hero-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
            opacity: 0.5;
        }
        
        /* Soft abstract shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.25;
        }
        
        .hero-shape-1 {
            width: 500px;
            height: 500px;
            background: #4a8db7;
            top: 5%;
            right: 5%;
        }
        
        .hero-shape-2 {
            width: 400px;
            height: 400px;
            background: #1e3a5f;
            bottom: 15%;
            left: 0%;
        }
        
        .hero-shape-3 {
            width: 300px;
            height: 300px;
            background: #2d5a7b;
            top: 35%;
            left: 25%;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 620px;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100vh;
        }
        
        .hero-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 13px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 100px;
            margin-bottom: 28px;
        }
        
        .hero h1 {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: normal;
            font-size: 54px;
            line-height: 1.12;
            letter-spacing: -0.02em;
            color: white;
            margin-bottom: 36px;
        }
        
        .btn {
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
            padding: 14px 28px;
            border-radius: 100px;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }
        
        .btn-light {
            background: var(--cream);
            color: var(--primary);
        }
        
        .btn-light:hover {
            background: white;
        }
        
        .btn-navy {
            background: var(--navy);
            color: white;
        }
        
        .btn-navy:hover {
            background: var(--accent);
        }
        
        /* Logo Strip */
        .logo-strip {
            background: var(--cream);
            padding: 64px 24px;
        }
        
        .logo-strip-inner {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        
        .logo-strip p {
            font-size: 12px;
            color: var(--gray-light);
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 56px;
            flex-wrap: wrap;
        }
        
        .logos span {
            font-family: 'Georgia', serif;
            font-size: 18px;
            color: var(--primary);
            opacity: 0.4;
        }
        
        /* Feature Section */
        .feature-section {
            padding: 100px 24px;
            background: var(--white);
        }
        
        .feature-section.cream {
            background: var(--cream);
        }
        
        .feature-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        
        .feature-container.reverse {
            direction: rtl;
        }
        
        .feature-container.reverse > * {
            direction: ltr;
        }
        
        .feature-label {
            display: inline-block;
            background: #dbe8d4;
            color: #3d5a35;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 20px;
        }
        
        .feature-content h2 {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: normal;
            font-size: 38px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-content > p {
            font-size: 16px;
            color: var(--gray);
            margin-bottom: 32px;
            line-height: 1.7;
        }
        
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 36px;
        }
        
        .feature-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        
        .feature-icon {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .feature-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2;
        }
        
        .feature-item h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
        }
        
        .feature-item p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Illustrated Feature Visual */
        .feature-visual {
            border-radius: 16px;
            overflow: hidden;
            min-height: 480px;
            position: relative;
        }
        
        .feature-visual.garden {
            background: linear-gradient(180deg, #2d5a4b 0%, #3d7a5b 40%, #4a8b6a 70%, #5a9b7a 100%);
        }
        
        .feature-visual.columns {
            background: linear-gradient(180deg, #d4cfc8 0%, #c4bfb8 50%, #b4afa8 100%);
        }
        
        .feature-visual.zen {
            background: linear-gradient(180deg, #3d5a6b 0%, #4d7a8b 50%, #5d8a9b 100%);
        }
        
        .feature-visual svg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .feature-visual-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 32px;
            background: linear-gradient(transparent, rgba(26, 26, 46, 0.95));
            z-index: 2;
        }
        
        .demo-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        }
        
        .demo-search {
            display: flex;
            gap: 8px;
            align-items: center;
            padding: 10px 14px;
            background: var(--cream);
            border-radius: 8px;
            margin-bottom: 14px;
        }
        
        .demo-search-icon {
            width: 16px;
            height: 16px;
            opacity: 0.4;
        }
        
        .demo-search span {
            flex: 1;
            font-size: 13px;
            color: var(--gray);
        }
        
        .demo-search-btn {
            background: var(--navy);
            color: white;
            border: none;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .demo-response {
            font-size: 13px;
            color: var(--text);
            line-height: 1.7;
        }
        
        .demo-response strong {
            color: var(--primary);
        }
        
        .demo-citation {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--cream);
            font-size: 11px;
            padding: 5px 10px;
            border-radius: 4px;
            margin-top: 10px;
            color: var(--accent);
        }
        
        .demo-citation svg {
            width: 12px;
            height: 12px;
        }
        
        /* Testimonial Section */
        .testimonial-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 560px;
        }
        
        .testimonial-visual {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #2d4a5a 0%, #3d6a7a 50%, #4d8a9a 100%);
        }
        
        .testimonial-visual svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .testimonial-content {
            background: var(--muted-blue);
            padding: 80px 64px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .testimonial-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.5);
            color: var(--navy);
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 100px;
            margin-bottom: 28px;
            width: fit-content;
        }
        
        .testimonial-quote {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 26px;
            line-height: 1.45;
            color: var(--primary);
            margin-bottom: 36px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 36px;
        }
        
        .testimonial-avatar {
            width: 56px;
            height: 56px;
            background: var(--navy);
            border-radius: 12px;
            overflow: hidden;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-author-info h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
        }
        
        .testimonial-author-info p {
            font-size: 13px;
            color: var(--gray);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 24px;
            background: var(--cream);
        }
        
        .faq-container {
            max-width: 720px;
            margin: 0 auto;
        }
        
        .faq-section h2 {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: normal;
            font-size: 38px;
            text-align: center;
            margin-bottom: 48px;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }
        
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 28px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            color: var(--primary);
            transition: background 0.2s;
        }
        
        .faq-question:hover {
            background: rgba(0, 0, 0, 0.02);
        }
        
        .faq-icon {
            font-size: 22px;
            color: var(--gray-light);
            transition: transform 0.2s;
            font-weight: 300;
        }
        
        .faq-answer {
            padding: 0 28px 24px;
            font-size: 14px;
            color: var(--gray);
            line-height: 1.75;
            display: none;
        }
        
        .faq-item.open .faq-answer {
            display: block;
        }
        
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        
        /* CTA Section - Water/Pond Illustration */
        .cta-section {
            position: relative;
            padding: 100px 24px;
            overflow: hidden;
            min-height: 540px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cta-illustration {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, #4a7a9a 0%, #5a9aba 40%, #6abacc 100%);
        }
        
        .cta-illustration svg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .cta-card {
            position: relative;
            z-index: 1;
            max-width: 620px;
            background: white;
            border-radius: 20px;
            padding: 56px 64px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
        }
        
        .cta-card h2 {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-weight: normal;
            font-size: 34px;
            color: var(--primary);
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }
        
        .cta-card p {
            font-size: 15px;
            color: var(--gray);
            margin-bottom: 28px;
        }
        
        /* Footer */
        footer {
            background: var(--cream);
            padding: 64px 24px 48px;
        }
        
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        
        .footer-brand {
            padding-right: 24px;
        }
        
        .footer-brand .logo {
            margin-bottom: 16px;
            padding: 0;
        }
        
        .footer-brand p {
            font-size: 13px;
            color: var(--gray);
            line-height: 1.65;
        }
        
        .footer-col h4 {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 18px;
        }
        
        .footer-col a {
            display: block;
            font-size: 14px;
            color: var(--gray);
            text-decoration: none;
            padding: 5px 0;
            transition: color 0.2s;
        }
        
        .footer-col a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social a {
            width: 20px;
            height: 20px;
            color: var(--gray);
            transition: color 0.2s;
        }
        
        .footer-social a:hover {
            color: var(--primary);
        }
        
        .footer-social svg {
            width: 100%;
            height: 100%;
        }
        
        .footer-legal {
            display: flex;
            align-items: center;
            gap: 24px;
            font-size: 13px;
            color: var(--gray-light);
        }
        
        .footer-legal a {
            color: var(--gray);
            text-decoration: none;
        }
        
        .footer-legal a:hover {
            color: var(--primary);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            nav {
                width: calc(100% - 32px);
                max-width: 420px;
            }
            
            .nav-links a:not(.nav-cta):not(.nav-login) {
                display: none;
            }
            
            .hero h1 {
                font-size: 38px;
            }
            
            .hero-content {
                padding: 100px 24px 60px;
            }
            
            .feature-container,
            .testimonial-section {
                grid-template-columns: 1fr;
            }
            
            .feature-container.reverse {
                direction: ltr;
            }
            
            .feature-visual {
                min-height: 360px;
            }
            
            .testimonial-visual {
                min-height: 300px;
            }
            
            .testimonial-content {
                padding: 48px 32px;
            }
            
            .cta-card {
                padding: 40px 32px;
                margin: 0 16px;
            }
            
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
            
            .footer-brand {
                grid-column: span 2;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }
