*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, sans-serif;
  background:#02070c;
  color:#e6f0f6;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:min(100%, 980px);
  margin:0 auto;
  padding:0 20px;
  text-align:center;
}

.hero{
  padding:28px 0 58px;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top center, rgba(88, 28, 135, 0.14), transparent 35%),
    radial-gradient(circle at center, rgba(37, 99, 235, 0.08), transparent 45%);
  pointer-events:none;
}

.logo-hero{
  width:100%;
  max-width:860px;
  margin:0 auto 20px;
}

h1{
  margin:0 0 14px;
  font-size:52px;
  line-height:1.08;
  color:#ffffff;
}

h2{
  margin:0 0 14px;
  font-size:34px;
  line-height:1.12;
  color:#ffffff;
}

p{
  margin:0;
  color:#b8c7d3;
  line-height:1.7;
  font-size:18px;
}

.hero-subtitle{
  max-width:760px;
  margin:0 auto;
}

.hero-actions{
  margin-top:28px;
}

.section{
  padding:28px 0;
}

.section-tight{
  padding:22px 0;
}

.card,
.capture-box,
.testimonial-card{
  background:#06131c;
  border:1px solid rgba(255,255,255,0.06);
  border-radius:22px;
  box-shadow:0 10px 28px rgba(0,0,0,0.22);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover,
.capture-box:hover,
.testimonial-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 34px rgba(0,0,0,0.28);
  border-color:rgba(99,102,241,0.22);
}

.feature-card,
.transition-card{
  padding:34px 24px;
}

.capture-box{
  padding:30px 22px;
  max-width:860px;
  margin:0 auto;
}

.steps-list{
  list-style:none;
  padding:0;
  margin:20px 0 6px;
}

.steps-list li{
  font-size:18px;
  line-height:1.8;
  color:#ffffff;
}

.email-fake{
  width:100%;
  max-width:820px;
  margin:22px auto 0;
  padding:16px 16px;
  border-radius:14px;
  border:none;
  background:#f3f4f6;
  color:#111827;
  font-size:16px;
  outline:none;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:190px;
  padding:16px 28px;
  margin-top:22px;
  border:none;
  border-radius:16px;
  font-weight:700;
  font-size:18px;
  color:#ffffff;
  cursor:pointer;
  transition:
    transform .18s ease,
    box-shadow .22s ease,
    filter .22s ease,
    opacity .22s ease;
  will-change:transform;
}

.btn:hover{
  transform:translateY(-3px) scale(1.02);
  filter:brightness(1.05);
}

.btn:active{
  transform:translateY(-1px) scale(.99);
}

.btn-primary,
.btn-secondary{
  background:linear-gradient(90deg,#7c2ae8 0%, #1668f0 100%);
  box-shadow:0 10px 24px rgba(37,99,235,0.20);
}

.btn-primary:hover,
.btn-secondary:hover{
  box-shadow:0 14px 30px rgba(124,42,232,0.28);
}

.btn-float{
  animation: floatButton 1.8s ease-in-out infinite;
}

.btn-float:hover{
  animation-play-state: paused;
}

@keyframes floatButton{
  0%{
    transform:translateY(0) scale(1);
    box-shadow:0 10px 24px rgba(37,99,235,0.20);
  }
  50%{
    transform:translateY(-9px) scale(1.03);
    box-shadow:0 18px 34px rgba(124,42,232,0.34);
  }
  100%{
    transform:translateY(0) scale(1);
    box-shadow:0 10px 24px rgba(37,99,235,0.20);
  }
}

.testimonials-section{
  background:#0a131d;
  margin-top:34px;
  padding:54px 0 60px;
}

.testimonials-container h2{
  color:#ffffff;
  margin-bottom:26px;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  max-width:860px;
  margin:0 auto;
}

.testimonial-card{
  background:#101a24;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:0 10px 24px rgba(0,0,0,0.18);
  padding:24px 22px;
}

.stars{
  color:#facc15;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:10px;
}

.testimonial-text{
  color:#e8eef7;
  font-size:18px;
  font-style:italic;
  line-height:1.7;
}

.testimonial-author{
  margin-top:12px;
  color:#8ec5ff;
  font-size:17px;
  font-weight:700;
}

.footer{
  margin-top:70px;
  padding:42px 20px 34px;
  background:#071c29;
  border-top:1px solid rgba(255,255,255,0.06);
}

.footer-content{
  max-width:980px;
  margin:auto;
  text-align:center;
}

.footer-brand-text{
  font-size:16px;
  color:#d6e4f0;
  opacity:0.9;
  margin-bottom:22px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px 18px;
  margin-bottom:22px;
}

.footer-links a{
  color:#c7d9e2;
  text-decoration:none;
  font-size:14px;
  transition:opacity .2s ease, color .2s ease;
}

.footer-links a:hover{
  color:#ffffff;
  opacity:0.9;
}

.footer-socials{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-bottom:20px;
}

.footer-socials a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  transition:transform .2s ease, background .2s ease;
}

.footer-socials a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,0.12);
}

.social-icon{
  width:18px;
  height:18px;
  fill:#ffffff;
  display:block;
}

.footer-copy{
  font-size:13px;
  color:#9bb1c3;
  opacity:0.75;
  margin:0;
}


.legal-hero{
  padding:22px 0 36px;
}

.legal-logo{
  max-width:520px;
  margin-bottom:18px;
}

.legal-card{
  padding:34px 24px;
  text-align:left;
}

.legal-card h2{
  font-size:24px;
  margin:28px 0 10px;
}

.legal-card h2:first-child{
  margin-top:0;
}

.legal-card p{
  font-size:17px;
  line-height:1.8;
}
