
/* Reset & base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{font-size:16px}
:root{
  --ink:#0b1324;
  --ink-2:#1c2436;
  --muted:#5f6b7c;
  --bg:#ffffff;
  --brand:#2d6cdf;
  --brand-2:#1669f2;
  --panel:#f3f6fb;
  --panel-alt:#2d6cdf;
  --card:#f6f7f9;
  --radius:16px;
  --container:1100px;
}
  body{
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
  }
a{color:inherit}
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}
.header{
  padding:18px 0 0;
  border-top:1px solid #e8edf6;
}
.brand{display:flex;align-items:center;gap:12px;width:110px;margin:0 auto}
.brand img{height:34px;width:auto;display:block}
.brand span{font-weight:700;letter-spacing:.2px;color:#0c1b4d}

/* Logo Separator */
.logo-separator{
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(95, 107, 124, 0.3) 15%, 
    rgba(95, 107, 124, 0.7) 50%, 
    rgba(95, 107, 124, 0.3) 85%, 
    transparent 100%
  );
  box-shadow: 
    0 2px 8px rgba(95, 107, 124, 0.2),
    0 1px 3px rgba(95, 107, 124, 0.1);
  margin: 20px auto 0;
  max-width: 400px;
  position: relative;
  border-radius: 2px;
}

.logo-separator::before{
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.6) 15%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(255, 255, 255, 0.6) 85%, 
    transparent 100%
  );
  border-radius: 1px;
}

.logo-separator::after{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 2px;
  background: #5f6b7c;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(95, 107, 124, 0.3);
}

/* Responsive adjustments for logo separator */
@media (max-width: 768px){
  .logo-separator{
    max-width: 300px;
    margin: 16px auto 0;
    height: 1.5px;
  }
  
  .logo-separator::after{
    width: 4px;
    height: 1.5px;
  }
}

@media (max-width: 480px){
  .logo-separator{
    max-width: 250px;
    margin: 12px auto 0;
    height: 1px;
  }
  
  .logo-separator::after{
    width: 3px;
    height: 1px;
  }
}

.hero{
  text-align:center;
  padding:32px 0 28px;
}
.hero h1{
  font-weight:700;
  font-size:clamp(28px, 3.2vw + 8px, 46px);
  letter-spacing:.2px;
  margin:6px 0 6px;
}
.hero .sub{
  font-size:clamp(14px, 1.1vw + 6px, 18px);
  color:var(--muted);
  margin-bottom:8px;
}
.hero .price{
  font-size:clamp(28px, 3.4vw + 10px, 48px);
  font-weight:700;
  margin:8px 0 12px;
}
.hero .tiny{
  font-size:12.5px;color:#7a879a
}
.btn{
  display:inline-block;
  margin-top:14px;
  padding:12px 22px;
  background:#2e6df8;
  color:#fff;
  border-radius:999px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 6px 14px rgba(46,109,248,.18);
}

/* Split layout */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  margin-top:36px;
}
@media (max-width: 880px){
  .split{grid-template-columns:1fr}
}
.left{
  background:#eef3fb;
  min-height:520px;
  display:flex;
  align-items:center;
}
.left .inner{padding:44px}
.right{
  background:#2e6df8;
  color:#fff;
  min-height:520px;
  display:flex;
  align-items:center;
}
.right .inner{padding:44px}

