@import"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap";:root{--primary-50: #f0f4ff;--primary-100: #e0e7ff;--primary-200: #c7d2fe;--primary-300: #a5b4fc;--primary-400: #818cf8;--primary-500: #6366f1;--primary-600: #4f46e5;--primary-700: #4338ca;--primary-800: #3730a3;--primary-900: #312e81;--gray-50: #f9fafb;--gray-100: #f3f4f6;--gray-200: #e5e7eb;--gray-300: #d1d5db;--gray-400: #9ca3af;--gray-500: #6b7280;--gray-600: #4b5563;--gray-700: #374151;--gray-800: #1f2937;--gray-900: #111827;--space-1: .25rem;--space-2: .5rem;--space-3: .75rem;--space-4: 1rem;--space-5: 1.25rem;--space-6: 1.5rem;--space-8: 2rem;--space-10: 2.5rem;--space-12: 3rem;--space-16: 4rem;--space-20: 5rem;--space-24: 6rem;--radius-sm: .375rem;--radius-md: .5rem;--radius-lg: .75rem;--radius-xl: 1rem;--radius-2xl: 1.5rem;--radius-3xl: 2rem;--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, .05);--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);--transition-fast: .15s ease;--transition-normal: .3s ease;--transition-slow: .5s ease}html{scroll-behavior:smooth;font-size:16px}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.6;color:var(--gray-800);background-color:#fff;min-height:100vh}h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2;color:var(--gray-900)}h1{font-size:3.5rem}h2{font-size:2.5rem}h3{font-size:2rem}h4{font-size:1.5rem}h5{font-size:1.25rem}h6{font-size:1.125rem}p{line-height:1.7;color:var(--gray-600)}a{color:var(--primary-600);text-decoration:none;transition:color var(--transition-fast)}a:hover{color:var(--primary-700)}*:focus{outline:2px solid var(--primary-500);outline-offset:2px}::selection{background-color:var(--primary-100);color:var(--primary-900)}::-webkit-scrollbar{width:8px}::-webkit-scrollbar-track{background:var(--gray-100)}::-webkit-scrollbar-thumb{background:var(--gray-300);border-radius:var(--radius-md)}::-webkit-scrollbar-thumb:hover{background:var(--gray-400)}@media (max-width: 768px){h1{font-size:2.5rem}h2{font-size:2rem}h3{font-size:1.75rem}h4{font-size:1.25rem}}.navbar{position:fixed;top:0;left:0;right:0;z-index:1000;background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-bottom:1px solid rgba(0,0,0,.1);transition:all .3s ease}.navbar.scrolled{background:#fffffffa;box-shadow:0 2px 20px #0000001a}.navbar-container{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;justify-content:space-between;align-items:center;height:70px}.navbar-logo{display:flex;flex-direction:column;align-items:flex-start;text-decoration:none;color:#2d3748;font-weight:700;transition:transform .3s ease}.navbar-logo:hover{transform:scale(1.05)}.logo-text{font-size:1.5rem;line-height:1;background:linear-gradient(135deg,#667eea,#764ba2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.logo-subtitle{font-size:.8rem;color:#718096;font-weight:400;margin-top:-2px}.navbar-menu{display:flex;align-items:center;gap:2rem}.navbar-link{text-decoration:none;color:#4a5568;font-weight:500;position:relative;transition:color .3s ease}.navbar-link:hover{color:#667eea}.navbar-link:after{content:"";position:absolute;bottom:-5px;left:0;width:0;height:2px;background:linear-gradient(135deg,#667eea,#764ba2);transition:width .3s ease}.navbar-link:hover:after{width:100%}.cta-button{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;padding:.75rem 1.5rem;border-radius:50px;font-weight:600;cursor:pointer;transition:all .3s ease;box-shadow:0 4px 15px #667eea4d}.cta-button:hover{transform:translateY(-2px);box-shadow:0 6px 20px #667eea66}.hamburger{display:none;flex-direction:column;cursor:pointer;gap:4px}.hamburger span{width:25px;height:3px;background:#4a5568;border-radius:2px;transition:all .3s ease}.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(6px,6px)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(6px,-6px)}@media (max-width: 768px){.navbar-container{padding:0 1rem}.navbar-menu{position:fixed;top:70px;left:0;right:0;background:#fff;flex-direction:column;padding:2rem;box-shadow:0 4px 20px #0000001a;transform:translateY(-100%);opacity:0;visibility:hidden;transition:all .3s ease;gap:1.5rem}.navbar-menu.active{transform:translateY(0);opacity:1;visibility:visible}.hamburger{display:flex}.navbar-cta{margin-top:1rem}}.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:linear-gradient(135deg,#667eea,#764ba2)}.hero-background{position:absolute;inset:0;overflow:hidden}.gradient-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.3;animation:float 6s ease-in-out infinite}.orb-1{width:300px;height:300px;background:linear-gradient(45deg,#ff6b6b,#feca57);top:10%;left:10%;animation-delay:0s}.orb-2{width:200px;height:200px;background:linear-gradient(45deg,#48dbfb,#0abde3);top:60%;right:20%;animation-delay:2s}.orb-3{width:250px;height:250px;background:linear-gradient(45deg,#ff9ff3,#f368e0);bottom:20%;left:60%;animation-delay:4s}@keyframes float{0%,to{transform:translateY(0) rotate(0)}50%{transform:translateY(-20px) rotate(180deg)}}.hero-container{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center}.hero-content{opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out .3s forwards}.hero-badge{display:inline-block;margin-bottom:1.5rem;opacity:0;transform:translateY(20px);animation:fadeInUp 1s ease-out .5s forwards}.badge-text{background:#fff3;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding:.5rem 1rem;border-radius:50px;font-size:.9rem;font-weight:600;color:#fff;border:1px solid rgba(255,255,255,.3)}.hero-title{font-size:3.5rem;font-weight:800;line-height:1.1;color:#fff;margin-bottom:1.5rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out .7s forwards}.title-highlight{background:linear-gradient(45deg,gold,#ffed4e);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:block}.hero-subtitle{font-size:1.2rem;line-height:1.6;color:#ffffffe6;margin-bottom:2.5rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out .9s forwards}.hero-actions{display:flex;gap:1rem;margin-bottom:3rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out 1.1s forwards}.btn-primary,.btn-secondary{display:flex;align-items:center;gap:.5rem;padding:1rem 2rem;border-radius:50px;font-weight:600;font-size:1rem;cursor:pointer;transition:all .3s ease;border:none}.btn-primary{background:#fff;color:#667eea;box-shadow:0 4px 20px #0000001a}.btn-primary:hover{transform:translateY(-2px);box-shadow:0 6px 25px #00000026}.btn-secondary{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.3);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.btn-secondary:hover{background:#ffffff1a;border-color:#ffffff80}.btn-icon{width:20px;height:20px}.hero-stats{display:flex;gap:2rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out 1.3s forwards}.stat{text-align:center}.stat-number{font-size:2rem;font-weight:800;color:#fff;margin-bottom:.25rem}.stat-label{font-size:.9rem;color:#fffc}.hero-visual{display:flex;justify-content:center;align-items:center;opacity:0;transform:translate(50px);animation:fadeInRight 1s ease-out 1.5s forwards}.phone-mockup{position:relative;width:300px;height:600px;background:#1a1a1a;border-radius:40px;padding:20px;box-shadow:0 20px 60px #0000004d;transform:perspective(1000px) rotateY(-10deg) rotateX(5deg);transition:transform .3s ease}.phone-mockup:hover{transform:perspective(1000px) rotateY(-5deg) rotateX(2deg)}.phone-screen{width:100%;height:100%;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:30px;padding:2rem;display:flex;flex-direction:column;position:relative;overflow:hidden}.app-interface{flex:1;display:flex;flex-direction:column;gap:1.5rem}.app-header{text-align:center;margin-bottom:1rem}.app-title{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:.25rem}.app-subtitle{font-size:.9rem;color:#fffc}.card-preview{flex:1;display:flex;align-items:center;justify-content:center}.card-template{background:#fff;border-radius:20px;padding:2rem;box-shadow:0 10px 30px #0003;transform:rotate(-5deg);animation:cardFloat 3s ease-in-out infinite}.card-content{text-align:center}.card-text{font-size:1.2rem;font-weight:600;color:#333;margin-bottom:.5rem}.card-emoji{font-size:2rem}.chat-preview{position:absolute;bottom:2rem;right:2rem;opacity:0;animation:chatBubble 2s ease-out 3s forwards}.chat-bubble{background:#fff;padding:.75rem 1rem;border-radius:20px 20px 5px;font-size:.9rem;color:#333;box-shadow:0 4px 15px #0000001a}@keyframes fadeInRight{to{opacity:1;transform:translate(0)}}@keyframes cardFloat{0%,to{transform:rotate(-5deg) translateY(0)}50%{transform:rotate(-5deg) translateY(-10px)}}@keyframes chatBubble{0%{opacity:0;transform:translateY(20px) scale(.8)}to{opacity:1;transform:translateY(0) scale(1)}}@media (max-width: 768px){.hero-container{grid-template-columns:1fr;gap:2rem;text-align:center}.hero-title{font-size:2.5rem}.hero-actions{flex-direction:column;align-items:center}.btn-primary,.btn-secondary{width:100%;max-width:300px}.hero-stats{justify-content:center}.phone-mockup{width:250px;height:500px}}.features{padding:6rem 0;background:#f8fafc}.features-header{text-align:center;margin-bottom:4rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out forwards}.features-title{font-size:3rem;font-weight:800;color:#2d3748;margin-bottom:1.5rem;line-height:1.2}.title-accent{background:linear-gradient(135deg,#667eea,#764ba2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.features-subtitle{font-size:1.2rem;color:#718096;max-width:600px;margin:0 auto;line-height:1.6}.feature-card{background:#fff;padding:2.5rem;border-radius:20px;box-shadow:0 4px 20px #00000014;transition:all .3s ease;opacity:0;transform:translateY(30px);border:1px solid rgba(0,0,0,.05)}.feature-card.animate{animation:slideInUp .6s ease-out forwards}.feature-description{color:#718096;line-height:1.6;font-size:1rem}@keyframes slideInUp{to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.features{padding:4rem 0}.features-container{padding:0 1rem}.features-title{font-size:2.2rem}.features-grid{grid-template-columns:1fr;gap:1.5rem}.feature-card{padding:2rem}}.how-it-works{padding:6rem 0;background:#fff}.how-it-works-container{max-width:1200px;margin:0 auto;padding:0 2rem}.how-it-works-header{text-align:center;margin-bottom:4rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out forwards}.how-it-works-title{font-size:3rem;font-weight:800;color:#2d3748;margin-bottom:1.5rem;line-height:1.2}.how-it-works-subtitle{font-size:1.2rem;color:#718096;max-width:600px;margin:0 auto;line-height:1.6}.steps-container{display:flex;flex-direction:column;gap:3rem;position:relative}.step{display:flex;align-items:center;gap:2rem;opacity:0;transform:translate(-50px);transition:all .6s ease}.step.animate{animation:slideInLeft .6s ease-out forwards}.step:nth-child(2n){flex-direction:row-reverse;transform:translate(50px)}.step:nth-child(2n).animate{animation:slideInRight .6s ease-out forwards}.step-number{width:80px;height:80px;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;position:relative;z-index:2}.number-text{font-size:1.5rem;font-weight:800;color:#fff}.step-content{flex:1;background:#f8fafc;padding:2.5rem;border-radius:20px;box-shadow:0 4px 20px #00000014;border:1px solid rgba(0,0,0,.05);position:relative}.step-content:before{content:"";position:absolute;top:50%;width:0;height:0;border:15px solid transparent}.step:nth-child(odd) .step-content:before{left:-30px;border-right-color:#f8fafc;transform:translateY(-50%)}.step:nth-child(2n) .step-content:before{right:-30px;border-left-color:#f8fafc;transform:translateY(-50%)}.step-icon{width:60px;height:60px;background:#fff;border-radius:15px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;box-shadow:0 4px 15px #0000001a}.icon-emoji{font-size:1.5rem}.step-title{font-size:1.5rem;font-weight:700;color:#2d3748;margin-bottom:1rem}.step-description{color:#718096;line-height:1.6;font-size:1rem}.step-connector{position:absolute;left:50%;top:80px;transform:translate(-50%);z-index:1}.connector-line{width:2px;height:100px;background:linear-gradient(to bottom,#667eea,#764ba2);margin:0 auto}.connector-dot{width:12px;height:12px;background:#667eea;border-radius:50%;margin:-6px auto 0;animation:pulse 2s ease-in-out infinite}@keyframes slideInLeft{to{opacity:1;transform:translate(0)}}@keyframes slideInRight{to{opacity:1;transform:translate(0)}}@keyframes pulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.2);opacity:.7}}@media (max-width: 768px){.how-it-works{padding:4rem 0}.how-it-works-container{padding:0 1rem}.how-it-works-title{font-size:2.2rem}.step{flex-direction:column!important;text-align:center;gap:1.5rem}.step:nth-child(2n){flex-direction:column!important}.step-content:before{display:none}.step-connector{display:none}.step-content{padding:2rem}}.testimonials{padding:6rem 0;background:linear-gradient(135deg,#667eea,#764ba2);position:relative;overflow:hidden}.testimonials:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:.1}.testimonials-container{max-width:1200px;margin:0 auto;padding:0 2rem;position:relative;z-index:2}.testimonials-header{text-align:center;margin-bottom:4rem;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out forwards}.testimonials-title{font-size:3rem;font-weight:800;color:#fff;margin-bottom:1.5rem;line-height:1.2}.testimonials-subtitle{font-size:1.2rem;color:#ffffffe6;max-width:600px;margin:0 auto;line-height:1.6}.testimonials-content{display:flex;flex-direction:column;align-items:center;gap:3rem}.testimonial-card{background:#fffffff2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:30px;padding:3rem;box-shadow:0 20px 60px #0000001a;max-width:800px;width:100%;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out .3s forwards}.testimonial-content{display:flex;align-items:flex-start;gap:2rem}.testimonial-avatar{width:80px;height:80px;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:0 8px 25px #667eea4d}.avatar-emoji{font-size:2rem}.testimonial-text{flex:1}.testimonial-quote{font-size:1.2rem;line-height:1.6;color:#4a5568;margin-bottom:1.5rem;font-style:italic}.testimonial-rating{display:flex;gap:.25rem;margin-bottom:1.5rem}.star{font-size:1.2rem;filter:drop-shadow(0 2px 4px rgba(255,193,7,.3))}.testimonial-author{display:flex;flex-direction:column;gap:.25rem}.author-name{font-size:1.1rem;font-weight:700;color:#2d3748;margin:0}.author-role{font-size:.9rem;color:#718096;margin:0}.testimonial-indicators{display:flex;gap:1rem;opacity:0;transform:translateY(20px);animation:fadeInUp 1s ease-out .6s forwards}.indicator{width:12px;height:12px;border-radius:50%;border:2px solid rgba(255,255,255,.5);background:transparent;cursor:pointer;transition:all .3s ease}.indicator.active{background:#fff;border-color:#fff;transform:scale(1.2)}.indicator:hover{border-color:#fff;transform:scale(1.1)}@media (max-width: 768px){.testimonials{padding:4rem 0}.testimonials-container{padding:0 1rem}.testimonials-title{font-size:2.2rem}.testimonial-card{padding:2rem}.testimonial-content{flex-direction:column;text-align:center;gap:1.5rem}.testimonial-avatar{align-self:center}}.cta{position:relative;padding:6rem 0;background:linear-gradient(135deg,#2d3748,#4a5568);overflow:hidden}.cta-background{position:absolute;inset:0;overflow:hidden}.cta-gradient-orb{position:absolute;border-radius:50%;filter:blur(80px);opacity:.2;animation:ctaFloat 8s ease-in-out infinite}.cta-gradient-orb.orb-1{width:400px;height:400px;background:linear-gradient(45deg,#667eea,#764ba2);top:-200px;left:-200px;animation-delay:0s}.cta-gradient-orb.orb-2{width:300px;height:300px;background:linear-gradient(45deg,#f093fb,#f5576c);top:50%;right:-150px;animation-delay:3s}.cta-gradient-orb.orb-3{width:250px;height:250px;background:linear-gradient(45deg,#4facfe,#00f2fe);bottom:-125px;left:50%;animation-delay:6s}@keyframes ctaFloat{0%,to{transform:translateY(0) rotate(0) scale(1)}50%{transform:translateY(-30px) rotate(180deg) scale(1.1)}}.cta-container{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 2rem}.cta-content{text-align:center;opacity:0;transform:translateY(30px);animation:fadeInUp 1s ease-out forwards}.cta-title{font-size:3.5rem;font-weight:800;color:#fff;margin-bottom:1.5rem;line-height:1.2}.cta-subtitle{font-size:1.3rem;color:#ffffffe6;max-width:700px;margin:0 auto 3rem;line-height:1.6}.cta-actions{display:flex;gap:1.5rem;justify-content:center;margin-bottom:3rem;flex-wrap:wrap}.cta-button.secondary{background:#ffffff1a;color:#fff;border:2px solid rgba(255,255,255,.3);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px)}.cta-button.secondary:hover{background:#fff3;border-color:#ffffff80;transform:translateY(-3px)}.cta-features{display:flex;gap:3rem;justify-content:center;flex-wrap:wrap;opacity:0;transform:translateY(20px);animation:fadeInUp 1s ease-out .5s forwards}.cta-feature{display:flex;align-items:center;gap:.75rem;color:#ffffffe6;font-weight:500}.feature-icon{font-size:1.5rem;filter:drop-shadow(0 2px 4px rgba(0,0,0,.2))}.feature-text{font-size:1rem}@media (max-width: 768px){.cta{padding:4rem 0}.cta-container{padding:0 1rem}.cta-title{font-size:2.5rem}.cta-subtitle{font-size:1.1rem}.cta-actions{flex-direction:column;align-items:center}.cta-button{width:100%;max-width:300px}.cta-features{gap:2rem}}.home>*:first-child{margin-top:0}.about{padding-top:70px}.about-hero{background:linear-gradient(135deg,#667eea,#764ba2);padding:6rem 0;text-align:center;color:#fff;position:relative;overflow:hidden}.about-hero:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:.1}.about-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:0 2rem}.about-title{font-size:4rem;font-weight:800;margin-bottom:1.5rem;line-height:1.1}.about-subtitle{font-size:1.3rem;opacity:.9;line-height:1.6}.about-container{max-width:1200px;margin:0 auto;padding:0 2rem}.about-section{padding:6rem 0;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;opacity:0;transform:translateY(30px);transition:all .6s ease}.about-section.animate{animation:fadeInUp .6s ease-out forwards}.about-section:nth-child(2n){grid-template-columns:1fr 1fr}.about-section:nth-child(2n) .about-content{order:2}.about-section:nth-child(2n) .about-visual{order:1}.section-title{font-size:2.5rem;font-weight:800;color:#2d3748;margin-bottom:2rem;line-height:1.2}.section-text{font-size:1.1rem;color:#4a5568;line-height:1.7;margin-bottom:1.5rem}.about-visual{display:flex;justify-content:center;align-items:center}.story-card{background:#fff;border-radius:20px;padding:3rem;box-shadow:0 10px 40px #0000001a;text-align:center;max-width:400px;width:100%}.card-content{display:flex;flex-direction:column;align-items:center;gap:1.5rem}.card-icon{font-size:4rem;margin-bottom:1rem}.card-content h3{font-size:1.5rem;font-weight:700;color:#2d3748;margin:0}.card-content p{color:#718096;margin:0}.mission-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;width:100%}.stat-item{text-align:center;padding:2rem;background:#fff;border-radius:15px;box-shadow:0 4px 20px #00000014}.stat-number{font-size:2.5rem;font-weight:800;color:#667eea;margin-bottom:.5rem}.stat-label{color:#718096;font-weight:500}.mission-values{display:flex;flex-direction:column;gap:1.5rem;margin-top:2rem}.value-item{display:flex;align-items:flex-start;gap:1rem}.value-icon{font-size:2rem;flex-shrink:0}.value-content h4{font-size:1.2rem;font-weight:700;color:#2d3748;margin:0 0 .5rem}.value-content p{color:#718096;margin:0;line-height:1.5}.team-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem;margin-top:3rem}.team-member{background:#fff;border-radius:20px;padding:2.5rem;text-align:center;box-shadow:0 4px 20px #00000014;transition:transform .3s ease}.team-member:hover{transform:translateY(-5px)}.member-avatar{font-size:4rem;margin-bottom:1.5rem}.member-name{font-size:1.3rem;font-weight:700;color:#2d3748;margin:0 0 .5rem}.member-role{color:#667eea;font-weight:600;margin:0 0 1rem}.member-bio{color:#718096;line-height:1.5;margin:0}@media (max-width: 768px){.about-hero{padding:4rem 0}.about-title{font-size:2.5rem}.about-subtitle{font-size:1.1rem}.about-container{padding:0 1rem}.about-section{grid-template-columns:1fr;gap:2rem;padding:4rem 0}.about-section:nth-child(2n) .about-content,.about-section:nth-child(2n) .about-visual{order:unset}.section-title{font-size:2rem}.mission-stats{grid-template-columns:1fr;gap:1rem}.team-grid{grid-template-columns:1fr}}.features-page{padding-top:70px}.features-hero{background:linear-gradient(135deg,#667eea,#764ba2);padding:6rem 0;text-align:center;color:#fff;position:relative;overflow:hidden}.features-hero:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:.1}.features-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:0 2rem}.features-title{font-size:4rem;font-weight:800;margin-bottom:1.5rem;line-height:1.1}.features-subtitle{font-size:1.3rem;opacity:.9;line-height:1.6}.features-container{max-width:1200px;margin:0 auto;padding:0 2rem}.feature-section{padding:6rem 0;opacity:0;transform:translateY(30px);transition:all .6s ease}.feature-section.animate{animation:fadeInUp .6s ease-out forwards}.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem}.feature-card{background:#fff;border-radius:20px;padding:2.5rem;box-shadow:0 4px 20px #00000014;border:1px solid rgba(0,0,0,.05);transition:all .3s ease}.feature-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px #0000001f}.feature-icon{width:80px;height:80px;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:20px;display:flex;align-items:center;justify-content:center;margin-bottom:1.5rem;position:relative;overflow:hidden}.feature-icon:before{content:"";position:absolute;inset:0;background:linear-gradient(45deg,rgba(255,255,255,.1),transparent);border-radius:20px}.feature-content{flex:1}.feature-title{font-size:1.5rem;font-weight:700;color:#2d3748;margin-bottom:1rem}.feature-description{color:#718096;line-height:1.6;margin-bottom:1.5rem}.feature-list{list-style:none;padding:0;margin:0}.feature-item{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem;color:#4a5568;font-size:.95rem}.check-icon{width:20px;height:20px;background:#48bb78;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:700;flex-shrink:0}.chat-features{background:#f8fafc}.chat-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:2rem}.chat-feature-card{background:#fff;border-radius:15px;padding:2rem;text-align:center;box-shadow:0 4px 15px #00000014;transition:all .3s ease}.chat-feature-card:hover{transform:translateY(-3px);box-shadow:0 6px 25px #0000001f}.chat-feature-icon{width:60px;height:60px;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:15px;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem}.chat-feature-title{font-size:1.3rem;font-weight:700;color:#2d3748;margin-bottom:1rem}.chat-feature-description{color:#718096;line-height:1.5}.template-categories{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:2rem}.template-category{background:#fff;border-radius:15px;padding:2rem;text-align:center;box-shadow:0 4px 15px #00000014;transition:all .3s ease;border:1px solid rgba(0,0,0,.05)}.template-category:hover{transform:translateY(-5px);box-shadow:0 8px 25px #0000001f}.category-icon{font-size:3rem;margin-bottom:1rem}.template-category h3{font-size:1.2rem;font-weight:700;color:#2d3748;margin:0 0 .75rem}.template-category p{color:#718096;font-size:.9rem;line-height:1.5;margin:0}.cta{background:linear-gradient(135deg,#2d3748,#4a5568);color:#fff;text-align:center;border-radius:20px;margin:2rem 0}.cta-content{padding:4rem 2rem}.cta-title{font-size:2.5rem;font-weight:800;margin-bottom:1.5rem;line-height:1.2}.cta-subtitle{font-size:1.2rem;opacity:.9;margin-bottom:2.5rem;line-height:1.6}.cta-buttons{display:flex;justify-content:center;gap:1rem}.cta-button{display:flex;align-items:center;gap:.75rem;padding:1.25rem 2.5rem;border-radius:50px;font-weight:700;font-size:1.1rem;cursor:pointer;transition:all .3s ease;border:none;min-width:200px;justify-content:center}.cta-button.primary{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;box-shadow:0 8px 30px #667eea4d}.cta-button.primary:hover{transform:translateY(-3px);box-shadow:0 12px 40px #667eea66}.button-icon{width:24px;height:24px}@media (max-width: 768px){.features-hero{padding:4rem 0}.features-title{font-size:2.5rem}.features-subtitle{font-size:1.1rem}.features-container{padding:0 1rem}.feature-section{padding:4rem 0}.section-title{font-size:2rem}.features-grid,.chat-grid{grid-template-columns:1fr}.template-categories{grid-template-columns:repeat(2,1fr)}.cta-content{padding:3rem 1rem}.cta-title{font-size:2rem}.cta-buttons{flex-direction:column;align-items:center}.cta-button{width:100%;max-width:300px}}@media (max-width: 480px){.template-categories{grid-template-columns:1fr}}.contact{padding-top:70px}.contact-hero{background:linear-gradient(135deg,#667eea,#764ba2);padding:6rem 0;text-align:center;color:#fff;position:relative;overflow:hidden}.contact-hero:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:.1}.contact-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:0 2rem}.contact-title{font-size:4rem;font-weight:800;margin-bottom:1.5rem;line-height:1.1}.contact-subtitle{font-size:1.3rem;opacity:.9;line-height:1.6}.contact-container{max-width:1200px;margin:0 auto;padding:0 2rem}.contact-section{padding:6rem 0;opacity:0;transform:translateY(30px);transition:all .6s ease}.contact-section.animate{animation:fadeInUp .6s ease-out forwards}.section-header{text-align:center;margin-bottom:4rem}.section-title{font-size:2.5rem;font-weight:800;color:#2d3748;margin-bottom:1.5rem;line-height:1.2}.section-subtitle{font-size:1.2rem;color:#718096;max-width:600px;margin:0 auto;line-height:1.6}.methods-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem}.method-card{background:#fff;border-radius:20px;padding:2.5rem;text-align:center;box-shadow:0 4px 20px #00000014;border:1px solid rgba(0,0,0,.05);transition:all .3s ease}.method-card:hover{transform:translateY(-5px);box-shadow:0 8px 30px #0000001f}.method-icon{width:80px;height:80px;background:linear-gradient(135deg,#667eea,#764ba2);border-radius:20px;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;position:relative;overflow:hidden}.method-icon:before{content:"";position:absolute;inset:0;background:linear-gradient(45deg,rgba(255,255,255,.1),transparent);border-radius:20px}.icon-emoji{font-size:2rem;z-index:1;position:relative}.method-title{font-size:1.5rem;font-weight:700;color:#2d3748;margin-bottom:1rem}.method-description{color:#718096;line-height:1.6;margin-bottom:1.5rem}.method-contact{color:#667eea;font-weight:600;font-size:1.1rem}.contact-form-section{background:#f8fafc;border-radius:20px;margin:2rem 0}.form-container{max-width:800px;margin:0 auto;padding:4rem 2rem}.form-header{text-align:center;margin-bottom:3rem}.form-title{font-size:2.2rem;font-weight:800;color:#2d3748;margin-bottom:1rem}.form-subtitle{font-size:1.1rem;color:#718096;line-height:1.6}.contact-form{background:#fff;border-radius:20px;padding:3rem;box-shadow:0 4px 20px #00000014}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;margin-bottom:1.5rem}.form-group{margin-bottom:1.5rem}.form-label{display:block;font-weight:600;color:#2d3748;margin-bottom:.5rem;font-size:.95rem}.form-input,.form-textarea{width:100%;padding:1rem;border:2px solid #e2e8f0;border-radius:10px;font-size:1rem;transition:all .3s ease;background:#fff}.form-input:focus,.form-textarea:focus{outline:none;border-color:#667eea;box-shadow:0 0 0 3px #667eea1a}.form-textarea{resize:vertical;min-height:120px}.form-submit{width:100%;background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;border:none;padding:1.25rem 2rem;border-radius:10px;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all .3s ease;display:flex;align-items:center;justify-content:center;gap:.75rem}.form-submit:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 8px 25px #667eea4d}.form-submit:disabled{opacity:.7;cursor:not-allowed}.spinner{width:20px;height:20px;border:2px solid rgba(255,255,255,.3);border-top:2px solid white;border-radius:50%;animation:spin 1s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.form-success,.form-error{margin-top:1rem;padding:1rem;border-radius:10px;display:flex;align-items:center;gap:.75rem;font-weight:500}.form-success{background:#f0fff4;color:#22543d;border:1px solid #9ae6b4}.form-error{background:#fed7d7;color:#742a2a;border:1px solid #feb2b2}.success-icon,.error-icon{width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem}.success-icon{background:#48bb78;color:#fff}.error-icon{background:#f56565;color:#fff}.faq{background:#fff;border-radius:20px;margin:2rem 0}.faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(350px,1fr));gap:2rem}.faq-item{background:#f8fafc;border-radius:15px;padding:2rem;border:1px solid rgba(0,0,0,.05)}.faq-question{font-size:1.2rem;font-weight:700;color:#2d3748;margin-bottom:1rem;line-height:1.4}.faq-answer{color:#4a5568;line-height:1.6;margin:0}@media (max-width: 768px){.contact-hero{padding:4rem 0}.contact-title{font-size:2.5rem}.contact-subtitle{font-size:1.1rem}.contact-container{padding:0 1rem}.contact-section{padding:4rem 0}.section-title{font-size:2rem}.methods-grid{grid-template-columns:1fr}.form-container{padding:2rem 1rem}.contact-form{padding:2rem}.form-row{grid-template-columns:1fr;gap:0}.faq-grid{grid-template-columns:1fr}}.legal-page{padding-top:70px;min-height:100vh;background:#f8fafc}.legal-hero{background:linear-gradient(135deg,#667eea,#764ba2);padding:4rem 0;text-align:center;color:#fff;position:relative;overflow:hidden}.legal-hero:before{content:"";position:absolute;inset:0;background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');opacity:.1}.legal-hero-content{position:relative;z-index:2;max-width:800px;margin:0 auto;padding:0 2rem}.legal-title{font-size:3rem;font-weight:800;margin-bottom:1.5rem;line-height:1.1}.legal-subtitle{font-size:1.2rem;opacity:.9;line-height:1.6;margin-bottom:2rem}.legal-meta{display:flex;justify-content:center;align-items:center;gap:1rem;flex-wrap:wrap}.last-updated{background:#fff3;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);padding:.5rem 1rem;border-radius:50px;font-size:.9rem;font-weight:500;border:1px solid rgba(255,255,255,.3)}.legal-container{max-width:900px;margin:0 auto;padding:4rem 2rem}.legal-content{background:#fff;border-radius:20px;padding:4rem;box-shadow:0 4px 20px #00000014;border:1px solid rgba(0,0,0,.05)}.legal-section{margin-bottom:3rem;opacity:0;transform:translateY(30px);transition:all .6s ease}.legal-section.animate{animation:fadeInUp .6s ease-out forwards}.legal-section:last-child{margin-bottom:0}.section-title{font-size:1.8rem;font-weight:700;color:#2d3748;margin-bottom:1.5rem;line-height:1.3;border-bottom:2px solid #e2e8f0;padding-bottom:.5rem}.section-content{line-height:1.7}.section-content h3{font-size:1.3rem;font-weight:600;color:#4a5568;margin:2rem 0 1rem;line-height:1.4}.section-content h3:first-child{margin-top:0}.section-content p{color:#4a5568;margin-bottom:1.5rem;font-size:1rem}.section-content ul{margin:1rem 0 1.5rem;padding-left:1.5rem}.section-content li{color:#4a5568;margin-bottom:.75rem;line-height:1.6}.section-content li strong{color:#2d3748;font-weight:600}.contact-info{background:#f8fafc;border-radius:10px;padding:1.5rem;margin:1.5rem 0;border-left:4px solid #667eea}.contact-info p{margin:.5rem 0;font-size:.95rem}.contact-info strong{color:#2d3748;font-weight:600}.section-content>ul>li{position:relative;padding-left:.5rem}.section-content>ul>li:before{content:"•";color:#667eea;font-weight:700;position:absolute;left:-1rem}.section-content p:has(strong){background:#f0f4ff;padding:1rem;border-radius:8px;border-left:4px solid #667eea;margin:1.5rem 0}.section-content code{background:#f1f5f9;padding:.25rem .5rem;border-radius:4px;font-family:Monaco,Menlo,Ubuntu Mono,monospace;font-size:.9rem;color:#e53e3e}.section-content a{color:#667eea;text-decoration:underline;font-weight:500}.section-content a:hover{color:#5a67d8}@keyframes fadeInUp{to{opacity:1;transform:translateY(0)}}@media (max-width: 768px){.legal-hero{padding:3rem 0}.legal-title{font-size:2.2rem}.legal-subtitle{font-size:1.1rem}.legal-container{padding:2rem 1rem}.legal-content{padding:2rem}.section-title{font-size:1.5rem}.section-content h3{font-size:1.2rem}.legal-meta{flex-direction:column;gap:.5rem}}@media (max-width: 480px){.legal-content{padding:1.5rem}.section-content ul{padding-left:1rem}.contact-info{padding:1rem}}.footer{background:#1a202c;color:#e2e8f0;padding:4rem 0 2rem}.footer-container{max-width:1200px;margin:0 auto;padding:0 2rem}.footer-content{display:grid;grid-template-columns:1fr 2fr;gap:4rem;margin-bottom:3rem}.footer-brand{max-width:400px}.footer-logo{display:flex;flex-direction:column;align-items:flex-start;text-decoration:none;color:#e2e8f0;margin-bottom:1.5rem;transition:transform .3s ease}.footer-logo:hover{transform:scale(1.05)}.logo-text{font-size:1.8rem;font-weight:800;line-height:1;background:linear-gradient(135deg,#667eea,#764ba2);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.logo-subtitle{font-size:.9rem;color:#a0aec0;font-weight:400;margin-top:-2px}.footer-description{color:#a0aec0;line-height:1.6;margin-bottom:2rem}.footer-social{display:flex;gap:1rem}.social-link{width:40px;height:40px;background:#2d3748;border-radius:10px;display:flex;align-items:center;justify-content:center;color:#a0aec0;text-decoration:none;transition:all .3s ease}.social-link:hover{background:linear-gradient(135deg,#667eea,#764ba2);color:#fff;transform:translateY(-2px)}.social-link svg{width:20px;height:20px}.footer-links{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.footer-column{display:flex;flex-direction:column}.footer-title{font-size:1.1rem;font-weight:700;color:#e2e8f0;margin-bottom:1.5rem}.footer-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.75rem}.footer-link{color:#a0aec0;text-decoration:none;transition:color .3s ease;font-size:.95rem}.footer-link:hover{color:#667eea}.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding-top:2rem;border-top:1px solid #2d3748;flex-wrap:wrap;gap:1rem}.footer-copyright{color:#a0aec0;font-size:.9rem}.footer-bottom-links{display:flex;gap:2rem}.footer-bottom-link{color:#a0aec0;text-decoration:none;font-size:.9rem;transition:color .3s ease}.footer-bottom-link:hover{color:#667eea}@media (max-width: 768px){.footer{padding:3rem 0 2rem}.footer-container{padding:0 1rem}.footer-content{grid-template-columns:1fr;gap:3rem}.footer-links{grid-template-columns:repeat(2,1fr);gap:2rem}.footer-bottom{flex-direction:column;text-align:center;gap:1.5rem}.footer-bottom-links{justify-content:center}}@media (max-width: 480px){.footer-links{grid-template-columns:1fr}}*{margin:0;padding:0;box-sizing:border-box}html{scroll-behavior:smooth}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;line-height:1.6;color:#2d3748}.app{min-height:100vh;display:flex;flex-direction:column}main{flex:1}button{font-family:inherit;cursor:pointer;border:none;outline:none;transition:all .3s ease}a{color:inherit;text-decoration:none;transition:all .3s ease}.container{max-width:1200px;margin:0 auto;padding:0 2rem}.text-center{text-align:center}.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}@media (max-width: 768px){.container{padding:0 1rem}}
