*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#060816;
  color:white;
  overflow-x:hidden;
}

.container{
  width:min(1200px,90%);
  margin:auto;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  padding:20px 0;
  transition:0.3s;
}

.navbar.scrolled{
  backdrop-filter:blur(20px);
  background:rgba(10,10,20,0.7);
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:1.6rem;
  font-weight:800;
  color:white;
  text-decoration:none;
}

.desktop-nav{
  display:flex;
  gap:35px;
  align-items:center;
}

.desktop-nav a{
  color:white;
  text-decoration:none;
}


/* MOBILE MENU TOGGLE */

.mobile-menu-toggle{
  display:none;

  width:50px;
  height:50px;

  border:none;
  background:none;

  cursor:pointer;

  position:relative;
  z-index:1002;
}

.mobile-menu-toggle span{
  display:block;

  width:28px;
  height:2px;

  background:white;

  margin:6px auto;

  transition:0.3s;
}

/* MOBILE MENU */

.mobile-menu{
  position:fixed;

  top:0;
  right:-100%;

  width:100%;
  height:100vh;

  background:rgba(6,8,22,0.96);

  backdrop-filter:blur(20px);

  z-index:1001;

  transition:0.4s ease;

  display:flex;
}

.mobile-menu.active{
  right:0;
}

/* INNER */

.mobile-menu-inner{
  width:100%;

  padding:120px 30px 40px;

  display:flex;
  flex-direction:column;

  overflow-y:auto;
}

/* CLOSE BUTTON */

.mobile-menu-close{
  position:absolute;

  top:25px;
  right:25px;

  background:none;
  border:none;

  color:white;

  font-size:2.5rem;

  cursor:pointer;
}

/* MOBILE NAV */

.mobile-nav{
  display:flex;
  flex-direction:column;

  gap:10px;
}

.mobile-nav a{
  color:white;

  text-decoration:none;

  font-size:1.1rem;
  font-weight:500;

  padding:18px 20px;

  border-radius:18px;

  transition:0.3s;
}

.mobile-nav a:hover{
  background:rgba(255,255,255,0.06);
}

/* CTA */

.mobile-cta{
  margin-top:35px;

  justify-content:center;
}


/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top left,#6c63ff55,transparent 40%),
  radial-gradient(circle at bottom right,#00bfff33,transparent 40%);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-text{
  max-width:700px;
}

.hero h1{
  font-size:5rem;
  line-height:1.1;
  margin:20px 0;
}

.hero p{
  font-size:1.2rem;
  color:#cbd5e1;
  line-height:1.8;
}

.tag{
  background:#6c63ff22;
  border:1px solid #6c63ff55;
  padding:10px 18px;
  border-radius:50px;
  font-size:0.85rem;
}

/* BUTTONS */

.btn{
  padding:14px 28px;
  border-radius:14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:#6c63ff;
  color:white;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline{
  border:1px solid #ffffff33;
  color:white;
}

/* GLASS CARD */

.glass-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:28px;
}

/* FEATURES */

.features{
  padding:120px 0;
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  padding:40px;
  transition:0.4s;
}

.feature-card:hover{
  transform:translateY(-10px);
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:3rem;
  margin-top:10px;
}

/* TESTIMONIAL */

.testimonials{
  padding:120px 0;
}

.testimonial-card{
  padding:40px;
}

/* CTA */

.cta-section{
  padding:100px 0;
}

.cta-box{
  text-align:center;
  padding:80px;
  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #6c63ff,
    #2a2f4f
  );
}

/* FOOTER */

.footer{
  padding:100px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
}

.footer a{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  margin:10px 0;
}

.newsletter{
  display:flex;
  margin-top:20px;
}

.newsletter input{
  flex:1;
  padding:14px;
  border:none;
  border-radius:12px 0 0 12px;
}

.newsletter button{
  padding:14px 24px;
  border:none;
  background:#6c63ff;
  color:white;
  border-radius:0 12px 12px 0;
}