.h3{
  font-size:26px;font-weight:700;margin:0 0 18px
}
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
@media (max-width: 600px){
  .pricing-grid{grid-template-columns:1fr}
}
.card{
  background:#fff;
  border-radius:var(--radius);
  padding:18px 18px 14px;
  box-shadow:0 2px 0 rgba(0,0,0,.02), 0 0 0 1px rgba(12,27,77,.06) inset;
}
.card.small{
  padding:8px 0 0;
  background:transparent;
  box-shadow:none;
}
.card h4{margin:0 0 6px;font-size:16px;font-weight:700;color:#24304a}
.card p{margin:0;color:#475367}
.card .price{
  font-weight:800;font-size:18px;margin-top:2px;color:#0b1324
}
.muted{color:#6c7890;font-size:13px}
.list{margin:8px 0 0;padding:0 0 0 16px;color:#495369;font-size:14px}
.list li{margin:4px 0}

.right .bundle-table{
  width:100%;border-collapse:collapse;margin-top:8px;color:#eef4ff
}
.right th,.right td{padding:10px 8px;border-bottom:1px solid rgba(255,255,255,.18);text-align:left;font-size:14px}
.right th{font-weight:700;color:#fff}
.right .strike{opacity:.7;text-decoration:line-through}
.right a{color:#fff;text-decoration:underline}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:700;
  margin:48px 0 8px
}

/* Testimonials */
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding:24px 0 10px;
}
@media (max-width: 960px){
  .testimonials{grid-template-columns:1fr}
}
.quote{
  background:#eef3fb;
  border-radius:var(--radius);
  padding:20px 18px;
  position:relative;
}
.quote:before{
  content:"“";
  font-size:52px;
  position:absolute;
  left:14px;top:-14px;
  color:#86a4ff;
  font-weight:900;
}
.quote p{margin:18px 0 16px;color:#24304a}
.quote .person{
  display:flex;gap:12px;align-items:center;margin-top:8px
}
.person img{width:44px;height:44px;object-fit:cover;border-radius:50%;display:block;box-shadow:0 1px 0 rgba(0,0,0,.1)}

/* Footer */
.footer{
  background: linear-gradient(135deg, #f8f9fb 0%, #eef3fb 100%);
  margin-top: 60px;
  border-top: 1px solid #e8edf6;
  padding: 60px 0 40px;
  position: relative;
}

.footer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(232, 237, 246, 0.8) 20%, 
    rgba(232, 237, 246, 1) 50%, 
    rgba(232, 237, 246, 0.8) 80%, 
    transparent 100%
  );
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Footer Header */
.footer-header{
  text-align: center;
  margin-bottom: 40px;
}

.footer-header h3{
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #0b1324;
  letter-spacing: -0.5px;
}

.footer-subtitle{
  font-size: 16px;
  color: #5f6b7c;
  margin: 0;
  font-weight: 400;
}

/* CTA Section */
.footer-cta{
  margin-bottom: 50px;
}

.cta-primary{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 2px solid transparent;
  min-width: 200px;
  justify-content: center;
}

.cta-button.primary{
  background: #2e6df8;
  color: #fff;
  box-shadow: 0 6px 20px rgba(46, 109, 248, 0.3);
}

.cta-button.primary:hover{
  background: #1e5ce8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 109, 248, 0.4);
}

.cta-button.secondary{
  background: #fff;
  color: #2e6df8;
  border-color: #2e6df8;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary:hover{
  background: #2e6df8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 109, 248, 0.3);
}

.cta-button .icon{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social Links Section */
.footer-social{
  margin-bottom: 50px;
  text-align: center;
}

.footer-social h4{
  font-size: 18px;
  font-weight: 600;
  color: #0b1324;
  margin: 0 0 24px;
  letter-spacing: 1px;
}

.social-links{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 50px;
  text-decoration: none;
  color: #5f6b7c;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover{
  background: #2e6df8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(46, 109, 248, 0.3);
  border-color: #2e6df8;
}

.social-link .icon{
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link .label{
  font-size: 14px;
}

/* Terms and Conditions */
.footer-terms{
  margin-bottom: 30px;
}

.terms-container{
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.terms-summary{
  padding: 20px 24px;
  background: #f8f9fb;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #0b1324;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.terms-summary:hover{
  background: #eef3fb;
}

.terms-summary::after{
  content: '+';
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.terms-container[open] .terms-summary::after{
  transform: rotate(45deg);
}

.terms-content{
  padding: 24px;
  font-size: 12px;
  line-height: 1.6;
  color: #5f6b7c;
}

.terms-content p{
  margin: 0 0 12px;
}

.terms-content h5{
  font-size: 14px;
  font-weight: 600;
  color: #0b1324;
  margin: 20px 0 12px 0;
}

/* Footer Bottom */
.footer-bottom{
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e8edf6;
}

.footer-bottom p{
  margin: 0;
  font-size: 14px;
  color: #7a879a;
}

/* Responsive Design */
@media (max-width: 768px){
  .footer{
    padding: 40px 0 30px;
    margin-top: 40px;
  }
  
  .footer-header h3{
    font-size: 28px;
  }
  
  .footer-subtitle{
    font-size: 14px;
  }
  
  .cta-primary{
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button{
    width: 100%;
    max-width: 280px;
    min-width: auto;
  }
  
  .social-links{
    gap: 12px;
  }
  
  .social-link{
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .social-link .label{
    font-size: 13px;
  }
  
  .terms-summary{
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .terms-content{
    padding: 20px;
    font-size: 11px;
  }
}

@media (max-width: 480px){
  .footer{
    padding: 30px 0 20px;
  }
  
  .footer-header h3{
    font-size: 24px;
  }
  
  .cta-button{
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .social-links{
    flex-direction: column;
    align-items: center;
  }
  
  .social-link{
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

.center{text-align:center}
.strike{text-decoration:line-through}

/* Carousel Styles */
.carousel-section{
  background: linear-gradient(135deg, #f8f9fb 0%, #eef3fb 100%);
  padding: 60px 0;
  margin-top: 0;
  border-top: 1px solid #e8edf6;
}

.carousel-title{
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b1324;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.carousel-container{
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.carousel-wrapper{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #fff;
  min-height: 340px;
}

.carousel-track{
  position: relative;
}

.carousel-slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active{
  opacity: 1;
  pointer-events: auto;
}

/* Agent Card Styles */
.agent-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 20px;
  min-height: 100%;
}

.agent-title{
  font-size: 28px;
  font-weight: 700;
  color: #0b1324;
  margin: 0 0 24px;
  letter-spacing: -0.5px;
}

.agent-icon{
  margin: 0 0 24px;
  color: #2e6df8;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  transition: all 0.3s ease;
}

.agent-icon svg{
  width: 100%;
  height: 100%;
}

.agent-card:hover .agent-icon{
  transform: scale(1.05);
}

.agent-description{
  font-size: 16px;
  color: #5f6b7c;
  line-height: 1.5;
  margin: 0;
  max-width: 400px;
  font-style: italic;
}

.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid #e8edf6;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #2e6df8;
}

.carousel-btn:hover{
  background: #2e6df8;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(46,109,248,0.3);
}

.prev-btn{
  left: 20px;
}

.next-btn{
  right: 20px;
}

.carousel-dots{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d7deea;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active{
  background: #2e6df8;
  transform: scale(1.2);
}

.dot:hover{
  background: #2e6df8;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px){
  .carousel-section{
    padding: 40px 0;
  }
  
  .carousel-title{
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .carousel-slide{
    padding: 30px 15px;
  }
  
  .agent-card{
    padding: 30px 15px;
  }
  
  .agent-title{
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .agent-icon{
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
  }
  
  .agent-icon svg{
    width: 100%;
    height: 100%;
  }
  
  .agent-description{
    font-size: 14px;
  }
  
  .carousel-btn{
    width: 40px;
    height: 40px;
  }
  
  .prev-btn{
    left: 10px;
  }
  
  .next-btn{
    right: 10px;
  }
}

/* Scroll Reveal Animations */
.reveal{
  opacity:0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Direction variants */
.reveal-up{ transform: translateY(24px); }
.reveal-left{ transform: translateX(-24px); }
.reveal-right{ transform: translateX(24px); }
.reveal-up.in,.reveal-left.in,.reveal-right.in{ transform: translate(0,0); }

/* Bottom-up text rise effect */
.rise{
  opacity: 0;
  transform: translateY(36px);
  filter: blur(2px);
  transition: opacity 1s cubic-bezier(.22,.61,.36,1), transform 1s cubic-bezier(.22,.61,.36,1), filter 1s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
.rise.in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Spawn effect for larger sections (scale + fade) */
.spawn{
  opacity: 0;
  transform: scale(.96);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.spawn.in{
  opacity: 1;
  transform: scale(1);
}

/* Delay utilities (slower, smoother staggering) */
.delay-1{ transition-delay: .2s; }
.delay-2{ transition-delay: .35s; }
.delay-3{ transition-delay: .5s; }
.delay-4{ transition-delay: .65s; }
.delay-5{ transition-delay: .8s; }
.delay-6{ transition-delay: .95s; }
.delay-7{ transition-delay: 1.1s; }
.delay-8{ transition-delay: 1.25s; }
