/* ═══ Fundraising Expert — Site Shared Styles ═══ */
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
:root{
    --orange:#f97316;--orange-light:#fb923c;--orange-dark:#ea580c;
    --dark:#0a0a0a;--dark-2:#111111;--dark-3:#1a1a1a;--dark-4:#222222;
    --text:#fafafa;--text-2:#a1a1aa;--text-3:#71717a;--radius:16px;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;background:var(--dark);color:var(--text);overflow-x:hidden}
a{color:inherit;text-decoration:none}

/* NAV */
.site-nav{
    position:fixed;top:0;left:0;right:0;z-index:100;padding:0.8rem 1.2rem;
    display:flex;align-items:center;justify-content:space-between;
    background:rgba(10,10,10,0.7);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,0.05);transition:all 0.3s;
}
.site-nav.scrolled{background:rgba(10,10,10,0.95)}
.nav-logo{display:flex;align-items:center;gap:0.5rem;font-weight:700;font-size:1.1rem}
.nav-logo i{color:var(--orange);width:1.3rem;height:1.3rem}
.nav-links{display:flex;gap:1.6rem;align-items:center}
.nav-links a{font-size:0.85rem;color:var(--text-2);transition:color 0.2s}
.nav-links a:hover{color:var(--text)}
.nav-links a.active{color:var(--orange)}
.nav-cta{
    background:var(--orange);color:#fff !important;padding:0.55rem 1.4rem;
    border-radius:50px;font-size:0.85rem;font-weight:600;transition:all 0.2s;
}
.nav-cta:hover{background:var(--orange-light);transform:translateY(-1px)}
.nav-hamburger{
    display:none;background:none;border:none;color:#fff;cursor:pointer;padding:0.5rem;
    width:44px;height:44px;align-items:center;justify-content:center;
    -webkit-tap-highlight-color:transparent;position:relative;z-index:10000;
}
.nav-hamburger [data-lucide]{width:24px;height:24px}
.mobile-menu-overlay{display:none}

/* SECTIONS */
.section{
    min-height:100vh;display:flex;align-items:center;justify-content:center;
    padding:6rem 2rem;position:relative;overflow:hidden;
}
.section.short{min-height:auto;padding:5rem 2rem}
.section-inner{max-width:1200px;width:100%;margin:0 auto}
.section-label{
    display:inline-flex;align-items:center;gap:0.4rem;
    font-size:0.78rem;font-weight:600;text-transform:uppercase;
    letter-spacing:0.08em;color:var(--orange);margin-bottom:1rem;
}
.section-label i{width:0.85rem;height:0.85rem}
.section-title{font-size:clamp(2rem,4vw,3rem);font-weight:800;line-height:1.1;margin-bottom:0.8rem}
.section-desc{color:var(--text-2);font-size:1.05rem;max-width:600px;line-height:1.6;margin-bottom:3rem}