/* FOOTER FIXES */

.footer-grid > div{
  min-width:0;
}

.footer-brand p{
  margin-top:20px;
  color:#cbd5e1;
  line-height:1.8;
}

.footer h4{
  margin-bottom:20px;
}

.footer-bottom{
  margin-top:70px;
  padding-top:30px;

  border-top:1px solid rgba(255,255,255,0.08);

  text-align:center;

  color:#94a3b8;
}






/* SOFTWARE HERO */

.software-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding-top:120px;
}

.software-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,#6c63ff44,transparent 35%),
  radial-gradient(circle at bottom left,#00bfff22,transparent 40%);
}

.software-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.software-hero-text h1{
  font-size:4.5rem;
  line-height:1.1;
  margin:20px 0;
}

.software-hero-text p{
  font-size:1.1rem;
  line-height:1.8;
  color:#cbd5e1;
}

/* FLOATING DASHBOARD */

.floating-dashboard{
  position:relative;
  height:600px;
}

.dashboard-card{
  position:absolute;
  padding:30px;
  width:260px;
}

.dashboard-card h2{
  font-size:2rem;
  margin:10px 0;
}

.dashboard-card span{
  color:#22c55e;
}

.floating-card-1{
  top:40px;
  left:40px;
}

.floating-card-2{
  bottom:120px;
  right:0;
}

.dashboard-chart{
  position:absolute;
  top:180px;
  left:120px;
  width:320px;
  height:220px;
  padding:30px;
}

.chart-bars{
  display:flex;
  align-items:flex-end;
  gap:15px;
  height:100%;
}

.chart-bars span{
  flex:1;
  border-radius:20px;
  background:linear-gradient(
    180deg,
    #6c63ff,
    #3b82f6
  );
}

.chart-bars span:nth-child(1){
  height:40%;
}

.chart-bars span:nth-child(2){
  height:75%;
}

.chart-bars span:nth-child(3){
  height:60%;
}

.chart-bars span:nth-child(4){
  height:90%;
}

.chart-bars span:nth-child(5){
  height:55%;
}

.chart-bars span:nth-child(6){
  height:100%;
}

/* SOFTWARE GRID */

.software-grid-section{
  padding:120px 0;
}

.software-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.software-card{
  padding:40px;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.software-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at top right,#6c63ff22,transparent 50%);
  opacity:0;
  transition:0.4s;
}

.software-card:hover::before{
  opacity:1;
}

.software-card:hover{
  transform:translateY(-12px);
  border-color:#6c63ff66;
}

.software-icon{
  width:70px;
  height:70px;
  border-radius:20px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#6c63ff22;

  font-size:1.8rem;

  margin-bottom:25px;
}

.software-card h3{
  font-size:1.5rem;
  margin-bottom:15px;
}

.software-card p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:20px;
}

.software-card ul{
  margin-bottom:25px;
  padding-left:18px;
}

.software-card li{
  margin:10px 0;
  color:#dbe4f0;
}

.software-card a{
  color:#8b80ff;
  text-decoration:none;
  font-weight:600;
}

/* PRICING */

