* {margin:0;padding:0;box-sizing:border-box;}
body {font-family:'Inter',sans-serif;line-height:1.5;color:#111;background:#fff;}
button {cursor:pointer;border:none;}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1100px;
  z-index: 50;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
header.scrolled {box-shadow: 0 10px 25px rgba(0,0,0,0.22);background: rgba(255,255,255,0.95);transform: translateX(-50%) translateY(-2px);}
.header-container {display:flex;align-items:center;justify-content:space-between;width:100%;padding:0 1.5rem;}
.logo {display:flex;align-items:center;gap:0.5rem;font-weight:700;font-size:1.3rem;cursor:pointer;color:#111;position:relative;font-family:'Poppins',sans-serif;transition:transform 0.3s ease;}
.logo-icon {width:38px;height:38px;transition:transform 0.3s ease;}
.logo:hover {transform:translateY(-2px);text-shadow:0 2px 6px rgba(79,70,229,0.2);}
.logo-text {transition:all 0.3s ease;position:relative;}
.logo-text::after {content:'';position:absolute;left:50%;bottom:-3px;transform:translateX(-50%);width:0;height:2px;background:#4f46e5;transition:width 0.3s ease;}
.logo.active .logo-text::after {width:100%;}
.nav-links button {
  margin-left:1.5rem;background:none;font-weight:600;font-size:1rem;color:rgba(0,0,0,0.75);
  padding:0.5rem 0.75rem;border-radius:0.5rem;transition:all 0.3s ease;position:relative;overflow:hidden;
}
.nav-links button::after {content:'';position:absolute;left:50%;bottom:0;transform:translateX(-50%);width:0;height:2px;background:#4f46e5;transition:width 0.3s ease;}
.nav-links button:hover::after {width:100%;}
.nav-links button:hover {color:#4f46e5;transform:translateY(-2px);text-shadow:0 2px 6px rgba(79,70,229,0.2);}
header .cta {
  background:linear-gradient(90deg,#4f46e5,#3b82f6);color:white;padding:0.6rem 1.8rem;border-radius:0.6rem;
  font-weight:600;font-size:1rem;transition:all 0.3s ease;box-shadow:0 4px 12px rgba(79,70,229,0.3);position:relative;
}
header .cta:hover {transform:translateY(-2px) scale(1.04);box-shadow:0 8px 20px rgba(79,70,229,0.45);}
.hamburger {display:none;flex-direction:column;justify-content:space-between;align-items:center;width:28px;height:20px;background:none;padding:0;cursor:pointer;z-index:999;}
.hamburger span {width:100%;height:3px;background:#111;border-radius:2px;transition:all 0.3s ease;}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.hamburger.open span:nth-child(2){opacity:0;}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
@media (max-width:768px){.nav-links,.cta{display:none;}.hamburger{display:flex!important;}}

/* MOBILE MENU */
.mobile-menu {
  display:none;position:absolute;top:90px;right:1rem;background:white;border-radius:1rem;padding:1.2rem;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);flex-direction:column;gap:1rem;animation:fadeIn 0.25s ease;
}
.mobile-menu button {
  background:none;border:none;font-size:1rem;font-weight:600;color:#333;padding:0.5rem 0.75rem;
  text-align:left;border-radius:0.5rem;transition:all 0.2s ease;
}
.mobile-menu button:hover {background:rgba(79,70,229,0.05);color:#4f46e5;}
.mobile-cta {
  background:linear-gradient(90deg,#4f46e5,#3b82f6);color:white;border-radius:0.75rem;padding:0.75rem 1rem;
  font-weight:600;text-align:center;
}
.mobile-menu.open {display:flex;flex-direction:column;gap:1rem;}
@keyframes fadeIn {from{opacity:0;transform:translateY(-10px);}to{opacity:1;transform:translateY(0);}}

/* HERO */
#hero {position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;padding-top:120px;}
.gradient-blob {position:absolute;border-radius:50%;filter:blur(120px);animation:blob 20s infinite;}
.blob1{width:400px;height:400px;background:rgba(79,70,229,0.3);top:25%;left:25%;}
.blob2{width:320px;height:320px;background:rgba(236,72,153,0.2);bottom:25%;right:25%;animation-delay:5s;}
.blob3{width:256px;height:256px;background:rgba(79,70,229,0.2);top:50%;right:33%;animation-delay:10s;}
@keyframes blob{0%,100%{transform:translate(0,0);}33%{transform:translate(30px,-20px);}66%{transform:translate(-20px,30px);}}
.hero-content{text-align:center;z-index:10;max-width:800px;}
.hero-badge{display:inline-block;background:#f3f4f6;color:#4f46e5;padding:0.25rem 0.75rem;border-radius:9999px;margin-bottom:1rem;}
.hero-content h1{font-family:'Poppins',sans-serif;font-weight:700;font-size:3.2rem;margin-bottom:1rem;}
.gradient-text{background:linear-gradient(90deg,#4f46e5,#3b82f6);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.hero-content p{font-family:'Montserrat',sans-serif;font-size:1.25rem;color:#4b5563;margin-bottom:2rem;}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;}
.hero-buttons .primary,.hero-buttons .outline{
  font-family:'Poppins',sans-serif;font-weight:600;font-size:1.1rem;padding:1rem 2rem;border-radius:0.75rem;transition:all 0.3s ease;
}
.hero-buttons .primary{background:linear-gradient(90deg,#4f46e5,#3b82f6);color:#fff;}
.hero-buttons .primary:hover{transform:translateY(-3px) scale(1.05);box-shadow:0 8px 20px rgba(79,70,229,0.4);}
.hero-buttons .outline{border:2px solid #4f46e5;background:none;color:#4f46e5;}
.hero-buttons .outline:hover{transform:translateY(-3px) scale(1.05);background:#4f46e5;color:#fff;box-shadow:0 8px 20px rgba(79,70,229,0.2);}
.hero-features{display:flex;gap:2rem;justify-content:center;margin-top:2rem;flex-wrap:wrap;}
.hero-features span{font-family:'Montserrat',sans-serif;font-weight:500;font-size:1rem;color:#6b7280;}

/* BENEFITS */
#benefits{position:relative;background:#fff;padding:6rem 1rem;text-align:center;overflow:hidden;}
#benefits h2{font-family:'Poppins',sans-serif;font-size:2.5rem;margin-bottom:0.5rem;font-weight:700;color:#111827;}
#benefits p{font-family:'Montserrat',sans-serif;font-size:1.1rem;color:#6b7280;margin-bottom:3rem;}
.benefits-blur{position:absolute;border-radius:50%;filter:blur(120px);opacity:0.4;z-index:0;}
.blob4{width:400px;height:400px;background:rgba(79,70,229,0.8);top:20%;left:-10%;}
.blob5{width:350px;height:350px;background:rgba(236,72,153,0.85);bottom:20%;right:-10%;}
.benefits-grid{position:relative;z-index:10;display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;max-width:1100px;margin:0 auto;}
.benefit{background:rgba(255,255,255,0.8);border:1px solid #e5e7eb;border-radius:1rem;padding:2rem;text-align:left;transition:all 0.3s ease;box-shadow:0 5px 20px rgba(0,0,0,0.05);backdrop-filter:blur(10px);}
.benefit:hover{transform:translateY(-5px);border-color:#4f46e5;box-shadow:0 10px 30px rgba(79,70,229,0.15);}
.benefit .icon{width:50px;height:50px;background:linear-gradient(135deg,#4f46e5,#3b82f6);display:flex;align-items:center;justify-content:center;border-radius:0.75rem;margin-bottom:1rem;}
.benefit .icon svg{width:32px;height:32px;color:#fff;}
.benefit h3{font-family:'Poppins',sans-serif;font-size:1.25rem;margin-bottom:0.5rem;font-weight:600;}
.benefit p{font-family:'Montserrat',sans-serif;font-size:1rem;color:#4b5563;}

/* TRY BOT */
#try-bot{padding:6rem 1rem;text-align:center;background:#fff;position:relative;}
.trybot-container{max-width:1100px;margin:0 auto;position:relative;z-index:1;}
#try-bot h2{font-family:'Poppins',sans-serif;font-weight:700;font-size:2.3rem;margin-bottom:0.75rem;color:#111;}
#try-bot p{color:#4b5563;font-family:'Montserrat',sans-serif;font-size:1.1rem;max-width:700px;margin:0 auto 3rem;line-height:1.6;}
.monitor-stand{width:140px;height:16px;background:#111;margin:0.5rem auto 0;border-radius:8px 8px 4px 4px;position:relative;}
.monitor-stand::after{content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:220px;height:10px;background:#222;border-radius:5px;opacity:0.9;}
#try-bot::before{content:'';position:absolute;width:400px;height:400px;background:rgba(79,70,229,0.25);filter:blur(180px);border-radius:50%;top:20%;left:-10%;z-index:0;}
#try-bot::after{content:'';position:absolute;width:300px;height:300px;background:rgba(236,72,153,0.45);filter:blur(160px);border-radius:50%;bottom:35%;right:5%;z-index:0;}

/* HOW IT WORKS */
#how-it-works{position:relative;overflow:hidden;padding:6rem 1rem;text-align:center;background:#fff;}
#how-it-works .gradient-blob{position:absolute;border-radius:50%;filter:blur(120px);animation:blob 20s infinite;z-index:0;opacity:0.4;}
#how-it-works .blob1{width:280px;height:280px;background:rgba(79,70,229,0.3);top:18%;left:15%;}
#how-it-works .blob2{width:320px;height:320px;background:rgba(236,72,153,0.2);bottom:10%;right:20%;animation-delay:6s;}
#how-it-works .blob3{width:280px;height:280px;background:rgba(59,130,246,0.25);top:50%;right:35%;animation-delay:10s;}
.how-container{position:relative;z-index:1;max-width:1100px;margin:0 auto;}
#how-it-works h2{font-family:'Poppins',sans-serif;font-weight:700;font-size:2.3rem;margin-bottom:0.5rem;}
#how-it-works p{color:#4b5563;font-family:'Montserrat',sans-serif;margin-bottom:4rem;font-size:1.1rem;}
.steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:3rem;justify-items:center;}
.step{text-align:center;max-width:300px;background:rgba(255,255,255,0.6);backdrop-filter:blur(8px);border-radius:1.5rem;padding:2rem 1.5rem;box-shadow:0 8px 30px rgba(0,0,0,0.05);transition:all 0.3s ease;}
.step:hover{transform:translateY(-5px);box-shadow:0 12px 35px rgba(79,70,229,0.15);}
.step-icon{display:flex;align-items:center;justify-content:center;width:80px;height:80px;border-radius:1rem;color:#fff;font-weight:700;font-size:1.4rem;margin:0 auto 1rem;box-shadow:0 0 25px rgba(0,0,0,0.08);transition:all 0.3s ease;}
.step-icon.blue{background:linear-gradient(135deg,#3b82f6,#a0c3ee);}
.step-icon.purple{background:linear-gradient(135deg,#4f46e5,#9495cc);}
.step-icon.pink{background:linear-gradient(135deg,#f32d90,#e29fce);}
.step h3{font-family:'Poppins',sans-serif;font-weight:600;font-size:1.15rem;margin-bottom:0.5rem;}
.step p{color:#6b7280;font-size:0.95rem;line-height:1.6;}

/* INTEGRATIONS */
#integrations{position:relative;padding:6rem 1rem;overflow:hidden;text-align:center;background:#f9fafb;}
#integrations .gradient-blob{position:absolute;border-radius:50%;filter:blur(140px);opacity:0.35;z-index:0;animation:blob 18s infinite;}
#integrations .blob1{width:400px;height:400px;background:rgba(79,70,229,0.3);top:30%;left:10%;}
#integrations .blob2{width:350px;height:350px;background:rgba(236,72,153,0.25);bottom:-10%;right:5%;animation-delay:5s;}
.integrations-container{position:relative;z-index:2;max-width:100%;margin:0 auto;}
#integrations h2{font-family:'Poppins',sans-serif;font-weight:700;font-size:2.3rem;margin-bottom:0.5rem;color:#111827;}
#integrations p{font-family:'Montserrat',sans-serif;color:#4b5563;font-size:1.1rem;margin-bottom:2.5rem;}
.integrations-slider{display:flex;align-items:center;gap:2rem;overflow:hidden;cursor:grab;user-select:none;padding:3rem 0;width:100%;}
.integration-item{min-width:320px;flex-shrink:0;background:rgba(255,255,255,0.9);border:1px solid rgba(229,231,235,0.6);border-radius:1.5rem;padding:2rem 1rem;text-align:center;box-shadow:0 6px 20px rgba(0,0,0,0.05);backdrop-filter:blur(12px);transition:transform 0.2s ease;}
.integration-item:hover{transform:translateY(-4px);}
.integration-item img{-webkit-user-drag: none;user-select: none;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;
  height:60px;width:auto;object-fit:contain;transition:transform 0.3s ease,opacity 0.3s ease;}
.integrations-slider.active{cursor:grabbing;}
.show-more{margin-top:2.5rem;background:linear-gradient(90deg,#4f46e5,#3b82f6);color:white;padding:1rem 2rem;border-radius:0.75rem;font-weight:600;font-size:1.05rem;cursor:pointer;transition:all 0.3s ease;}
.show-more:hover{transform:translateY(-3px);box-shadow:0 8px 20px rgba(79,70,229,0.4);}

/* CONTACT */
#contact{background:linear-gradient(135deg,#1e1b4b 0%,#312e81 60%,#4338ca 100%);color:white;padding:6rem 1rem 5rem;position:relative;text-align:left;overflow:hidden;z-index:1;}
#contact::before{content:"";position:absolute;width:600px;height:600px;background:radial-gradient(circle,rgba(79,70,229,0.5),transparent 70%);top:-120px;left:-120px;filter:blur(120px);z-index:0;}
.contact-container{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:start;position:relative;z-index:2;}
.contact-left h2{font-family:'Poppins',sans-serif;font-size:2.4rem;font-weight:700;margin-bottom:1rem;}
.contact-left p{color:#c7d2fe;font-family:'Montserrat',sans-serif;margin-bottom:2rem;line-height:1.6;}
.contact-form{display:flex;flex-direction:column;gap:1rem;}
.contact-form input,.contact-form textarea{
  font-family:'Montserrat',sans-serif;font-size:1rem;padding:0.9rem 1.1rem;background:rgba(255,255,255,0.1);
  color:white;border:1px solid rgba(255,255,255,0.2);border-radius:0.75rem;transition:all 0.3s ease;resize:none;
}
.contact-form input::placeholder,.contact-form textarea::placeholder{color:rgba(255,255,255,0.6);}
.contact-form input:focus,.contact-form textarea:focus{border-color:#818cf8;box-shadow:0 0 0 3px rgba(99,102,241,0.2);outline:none;}
.contact-form button{
  align-self:flex-start;background:linear-gradient(90deg,#6366f1,#3b82f6);color:white;padding:0.9rem 2rem;border-radius:0.75rem;
  font-weight:600;font-size:1rem;transition:all 0.3s ease;box-shadow:0 4px 15px rgba(79,70,229,0.4);
}
.contact-form button:hover{transform:translateY(-2px);box-shadow:0 8px 20px rgba(79,70,229,0.6);}
.contact-right{background:rgba(255,255,255,0.08);padding:2rem;border-radius:1rem;box-shadow:0 4px 25px rgba(0,0,0,0.25);}
.contact-right h3{font-family:'Poppins',sans-serif;margin-bottom:1rem;font-size:1.4rem;color:#fff;}
.contact-right p{color:#d1d5db;margin-bottom:0.75rem;font-family:'Montserrat',sans-serif;}
.social-links{margin-top:1rem;display:flex;gap:1rem;}
.social-links a{
  display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;background:rgba(255,255,255,0.1);
  border-radius:0.75rem;transition:all 0.3s ease;color:#c7d2fe;
}
.social-links a:hover{background:#4f46e5;color:white;transform:translateY(-2px);}
@media(max-width:768px){.contact-container{grid-template-columns:1fr;gap:2rem;}.contact-form button{width:100%;}}

/* FOOTER */
footer{
  background:linear-gradient(180deg,#312e81 0%,#1e1b4b 70%,#111827 100%);
  color:#e0e7ff;padding:3rem 1rem 2rem;text-align:center;position:relative;z-index:2;
  box-shadow:0 -10px 40px rgba(0,0,0,0.25) inset;
}
footer::before{
  content:"";position:absolute;top:-80px;left:0;width:100%;height:80px;
  background:linear-gradient(180deg,transparent,#312e81 60%,#1e1b4b);z-index:1;pointer-events:none;
}
.footer-container{max-width:1100px;margin:0 auto 2rem;display:flex;flex-direction:column;align-items:center;gap:1.5rem;position:relative;z-index:2;}
.footer-logo{display:flex;align-items:center;gap:0.5rem;font-family:'Poppins',sans-serif;font-weight:600;font-size:1.3rem;color:#fff;}
.footer-logo .footer-icon{width:34px;height:34px;}
.footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;}
.footer-links a{color:#c7d2fe;text-decoration:none;font-family:'Montserrat',sans-serif;font-size:0.95rem;transition:color 0.3s ease,transform 0.3s ease;}
.footer-links a:hover{color:#fff;transform:translateY(-2px);}
.footer-socials{display:flex;gap:1rem;margin-top:0.5rem;}
.footer-socials a{
  display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:0.75rem;
  background:rgba(255,255,255,0.08);color:#c7d2fe;transition:all 0.3s ease;
}
.footer-socials a:hover{background:#4f46e5;color:white;transform:translateY(-2px);}
.footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:1rem;}
.footer-bottom p{font-family:'Montserrat',sans-serif;font-size:0.85rem;color:#a5b4fc;}
@media(max-width:768px){.footer-links{gap:1rem;}.footer-socials{margin-top:0.75rem;}}
html{scroll-behavior:smooth;}