/* HERO */
.hero{background:var(--dark)}
.hero-grid-bg{position:absolute;inset:0;overflow:hidden;opacity:0.15}
.hero-grid-bg .gsq{
    position:absolute;border-radius:12px;
    background:linear-gradient(135deg,var(--orange) 0%,transparent 60%);
    animation:gridFloat 20s ease-in-out infinite;
}
.gsq:nth-child(1){width:120px;height:120px;top:10%;left:5%;animation-delay:0s}
.gsq:nth-child(2){width:80px;height:80px;top:60%;left:15%;animation-delay:-3s}
.gsq:nth-child(3){width:150px;height:150px;top:20%;right:10%;animation-delay:-6s}
.gsq:nth-child(4){width:60px;height:60px;top:70%;right:20%;animation-delay:-9s}
.gsq:nth-child(5){width:100px;height:100px;bottom:15%;left:40%;animation-delay:-12s}
.gsq:nth-child(6){width:90px;height:90px;top:40%;left:60%;animation-delay:-4s}
@keyframes gridFloat{
    0%,100%{transform:translateY(0) rotate(0deg);opacity:0.3}
    25%{transform:translateY(-30px) rotate(5deg);opacity:0.6}
    50%{transform:translateY(-15px) rotate(-3deg);opacity:0.4}
    75%{transform:translateY(-40px) rotate(8deg);opacity:0.7}
}
.hero-content{text-align:center;position:relative;z-index:2}
.hero-badge{
    display:inline-flex;align-items:center;gap:0.4rem;
    background:rgba(249,115,22,0.1);border:1px solid rgba(249,115,22,0.25);
    padding:0.4rem 1rem;border-radius:50px;font-size:0.78rem;
    color:var(--orange-light);margin-bottom:2rem;
}
.hero-badge i{width:0.8rem;height:0.8rem}
.hero h1{
    font-size:clamp(2.8rem,6vw,5rem);font-weight:900;line-height:1.05;margin-bottom:1.5rem;
    background:linear-gradient(135deg,#fff 0%,#d4d4d8 50%,var(--orange-light) 100%);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hero-sub{font-size:clamp(1rem,2vw,1.3rem);color:var(--text-2);max-width:650px;margin:0 auto 2.5rem;line-height:1.6}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.btn-hero{
    padding:0.9rem 2.2rem;border-radius:50px;font-size:1rem;font-weight:600;
    cursor:pointer;transition:all 0.25s;border:none;display:inline-flex;align-items:center;gap:0.5rem;
}
.btn-hero i{width:1.1rem;height:1.1rem}
.btn-hero-primary{background:var(--orange);color:#fff}
.btn-hero-primary:hover{background:var(--orange-light);transform:translateY(-2px);box-shadow:0 12px 40px rgba(249,115,22,0.3)}
.btn-hero-secondary{background:rgba(255,255,255,0.06);color:var(--text);border:1px solid rgba(255,255,255,0.1)}
.btn-hero-secondary:hover{background:rgba(255,255,255,0.1);transform:translateY(-2px)}
.hero-image-container{margin-top:4rem;position:relative;max-width:900px;margin-left:auto;margin-right:auto}
.hero-image-container img{width:100%;box-shadow:0 40px 100px rgba(0,0,0,0.5),0 0 0 1px rgba(255,255,255,0.05)}
.hero-glow{
    position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
    width:80%;height:80%;background:radial-gradient(ellipse,rgba(249,115,22,0.15) 0%,transparent 70%);
    filter:blur(60px);z-index:-1;
}

/* PAGE HERO (subpages) */
.page-hero{min-height:auto;padding:8rem 2rem 4rem;text-align:center}
.page-hero h1{
    font-size:clamp(2.2rem,5vw,3.5rem);font-weight:900;line-height:1.1;margin-bottom:1rem;
    background:linear-gradient(135deg,#fff 0%,#d4d4d8 50%,var(--orange-light) 100%);
    -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.page-hero p{color:var(--text-2);font-size:1.1rem;max-width:600px;margin:0 auto;line-height:1.6}

/* FEATURE CARDS */
.features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.feat-card{
    background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);
    border-radius:var(--radius);padding:2rem;transition:all 0.3s;position:relative;overflow:hidden;
}
.feat-card::before{
    content:'';position:absolute;top:0;left:0;right:0;height:2px;
    background:linear-gradient(90deg,transparent,var(--orange),transparent);opacity:0;transition:opacity 0.3s;
}
.feat-card:hover{transform:translateY(-4px);border-color:rgba(249,115,22,0.2)}
.feat-card:hover::before{opacity:1}
.feat-card-icon{
    width:48px;height:48px;border-radius:12px;background:rgba(249,115,22,0.1);
    display:flex;align-items:center;justify-content:center;margin-bottom:1.2rem;color:var(--orange);
}
.feat-card-icon i{width:1.3rem;height:1.3rem}
.feat-card h3{font-size:1.05rem;font-weight:700;margin-bottom:0.5rem}
.feat-card p{color:var(--text-2);font-size:0.88rem;line-height:1.55}

/* SHOWCASE (2-col) */
.showcase{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.check-item{display:flex;align-items:center;gap:0.6rem;color:var(--text-2);font-size:0.9rem}
.check-item i{width:1rem;height:1rem;color:var(--orange)}

/* AGENT LIST */
.agent-list{display:flex;flex-direction:column;gap:0.8rem}
.agent-item{
    display:flex;align-items:center;gap:1rem;padding:1rem 1.2rem;border-radius:12px;
    background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);transition:all 0.3s;cursor:default;
}
.agent-item:hover{border-color:rgba(249,115,22,0.3);background:var(--dark-4)}
.agent-icon{
    width:40px;height:40px;border-radius:10px;background:rgba(249,115,22,0.1);
    display:flex;align-items:center;justify-content:center;color:var(--orange);flex-shrink:0;
}
.agent-icon i{width:1.1rem;height:1.1rem}
.agent-info h4{font-size:0.92rem;font-weight:600;margin-bottom:0.15rem}
.agent-info p{font-size:0.8rem;color:var(--text-3)}

/* DATA VISUAL */
.data-visual{background:var(--dark-3);border-radius:var(--radius);padding:2rem;border:1px solid rgba(255,255,255,0.05)}
.data-bars{display:flex;align-items:flex-end;gap:0.8rem;height:200px;padding-top:1rem}
.data-bar{
    flex:1;border-radius:8px 8px 0 0;
    background:linear-gradient(to top,var(--orange-dark),var(--orange-light));
    animation:barGrow 1.5s ease-out forwards;transform-origin:bottom;
}
@keyframes barGrow{from{transform:scaleY(0)}to{transform:scaleY(1)}}
.data-bar:nth-child(1){height:60%;animation-delay:0.1s}
.data-bar:nth-child(2){height:85%;animation-delay:0.2s}
.data-bar:nth-child(3){height:45%;animation-delay:0.3s}
.data-bar:nth-child(4){height:95%;animation-delay:0.4s}
.data-bar:nth-child(5){height:70%;animation-delay:0.5s}
.data-bar:nth-child(6){height:55%;animation-delay:0.6s}
.data-bar:nth-child(7){height:80%;animation-delay:0.7s}
.data-labels{display:flex;justify-content:space-between;margin-top:0.8rem}
.data-labels span{font-size:0.7rem;color:var(--text-3)}

/* PRIVACY CARDS */
.privacy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.privacy-card{
    text-align:center;padding:2.5rem 1.5rem;border-radius:var(--radius);
    background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);transition:all 0.3s;
}
.privacy-card:hover{border-color:rgba(249,115,22,0.2);transform:translateY(-3px)}
.privacy-card-icon{
    width:56px;height:56px;border-radius:50%;background:rgba(249,115,22,0.1);
    display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem;color:var(--orange);
}
.privacy-card-icon i{width:1.4rem;height:1.4rem}
.privacy-card h3{font-size:1rem;font-weight:700;margin-bottom:0.4rem}
.privacy-card p{font-size:0.85rem;color:var(--text-2);line-height:1.5}

/* STATS */
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;margin-top:3rem}
.stat-card{
    text-align:center;padding:2rem 1rem;border-radius:var(--radius);
    background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);position:relative;overflow:hidden;
}
.stat-card::after{
    content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
    background:linear-gradient(90deg,transparent,var(--orange),transparent);opacity:0.5;
}
.stat-number{font-size:clamp(2.2rem,4vw,3rem);font-weight:900;color:var(--orange);font-variant-numeric:tabular-nums;line-height:1.1;margin-bottom:0.4rem}
.stat-label{font-size:0.85rem;color:var(--text-2);line-height:1.4}
.stat-icon{display:flex;align-items:center;justify-content:center;margin-bottom:0.6rem;color:var(--orange)}
.stat-icon i{width:1.6rem;height:1.6rem}