.pricing-section{
  padding:120px 0;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.pricing-card{
  padding:50px 40px;
  text-align:center;
}

.featured-price{
  background:linear-gradient(
    135deg,
    #6c63ff,
    #3b82f6
  );

  border-radius:32px;
  padding:60px 40px;
  position:relative;
}

.popular-tag{
  position:absolute;
  top:20px;
  right:20px;

  background:white;
  color:#111827;

  padding:8px 14px;
  border-radius:30px;

  font-size:0.75rem;
  font-weight:700;
}

.price{
  font-size:4rem;
  font-weight:800;
  margin:25px 0;
}

.price span{
  font-size:1rem;
  font-weight:400;
}

.pricing-card ul{
  list-style:none;
  margin:30px 0;
}

.pricing-card li{
  margin:14px 0;
}

/* COMPARISON */

.comparison-section{
  padding:120px 0;
}

.comparison-table{
  overflow:auto;
  padding:30px;
}

.comparison-table table{
  width:100%;
  border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
  padding:20px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  text-align:left;
}

/* FAQ */

.faq-section{
  padding:120px 0;
}

.small-container{
  width:min(900px,90%);
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.faq-item{
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:white;
  padding:30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:1.1rem;
  font-weight:600;
}

.faq-answer{
  max-height:0;
  overflow:hidden;

  transition:0.4s ease;

  color:#cbd5e1;
  padding:0 30px;
  line-height:1.8;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding-bottom:30px;
}

/* SOFTWARE CTA */

.software-cta{
  padding:100px 0;
}

.software-cta-box{
  text-align:center;
  padding:100px 50px;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #111827,
    #1e293b
  );

  border:1px solid rgba(255,255,255,0.08);
}






/* PRODUCT HERO */

.product-hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding-top:120px;
}

.product-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top right,#6c63ff44,transparent 35%),
  radial-gradient(circle at bottom left,#00bfff22,transparent 40%);
}

.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.product-hero-text h1{
  font-size:4.5rem;
  line-height:1.1;
  margin:20px 0;
}

.product-hero-text p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:1.1rem;
}

/* PRODUCT VISUAL */

.product-visual{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.product-glow{
  position:absolute;
  width:450px;
  height:450px;

  background:
  radial-gradient(circle,#6c63ff55,transparent 70%);

  filter:blur(40px);
}

.main-product-image{
  position:relative;
  z-index:2;
  width:100%;
  max-width:500px;

  animation:floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-20px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* PRODUCT GALLERY */

.product-gallery-section{
  padding:120px 0;
}

.productGallerySwiper{
  overflow:hidden;
  border-radius:30px;
}

.productGallerySwiper img{
  width:100%;
  height:650px;
  object-fit:cover;
  border-radius:30px;
}

/* PRODUCT DETAILS */

.product-details-section{
  padding:120px 0;
}

.product-details-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}

.left-align{
  text-align:left;
}

.specs-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.spec-card{
  padding:35px;
}

.spec-card h3{
  margin-bottom:12px;
  font-size:1.3rem;
}

.spec-card p{
  color:#cbd5e1;
  line-height:1.7;
}

/* CONFIGURATION */

.configuration-box{
  margin-top:40px;
  padding:35px;
}

.config-options{
  display:flex;
  gap:15px;
  margin-top:20px;
  flex-wrap:wrap;
}

.config-btn{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  color:white;

  padding:14px 22px;
  border-radius:14px;

  cursor:pointer;
  transition:0.3s;
}

.config-btn.active,
.config-btn:hover{
  background:#6c63ff;
  border-color:#6c63ff;
}

/* SIDEBAR */

.product-sidebar{
  padding:40px;
  position:sticky;
  top:120px;
}

.product-sidebar h3{
  font-size:1.8rem;
  margin-bottom:15px;
}

.product-sidebar p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:30px;
}

/* FLOATING LABELS */

.floating-group{
  position:relative;
  margin-bottom:24px;
}

.floating-group input,
.floating-group textarea{
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  border-radius:16px;
  padding:20px;

  color:white;
  outline:none;
}

.floating-group textarea{
  min-height:140px;
  resize:none;
}

.floating-group label{
  position:absolute;
  left:20px;
  top:20px;

  color:#94a3b8;

  pointer-events:none;
  transition:0.3s;
}

.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label{
  top:-10px;
  left:14px;

  font-size:0.75rem;

  background:#060816;
  padding:2px 8px;

  border-radius:10px;
}

.full-width{
  width:100%;
  justify-content:center;
  border:none;
  cursor:pointer;
}

/* HIGHLIGHTS */

.feature-highlights{
  padding:120px 0;
}

.highlight-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.highlight-card{
  padding:40px;
  transition:0.4s;
}

.highlight-card:hover{
  transform:translateY(-10px);
}

.highlight-card h3{
  margin-bottom:15px;
  font-size:1.4rem;
}

.highlight-card p{
  color:#cbd5e1;
  line-height:1.7;
}

/* FINAL CTA */

.product-final-cta{
  padding:100px 0;
}

.product-final-box{
  padding:100px 50px;
  text-align:center;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #6c63ff,
    #3b82f6
  );
}



