*{margin:0;padding:0;box-sizing:border-box;}
:root{--bg:#fafafa;--bg-white:#fff;--text:#1a1a1a;--text-secondary:#525252;--text-muted:#9ca3af;--accent:#059669;--accent-dark:#047857;--accent-light:#ecfdf5;--border:#e5e5e5;--ai-gradient:linear-gradient(135deg,#059669,#0d9488,#0891b2);}
body{font-family:'Plus Jakarta Sans',sans-serif;background:var(--bg);color:var(--text);line-height:1.6;}
header{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,0.95);backdrop-filter:blur(10px);border-bottom:1px solid var(--border);}
nav{max-width:1200px;margin:0 auto;padding:0.85rem 2rem;display:flex;justify-content:space-between;align-items:center;}
.logo{display:flex;align-items:center;gap:0.6rem;font-weight:700;font-size:1.35rem;text-decoration:none;color:var(--text);}
.logo-icon{width:38px;height:38px;}
.nav-links{display:flex;gap:2rem;list-style:none;}
.nav-links a{color:var(--text-secondary);text-decoration:none;font-size:0.9rem;font-weight:500;transition:color 0.2s;}
.nav-links a:hover{color:var(--accent);}
.nav-dropdown{position:relative;}
.nav-dropdown-menu{position:absolute;top:100%;left:0;background:var(--bg-white);border:1px solid var(--border);border-radius:12px;padding:0.5rem 0;min-width:200px;box-shadow:0 10px 15px rgba(0,0,0,0.1);opacity:0;visibility:hidden;transform:translateY(10px);transition:all 0.2s;}
.nav-dropdown:hover .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateY(0);}
.nav-dropdown-menu a{display:block;padding:0.5rem 1rem;font-size:0.85rem;}
.nav-cta{display:flex;align-items:center;gap:0.5rem;background:var(--accent);color:white;padding:0.6rem 1.25rem;border-radius:8px;font-weight:600;font-size:0.9rem;text-decoration:none;}
.nav-cta:hover{background:var(--accent-dark);}

/* Mobile Menu Toggle */
.mobile-menu-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;background:transparent;border:none;cursor:pointer;padding:8px;z-index:101;}
.hamburger-line{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:all 0.3s;}
.mobile-menu-toggle.active .hamburger-line:nth-child(1){transform:rotate(45deg) translate(5px,5px);}
.mobile-menu-toggle.active .hamburger-line:nth-child(2){opacity:0;}
.mobile-menu-toggle.active .hamburger-line:nth-child(3){transform:rotate(-45deg) translate(5px,-5px);}
.mobile-only{display:none;}
.desktop-only{display:flex;}