/* MISTRAL */
.mistral-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}
.mistral-point{
    display:flex;align-items:flex-start;gap:1rem;padding:1.2rem 1.4rem;
    background:var(--dark-3);border-radius:12px;border:1px solid rgba(255,255,255,0.05);transition:all 0.3s;
}
.mistral-point:hover{border-color:rgba(249,115,22,0.2)}
.mistral-point-icon{
    width:40px;height:40px;border-radius:10px;background:rgba(249,115,22,0.1);
    display:flex;align-items:center;justify-content:center;color:var(--orange);flex-shrink:0;
}
.mistral-point-icon i{width:1.1rem;height:1.1rem}
.mistral-point h4{font-size:0.92rem;font-weight:600;margin-bottom:0.2rem}
.mistral-point p{font-size:0.82rem;color:var(--text-2);line-height:1.5}
.mistral-quote{
    margin-top:2rem;padding:1.5rem;border-left:3px solid var(--orange);
    background:rgba(249,115,22,0.05);border-radius:0 12px 12px 0;
}
.mistral-quote p{font-size:0.9rem;color:var(--text-2);line-height:1.6;font-style:italic}

/* FOUNDER */
.founder-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.founder-name{font-size:1.6rem;font-weight:800;margin-bottom:0.2rem}
.founder-role{font-size:0.9rem;color:var(--orange);font-weight:600;margin-bottom:1.5rem}
.founder-text{color:var(--text-2);font-size:0.92rem;line-height:1.7}
.founder-text p{margin-bottom:1rem}
.founder-cards{display:flex;flex-direction:column;gap:1rem}
.founder-card{padding:1.4rem 1.6rem;border-radius:12px;background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);transition:all 0.3s}
.founder-card:hover{border-color:rgba(249,115,22,0.2);transform:translateX(4px)}
.founder-card-header{display:flex;align-items:center;gap:0.8rem;margin-bottom:0.5rem}
.founder-card-icon{width:36px;height:36px;border-radius:8px;background:rgba(249,115,22,0.1);display:flex;align-items:center;justify-content:center;color:var(--orange);flex-shrink:0}
.founder-card-icon i{width:1rem;height:1rem}
.founder-card h4{font-size:0.9rem;font-weight:700}
.founder-card p{font-size:0.82rem;color:var(--text-2);line-height:1.5}
.founder-newsletter{margin-top:1rem;padding:1.4rem 1.6rem;border-radius:12px;background:linear-gradient(135deg,rgba(249,115,22,0.08) 0%,rgba(249,115,22,0.02) 100%);border:1px solid rgba(249,115,22,0.15)}
.founder-newsletter h4{font-size:0.9rem;font-weight:700;margin-bottom:0.3rem}
.founder-newsletter p{font-size:0.82rem;color:var(--text-2);line-height:1.5;margin-bottom:0.8rem}
.founder-newsletter a{display:inline-flex;align-items:center;gap:0.4rem;color:var(--orange);font-size:0.85rem;font-weight:600;transition:all 0.2s}
.founder-newsletter a:hover{color:var(--orange-light)}
.founder-newsletter a i{width:0.9rem;height:0.9rem}