/* ABOUT HERO */

.about-hero{
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  position:relative;
  overflow:hidden;

  padding-top:120px;
}

.about-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top center,#6c63ff33,transparent 40%),
  radial-gradient(circle at bottom left,#00bfff22,transparent 40%);
}

.about-hero-content{
  position:relative;
  z-index:2;
  max-width:900px;
}

.about-hero h1{
  font-size:5rem;
  line-height:1.1;
  margin:20px 0;
}

.about-hero p{
  color:#cbd5e1;
  font-size:1.2rem;
  line-height:1.8;
}

/* STORY */

.company-story{
  padding:120px 0;
}

.company-story-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.story-content p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:20px;
}

.story-stats{
  display:flex;
  gap:50px;
  margin-top:40px;
}

.story-stats h3{
  font-size:2.2rem;
  margin-bottom:10px;
}

.story-stats span{
  color:#94a3b8;
}

.story-image{
  overflow:hidden;
  border-radius:30px;
}

.story-image img{
  width:100%;
  display:block;
}

/* TIMELINE */

.timeline-section{
  padding:120px 0;
}

.timeline{
  position:relative;
  max-width:900px;
  margin:auto;
}

.timeline::before{
  content:'';
  position:absolute;

  top:0;
  left:50%;

  transform:translateX(-50%);

  width:2px;
  height:100%;

  background:rgba(255,255,255,0.1);
}

.timeline-item{
  position:relative;
  width:50%;
  padding:30px;
}

.timeline-item:nth-child(odd){
  left:0;
  text-align:right;
}

.timeline-item:nth-child(even){
  left:50%;
}

.timeline-dot{
  position:absolute;
  top:40px;
  width:18px;
  height:18px;
  border-radius:50%;

  background:#6c63ff;
  border:4px solid #060816;
}

.timeline-item:nth-child(odd) .timeline-dot{
  right:-9px;
}

.timeline-item:nth-child(even) .timeline-dot{
  left:-9px;
}

.timeline-content{
  padding:35px;
}

.timeline-content span{
  color:#8b80ff;
  font-weight:600;
}

.timeline-content h3{
  margin:15px 0;
}

/* VALUES */

.values-section{
  padding:120px 0;
}

.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.value-card{
  padding:40px;
  transition:0.4s;
}

.value-card:hover{
  transform:translateY(-10px);
}

.value-card h3{
  margin-bottom:15px;
}

.value-card p{
  color:#cbd5e1;
  line-height:1.8;
}

/* TEAM */

.team-section{
  padding:120px 0;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.team-card{
  overflow:hidden;
  text-align:center;
  padding-bottom:30px;
  transition:0.4s;
}

.team-card:hover{
  transform:translateY(-10px);
}

.team-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  margin-bottom:25px;
}

.team-card h3{
  margin-bottom:10px;
}

.team-card span{
  color:#94a3b8;
}

/* CULTURE */

.culture-section{
  padding:120px 0;
}

.culture-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.culture-text p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:20px;
}

.culture-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.culture-images img{
  width:100%;
  border-radius:30px;
  object-fit:cover;
  height:400px;
}

/* ABOUT CTA */

.about-cta{
  padding:100px 0;
}

.about-cta-box{
  text-align:center;
  padding:100px 50px;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #111827,
    #1e293b
  );

  border:1px solid rgba(255,255,255,0.08);
}



/* CONTACT HERO */

.contact-hero{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  position:relative;
  overflow:hidden;

  padding-top:120px;
}