.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;padding:0.9rem 1.75rem;border-radius:8px;font-weight:600;font-size:0.95rem;text-decoration:none;transition:all 0.2s;border:none;cursor:pointer;}
.btn-primary{background:var(--accent);color:white;}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-2px);}
.btn-secondary{background:var(--bg-white);color:var(--text);border:1px solid var(--border);}
.btn-secondary:hover{border-color:var(--accent);color:var(--accent);}
.btn-outline-white{background:transparent;color:white;border:2px solid rgba(255,255,255,0.3);}
.btn-outline-white:hover{border-color:white;}
.hero{max-width:1200px;margin:0 auto;padding:9rem 2rem 5rem;text-align:center;}
.hero-badge{display:inline-flex;align-items:center;gap:0.5rem;background:var(--ai-gradient);padding:0.5rem 1.25rem;border-radius:100px;font-size:0.85rem;font-weight:600;color:white;margin-bottom:1.5rem;}
.hero h1{font-size:clamp(2.5rem,5vw,3.75rem);font-weight:800;line-height:1.15;margin-bottom:1.25rem;}
.hero h1 span{background:var(--ai-gradient);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.hero-sub{font-size:1.15rem;color:var(--text-secondary);max-width:680px;margin:0 auto 2rem;}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-bottom:3rem;}
.trust-bar{display:flex;align-items:center;justify-content:center;gap:0.75rem;flex-wrap:wrap;color:var(--text-muted);font-size:0.85rem;}
.trust-check{color:var(--accent);}
.page-hero{background:linear-gradient(135deg,#064e3b,#065f46,#047857);color:white;padding:8rem 2rem 4rem;text-align:center;}
.page-hero-content{max-width:900px;margin:0 auto;}
.page-hero-icon{width:80px;height:80px;background:rgba(255,255,255,0.15);border-radius:20px;display:flex;align-items:center;justify-content:center;font-size:2.5rem;margin:0 auto 1.5rem;}
.page-hero h1{font-size:clamp(2.5rem,5vw,3.5rem);font-weight:800;margin-bottom:1rem;}
.page-hero p{font-size:1.2rem;color:rgba(255,255,255,0.85);max-width:650px;margin:0 auto;}
.section{padding:5rem 2rem;}
.section-light{background:var(--bg-white);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.section-dark{background:var(--text);color:white;}
.section-gradient{background:linear-gradient(135deg,#064e3b,#065f46,#047857);color:white;}
.container{max-width:1200px;margin:0 auto;}
.section-header{text-align:center;margin-bottom:3.5rem;}
.section-label{font-size:0.8rem;font-weight:700;text-transform:uppercase;letter-spacing:1.5px;color:var(--accent);margin-bottom:0.75rem;}
.section-title{font-size:2.25rem;font-weight:800;}
.grid{display:grid;gap:1.5rem;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
.card{background:var(--bg-white);border:1px solid var(--border);border-radius:12px;padding:1.75rem;transition:all 0.3s;text-decoration:none;color:inherit;display:block;}
.card:hover{border-color:var(--accent);transform:translateY(-4px);box-shadow:0 10px 15px rgba(0,0,0,0.1);}
.card-icon{width:48px;height:48px;background:var(--accent-light);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:1rem;}
.card h3{font-size:1.1rem;font-weight:700;margin-bottom:0.5rem;}
.card p{color:var(--text-secondary);font-size:0.9rem;}
.feature-card{text-align:center;padding:2rem;}
.feature-icon{width:64px;height:64px;background:var(--accent-light);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:1.75rem;margin:0 auto 1.25rem;}
.ai-card{background:rgba(255,255,255,0.1);border:1px solid rgba(255,255,255,0.15);border-radius:16px;padding:2rem;backdrop-filter:blur(10px);color:white;text-decoration:none;display:block;}
.ai-card:hover{background:rgba(255,255,255,0.15);transform:translateY(-4px);}
.ai-card-icon{width:56px;height:56px;background:rgba(255,255,255,0.15);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.75rem;margin-bottom:1.25rem;}
.ai-card p{color:rgba(255,255,255,0.7);}
.ai-card-link{display:inline-flex;align-items:center;gap:0.3rem;margin-top:1rem;font-size:0.85rem;font-weight:600;color:#a7f3d0;}
.form-group{margin-bottom:1.25rem;}
.form-label{display:block;font-size:0.9rem;font-weight:600;margin-bottom:0.5rem;}
.form-input,.form-textarea,.form-select{width:100%;padding:0.75rem 1rem;font-size:0.95rem;font-family:inherit;border:1px solid var(--border);border-radius:6px;background:var(--bg-white);transition:all 0.2s;}
.form-input:focus,.form-textarea:focus,.form-select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px rgba(5,150,105,0.1);}
.form-textarea{min-height:150px;resize:vertical;}
.form-checkbox{display:flex;align-items:flex-start;gap:0.75rem;}
.form-checkbox input{margin-top:0.25rem;width:18px;height:18px;accent-color:var(--accent);}
.form-error{color:#dc2626;font-size:0.85rem;margin-top:0.25rem;}
.calendly-floating-btn{position:fixed;right:20px;bottom:100px;z-index:90;display:flex;align-items:center;gap:0.5rem;background:var(--accent);color:white;padding:0.75rem 1.25rem;border-radius:100px;font-weight:600;font-size:0.9rem;cursor:pointer;box-shadow:0 4px 20px rgba(5,150,105,0.4);transition:all 0.3s;border:none;}
.calendly-floating-btn:hover{background:var(--accent-dark);transform:translateY(-3px);}
.calendly-btn-icon{font-size:1.25rem;}
.calendly-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;background:rgba(0,0,0,0.7);backdrop-filter:blur(5px);display:flex;align-items:center;justify-content:center;padding:2rem;opacity:0;visibility:hidden;transition:all 0.3s;}
.calendly-overlay.active{opacity:1;visibility:visible;}
.calendly-modal{background:white;border-radius:16px;width:100%;max-width:700px;max-height:90vh;overflow:hidden;position:relative;transform:scale(0.95);transition:transform 0.3s;}
.calendly-overlay.active .calendly-modal{transform:scale(1);}
.calendly-close{position:absolute;top:1rem;right:1rem;z-index:10;width:36px;height:36px;border-radius:50%;border:none;background:var(--bg);color:var(--text);font-size:1.5rem;cursor:pointer;display:flex;align-items:center;justify-content:center;}
.calendly-close:hover{background:var(--accent-light);color:var(--accent);}
.flash-message{position:fixed;bottom:2rem;left:50%;transform:translateX(-50%);z-index:1000;display:flex;align-items:center;gap:0.75rem;padding:1rem 1.5rem;border-radius:12px;font-weight:500;box-shadow:0 10px 15px rgba(0,0,0,0.1);transition:opacity 0.3s;}
.flash-success{background:var(--accent);color:white;}
.flash-error{background:#dc2626;color:white;}
footer{background:#111;color:rgba(255,255,255,0.6);padding:4rem 2rem 2rem;}
.footer-content{max-width:1200px;margin:0 auto;}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.1);}
.footer-brand .logo{color:white;margin-bottom:1rem;}
.footer-brand p{font-size:0.85rem;margin-bottom:0.5rem;}
.footer-section h4{color:white;font-size:0.9rem;font-weight:700;margin-bottom:1rem;}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:0.6rem;}
.footer-links a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.85rem;}
.footer-links a:hover{color:white;}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;}
.footer-legal{font-size:0.8rem;}
.footer-legal a{color:rgba(255,255,255,0.5);text-decoration:none;margin-left:1.5rem;}
.footer-legal a:hover{color:white;}
.text-center{text-align:center;}
.mt-4{margin-top:2rem;}
footer a{color:rgba(255,255,255,0.6);text-decoration:none;}
footer a:hover{color:white;}
.footer-brand a{color:rgba(255,255,255,0.6);}
.footer-brand a:hover{color:white;}

/* Tablet */
@media(max-width:1024px){
    .grid-4,.grid-3{grid-template-columns:repeat(2,1fr);}
    .footer-grid{grid-template-columns:repeat(2,1fr);}
}

/* Mobile */
@media(max-width:768px){
    .mobile-menu-toggle{display:flex;}
    .desktop-only{display:none;}
    .mobile-only{display:block;}
    
    .nav-links{
        position:fixed;
        top:0;
        left:0;
        right:0;
        bottom:0;
        background:var(--bg-white);
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:0;
        padding:5rem 2rem 2rem;
        opacity:0;
        visibility:hidden;
        transition:all 0.3s;
        z-index:100;
    }
    .nav-links.active{
        opacity:1;
        visibility:visible;
    }
    .nav-links li{
        width:100%;
        text-align:center;
        border-bottom:1px solid var(--border);
    }
    .nav-links li:last-child{
        border-bottom:none;
        margin-top:1rem;
    }
    .nav-links > li > a{
        display:block;
        padding:1rem;
        font-size:1.1rem;
        font-weight:600;
        color:var(--text);
    }
    .nav-dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border:none;
        border-radius:0;
        padding:0 0 1rem 0;
        background:var(--bg);
    }
    .nav-dropdown-menu a{
        padding:0.75rem 1rem;
        font-size:1rem;
    }
    .mobile-cta{
        display:inline-block;
        background:var(--accent);
        color:white !important;
        padding:1rem 2rem;
        border-radius:8px;
        font-weight:600;
        margin-top:1rem;
    }
    
    .hero h1,.page-hero h1{font-size:2rem;}
    .grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .footer-bottom{flex-direction:column;text-align:center;}
    .calendly-btn-text{display:none;}
    .calendly-floating-btn{width:56px;height:56px;padding:0;justify-content:center;border-radius:50%;}
}