/* CTA */
.cta-section{background:linear-gradient(135deg,var(--dark) 0%,#1a0a00 40%,#2d1200 70%,rgba(249,115,22,0.15) 100%);text-align:center}
.cta-section h2{font-size:clamp(2rem,4vw,3.2rem);font-weight:800;margin-bottom:1rem}
.cta-section p{color:var(--text-2);font-size:1.1rem;max-width:550px;margin:0 auto 2.5rem;line-height:1.6}

/* FOOTER */
.site-footer{padding:3rem 2rem;text-align:center;border-top:1px solid rgba(255,255,255,0.05);background:var(--dark)}
.footer-logo{display:flex;align-items:center;justify-content:center;gap:0.5rem;font-weight:700;margin-bottom:0.8rem}
.footer-logo i{color:var(--orange);width:1.1rem;height:1.1rem}
.site-footer p{color:var(--text-3);font-size:0.8rem}
.footer-links{display:flex;gap:1.5rem;justify-content:center;margin-top:0.8rem;flex-wrap:wrap}
.footer-links a{color:var(--text-3);font-size:0.8rem;transition:color 0.2s}
.footer-links a:hover{color:var(--orange)}

/* SCROLL ANIMATIONS */
.reveal{opacity:0;transform:translateY(40px);transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1),transform 0.8s cubic-bezier(0.16,1,0.3,1)}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}
.reveal-delay-4{transition-delay:0.4s}
.reveal-delay-5{transition-delay:0.5s}
.reveal-delay-6{transition-delay:0.6s}