.contact-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top center,#6c63ff33,transparent 40%),
  radial-gradient(circle at bottom right,#00bfff22,transparent 40%);
}

.contact-hero-content{
  position:relative;
  z-index:2;
  max-width:850px;
}

.contact-hero h1{
  font-size:5rem;
  line-height:1.1;
  margin:20px 0;
}

.contact-hero p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:1.2rem;
}

/* CONTACT CARDS */

.contact-cards-section{
  padding:100px 0;
}

.contact-cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.contact-card{
  padding:40px;
  text-align:center;
  transition:0.4s;
}

.contact-card:hover{
  transform:translateY(-10px);
}

.contact-icon{
  width:80px;
  height:80px;
  margin:auto auto 25px;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:2rem;

  background:#6c63ff22;
}

.contact-card h3{
  margin-bottom:15px;
}

.contact-card p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:20px;
}

.contact-card a{
  color:#8b80ff;
  text-decoration:none;
  font-weight:600;
}

/* MAIN CONTACT */

.main-contact-section{
  padding:120px 0;
}

.main-contact-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
  align-items:start;
}

.contact-form-wrapper{
  padding:50px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.modern-contact-form{
  margin-top:30px;
}

.floating-group select{
  width:100%;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  border-radius:16px;
  padding:20px;

  color:white;
  outline:none;
}

.floating-group select option{
  background:#0f172a;
}

/* SIDEBAR */

.contact-sidebar{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.office-card,
.support-card{
  padding:40px;
}

.office-card h3,
.support-card h3{
  margin-bottom:20px;
  font-size:1.5rem;
}

.office-card p,
.support-card p{
  color:#cbd5e1;
  line-height:1.8;
  margin-bottom:25px;
}

.office-info{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.office-info span{
  color:#94a3b8;
  display:block;
  margin-bottom:5px;
}

/* MAP */

.map-section{
  padding:120px 0;
}

.map-wrapper{
  overflow:hidden;
  border-radius:30px;
}

.map-wrapper iframe{
  display:block;
}

/* CONTACT FAQ */

.contact-faq-section{
  padding:120px 0;
}

/* CONTACT CTA */

.contact-cta{
  padding:100px 0;
}

.contact-cta-box{
  text-align:center;
  padding:100px 50px;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #6c63ff,
    #3b82f6
  );
}


/* SUCCESS PAGE */

.success-page{
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  position:relative;
  overflow:hidden;

  padding:140px 0;
}

/* BACKGROUND GLOWS */

.success-bg-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(100px);
}

.glow-1{
  width:400px;
  height:400px;

  background:#6c63ff33;

  top:-100px;
  left:-100px;
}

.glow-2{
  width:350px;
  height:350px;

  background:#00bfff22;

  bottom:-100px;
  right:-100px;
}

/* SUCCESS CARD */

.success-card{
  position:relative;
  z-index:2;

  max-width:700px;
  margin:auto;

  text-align:center;

  padding:80px 60px;

  border-radius:40px;
}

/* CHECKMARK */

.success-checkmark{
  width:120px;
  height:120px;

  margin:0 auto 40px;
}

.success-checkmark svg{
  width:100%;
  height:100%;
}

.checkmark-circle{
  stroke:#22c55e;
  stroke-width:2;
  stroke-dasharray:166;
  stroke-dashoffset:166;

  animation:strokeCircle 1s ease forwards;
}

.checkmark-check{
  stroke:#22c55e;
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;

  stroke-dasharray:48;
  stroke-dashoffset:48;

  animation:strokeCheck 0.6s ease forwards;
  animation-delay:0.9s;
}

@keyframes strokeCircle{

  to{
    stroke-dashoffset:0;
  }

}

@keyframes strokeCheck{

  to{
    stroke-dashoffset:0;
  }

}

/* CONTENT */

.success-badge{
  display:inline-block;

  padding:10px 18px;

  border-radius:50px;

  background:#22c55e22;
  border:1px solid #22c55e44;

  color:#4ade80;

  font-size:0.8rem;
  font-weight:700;
  letter-spacing:1px;

  margin-bottom:20px;
}

.success-card h1{
  font-size:4rem;
  margin-bottom:20px;
}

.success-card p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:1.1rem;

  max-width:500px;
  margin:auto auto 35px;
}