/* BLOG */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.blog-card{display:flex;flex-direction:column;background:var(--dark-3);border:1px solid rgba(255,255,255,0.05);border-radius:var(--radius);overflow:hidden;transition:all 0.3s;text-decoration:none;color:inherit}
.blog-card:hover{border-color:rgba(249,115,22,0.2);transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,0.3)}
.blog-card-cover{height:180px;background-size:cover;background-position:center;background-color:var(--dark-4)}
.blog-card-cover-empty{display:flex;align-items:center;justify-content:center;color:var(--text-3);opacity:0.3}
.blog-card-cover-empty i{width:2.5rem;height:2.5rem}
.blog-card-body{padding:1.2rem 1.4rem;flex:1;display:flex;flex-direction:column}
.blog-card-cat{font-size:0.68rem;text-transform:uppercase;letter-spacing:0.05em;color:var(--orange);font-weight:600;margin-bottom:0.5rem}
.blog-card-body h3{font-size:1.05rem;font-weight:700;line-height:1.3;margin-bottom:0.4rem}
.blog-card-body p{font-size:0.82rem;color:var(--text-2);line-height:1.5;flex:1}
.blog-card-meta{display:flex;gap:1rem;font-size:0.72rem;color:var(--text-3);margin-top:0.8rem;align-items:center}
.blog-card-meta span{display:flex;align-items:center;gap:0.25rem}

/* BLOG ARTICLE BODY */
.blog-article-body{max-width:800px;margin:0 auto;font-size:1.02rem;line-height:1.8;color:var(--text-2)}
.blog-article-body h2{font-size:1.5rem;font-weight:800;color:var(--text);margin:2.5rem 0 1rem;line-height:1.2}
.blog-article-body h3{font-size:1.2rem;font-weight:700;color:var(--text);margin:2rem 0 0.8rem;line-height:1.3}
.blog-article-body p{margin-bottom:1.2rem}
.blog-article-body ul,.blog-article-body ol{margin:0 0 1.2rem 1.5rem;padding:0}
.blog-article-body li{margin-bottom:0.5rem}
.blog-article-body strong{color:var(--text);font-weight:600}
.blog-article-body a{color:var(--orange);text-decoration:underline;text-underline-offset:2px}
.blog-article-body a:hover{color:var(--orange-light)}
.blog-article-body blockquote{border-left:3px solid var(--orange);padding:1rem 1.5rem;margin:1.5rem 0;background:rgba(249,115,22,0.04);border-radius:0 8px 8px 0;font-style:italic;color:var(--text-2)}
.blog-article-body img{max-width:100%;border-radius:var(--radius);margin:1.5rem 0}
.blog-article-body code{background:var(--dark-4);padding:0.15rem 0.4rem;border-radius:4px;font-size:0.9em}
.blog-article-body hr{border:none;border-top:1px solid rgba(255,255,255,0.06);margin:2rem 0}