/* REDIRECT */

.redirect-box{
  margin-bottom:40px;

  padding:18px 24px;

  border-radius:18px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.06);

  color:#cbd5e1;
}

/* BUTTONS */

.success-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}


/* HONEYPOT */

.honeypot-field{
  display:none;
}


/* LEGAL HERO */

.legal-hero{
  min-height:55vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  position:relative;
  overflow:hidden;

  padding-top:120px;
}

.legal-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top center,#6c63ff33,transparent 40%),
  radial-gradient(circle at bottom right,#00bfff22,transparent 40%);
}

.legal-hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
}

.legal-hero h1{
  font-size:4.5rem;
  margin:20px 0;
}

.legal-hero p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:1.1rem;
}

.last-updated{
  margin-top:25px;

  display:inline-block;

  padding:12px 18px;

  border-radius:16px;

  background:rgba(255,255,255,0.05);

  border:1px solid rgba(255,255,255,0.08);

  color:#94a3b8;
}

/* LEGAL LAYOUT */

.legal-layout-section{
  padding:120px 0;
}

.legal-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:40px;
  align-items:start;
}

/* SIDEBAR */

.legal-sidebar{
  position:sticky;
  top:120px;

  padding:35px;
}

.legal-sidebar h3{
  margin-bottom:25px;
}

.legal-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.legal-link{
  text-decoration:none;

  color:#cbd5e1;

  padding:14px 18px;

  border-radius:14px;

  transition:0.3s;
}

.legal-link:hover,
.legal-link.active{
  background:#6c63ff22;
  color:white;
}

/* MAIN CONTENT */

.legal-content{
  padding:60px;
}

.legal-section{
  margin-bottom:70px;
}

.legal-section:last-child{
  margin-bottom:0;
}

.legal-section h2{
  font-size:2rem;
  margin-bottom:25px;
}

.legal-section p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:20px;
}

.legal-section ul{
  padding-left:20px;
}

.legal-section li{
  margin:14px 0;
  color:#dbe4f0;
  line-height:1.8;
}

/* CONTACT BOX */

.legal-contact-box{
  margin-top:25px;

  padding:30px;

  border-radius:24px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  color:#cbd5e1;
}



/* REFUND HERO */

.refund-hero{
  min-height:55vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  position:relative;
  overflow:hidden;

  padding-top:120px;
}

.refund-hero::before{
  content:'';
  position:absolute;
  inset:0;

  background:
  radial-gradient(circle at top center,#6c63ff33,transparent 40%),
  radial-gradient(circle at bottom left,#00bfff22,transparent 40%);
}

.refund-hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
}

.refund-hero h1{
  font-size:4.5rem;
  margin:20px 0;
}

.refund-hero p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:1.1rem;
}

/* ELIGIBILITY */

.refund-eligibility-section{
  padding:120px 0;
}

.refund-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.refund-card{
  padding:40px;
  text-align:center;
  transition:0.4s;
}

.refund-card:hover{
  transform:translateY(-10px);
}

.refund-icon{
  width:80px;
  height:80px;

  margin:0 auto 25px;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#6c63ff22;

  font-size:2rem;
}

.refund-card h3{
  margin-bottom:15px;
}

.refund-card p{
  color:#cbd5e1;
  line-height:1.8;
}

/* ACCORDION */

.refund-accordion-section{
  padding:120px 0;
}

.refund-accordion{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.refund-item{
  overflow:hidden;
}

.refund-question{
  width:100%;

  background:none;
  border:none;

  color:white;

  padding:30px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  cursor:pointer;

  font-size:1.1rem;
  font-weight:600;
}

.refund-answer{
  max-height:0;
  overflow:hidden;

  transition:0.4s ease;

  padding:0 30px;

  color:#cbd5e1;
  line-height:1.8;
}

.refund-item.active .refund-answer{
  max-height:220px;
  padding-bottom:30px;
}

/* PROCESS */

.refund-process-section{
  padding:120px 0;
}

.refund-process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.process-step{
  padding:40px;
  text-align:center;
}

.step-number{
  width:70px;
  height:70px;

  margin:0 auto 25px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#6c63ff;

  font-size:1.5rem;
  font-weight:700;
}

.process-step h3{
  margin-bottom:15px;
}

.process-step p{
  color:#cbd5e1;
  line-height:1.8;
}

/* CANCELLATION */

.cancellation-section{
  padding:120px 0;
}

.cancellation-box{
  padding:60px;
}

.cancellation-box p{
  color:#cbd5e1;
  line-height:1.9;
  margin-bottom:20px;
}

/* DISPUTE */

.dispute-section{
  padding:100px 0;
}

.dispute-box{
  text-align:center;

  padding:100px 50px;

  border-radius:40px;

  background:
  linear-gradient(
    135deg,
    #111827,
    #1e293b
  );

  border:1px solid rgba(255,255,255,0.08);
}

.dispute-box h2{
  font-size:3rem;
  margin-bottom:20px;
}

.dispute-box p{
  color:#cbd5e1;
  line-height:1.8;

  max-width:700px;
  margin:0 auto 35px;
}


/* HOMEPAGE PRICING */

.homepage-pricing{
  padding:120px 0;
}

.homepage-pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */

.homepage-price-card{
  padding:40px;
  position:relative;
  transition:0.4s;
}

.homepage-price-card:hover{
  transform:translateY(-10px);
}

.price-top{
  margin-bottom:30px;
}

.price-badge{
  display:inline-block;

  padding:8px 14px;

  border-radius:30px;

  background:#6c63ff22;
  border:1px solid #6c63ff44;

  color:#a89fff;

  font-size:0.75rem;
  font-weight:700;

  margin-bottom:20px;
}

.homepage-price-card h3{
  font-size:1.7rem;
  margin-bottom:20px;
}

.homepage-price{
  font-size:3.5rem;
  font-weight:800;
}

/* FEATURES */

.homepage-price-card ul{
  list-style:none;
  margin-bottom:35px;
}

.homepage-price-card li{
  margin:14px 0;
  color:#dbe4f0;

  position:relative;
  padding-left:24px;
}

.homepage-price-card li::before{
  content:'✓';

  position:absolute;
  left:0;

  color:#6c63ff;
}

/* FEATURED */

.featured-home-price{
  background:
  linear-gradient(
    135deg,
    #6c63ff,
    #3b82f6
  );

  border-radius:32px;

  position:relative;

  padding:50px 40px;
}

.popular-home-tag{
  position:absolute;

  top:20px;
  right:20px;

  background:white;
  color:#111827;

  padding:8px 14px;

  border-radius:30px;

  font-size:0.7rem;
  font-weight:800;
}

/* CUSTOM */

.custom-price-card textarea{
  width:100%;
  min-height:120px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:18px;

  padding:18px;

  color:white;

  resize:none;
  outline:none;

  margin-bottom:20px;
}

.custom-price-text{
  color:#cbd5e1;
  line-height:1.7;
}

.custom-input-wrapper{
  position:relative;
  margin-bottom:20px;
}

.custom-input-wrapper span{
  position:absolute;

  left:20px;
  top:50%;

  transform:translateY(-50%);

  color:#94a3b8;
}

.custom-input-wrapper input{
  width:100%;

  height:65px;

  background:rgba(255,255,255,0.04);

  border:1px solid rgba(255,255,255,0.08);

  border-radius:18px;

  padding-left:40px;

  color:white;
  font-size:1.1rem;

  outline:none;
}