/* AI DEMO (strumenti page) */
.ai-demo-wrap{max-width:680px;margin:0 auto;perspective:1000px}
.ai-demo{background:var(--dark-3);border:1px solid rgba(255,255,255,0.08);border-radius:16px;overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,0.5),0 0 0 1px rgba(255,255,255,0.03);animation:aiPulseGlow 4s ease-in-out infinite}
.ai-demo-header{display:flex;align-items:center;gap:0.4rem;padding:0.7rem 1rem;background:var(--dark-4);border-bottom:1px solid rgba(255,255,255,0.05)}
.ai-demo-dot{width:10px;height:10px;border-radius:50%}
.ai-demo-title{margin-left:0.5rem;font-size:0.72rem;color:var(--text-3);font-weight:500}
.ai-demo-body{padding:1.2rem;min-height:200px;display:flex;flex-direction:column;gap:0.8rem}
.ai-demo-msg{display:flex;gap:0.6rem;align-items:flex-start;transition:all 0.5s cubic-bezier(0.16,1,0.3,1)}
.ai-demo-user{flex-direction:row-reverse}
.ai-demo-avatar{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ai-demo-avatar-user{background:var(--dark-4);color:var(--text-3)}
.ai-demo-avatar-ai{background:rgba(249,115,22,0.15);color:var(--orange)}
.ai-demo-bubble{border-radius:12px;padding:0.7rem 0.9rem;font-size:0.82rem;line-height:1.5;max-width:85%}
.ai-demo-bubble-user{background:var(--dark-4);color:var(--text-2);border-bottom-right-radius:4px}
.ai-demo-bubble-ai{background:rgba(249,115,22,0.06);border:1px solid rgba(249,115,22,0.12);color:var(--text);border-bottom-left-radius:4px}
.ai-demo-typing{display:flex;gap:4px;padding:0.3rem 0}
.ai-demo-typing span{width:6px;height:6px;border-radius:50%;background:var(--orange);animation:aiTypingDot 1.2s ease-in-out infinite}
.ai-demo-typing span:nth-child(2){animation-delay:0.15s}
.ai-demo-typing span:nth-child(3){animation-delay:0.3s}
.ai-demo-tag{display:inline-block;padding:0.2rem 0.55rem;background:rgba(249,115,22,0.1);border:1px solid rgba(249,115,22,0.2);border-radius:6px;font-size:0.68rem;color:var(--orange);font-weight:500}
.ai-demo-input{display:flex;align-items:center;gap:0.5rem;padding:0.7rem 1rem;border-top:1px solid rgba(255,255,255,0.05);color:var(--text-3);font-size:0.8rem}

/* RESPONSIVE */
@media(max-width:900px){
    .features-grid{grid-template-columns:1fr 1fr}
    .showcase{grid-template-columns:1fr;gap:2.5rem}
    .privacy-grid{grid-template-columns:1fr}
    .stats-grid{grid-template-columns:repeat(2,1fr)}
    .mistral-grid,.founder-grid{grid-template-columns:1fr;gap:2.5rem}
    .nav-hamburger{display:flex}
    .nav-links{display:none}
    .mobile-menu-overlay{
        display:none;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999;
        background:#0a0a0a;flex-direction:column;align-items:center;justify-content:center;padding:2rem;
    }
    .mobile-menu-overlay.open{display:flex}
    .mobile-menu-inner{display:flex;flex-direction:column;align-items:center;gap:0.4rem;width:100%;max-width:300px}
    .mobile-menu-link{display:block;width:100%;text-align:center;font-size:1.2rem;font-weight:500;color:#a1a1aa;padding:1rem;border-radius:12px;transition:color 0.15s,background 0.15s;-webkit-tap-highlight-color:transparent}
    .mobile-menu-link:hover,.mobile-menu-link:active{color:#fff;background:rgba(249,115,22,0.1)}
    .mobile-menu-cta{display:inline-block;margin-top:1.5rem;background:var(--orange);color:#fff;font-weight:600;font-size:1.1rem;padding:0.9rem 3rem;border-radius:50px;transition:background 0.2s;-webkit-tap-highlight-color:transparent}
    .mobile-menu-cta:hover{background:var(--orange-light)}
    .hero{padding-top:7rem}
    .page-hero{padding-top:7rem}
    .section{padding:4rem 1.2rem}
}
@media(max-width:600px){
    .features-grid{grid-template-columns:1fr}
    .section{padding:3rem 1rem}
    .hero{padding-top:6rem}
    .hero-buttons{flex-direction:column;align-items:center}
    .section-title{font-size:clamp(1.5rem,5vw,2rem)}
    .section-desc{font-size:0.92rem}
    .stats-grid{grid-template-columns:1fr 1fr;gap:1rem}
    .stat-card{padding:1.5rem 0.8rem}
    .data-bars{height:150px}
    .footer-links{gap:0.8rem}
    .site-footer p{font-size:0.72rem;padding:0 0.5rem}
}
