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

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

section{
  padding:100px 0;
}

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

.section{
  width:min(1180px,92%);
  margin:auto;
}

.section-light{
  background:#fafafa;
  border-radius:40px;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:22px;
}

.dark-tag{
  background:transparent;
  color:#ffe600;
  border: none;
}

.section-header h2{
  font-size:3rem;
  line-height:1.1;
  margin-bottom:18px;
}

.section-header p{
  max-width:720px;
  margin:auto;
  color:#666;
  line-height:1.8;
}

/* HERO */

.hero{
  padding:60px 0 100px;
}

.hero-container{
  width:min(1180px,92%);
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  border: 1px solid #d3d3d3;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:3.5rem;
  line-height:1;
  margin-bottom:24px;
  letter-spacing:-2px;
}

.hero-content p{
  color:#666;
  line-height:1.9;
  margin-bottom:34px;
  font-size:1.05rem;
  max-width:620px;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

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

.stat{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.stat strong{
  font-size:1.5rem;
}

.stat span{
  color:#666;
}

/* DASHBOARD */

.dashboard-card{
  background:#111;
  border-radius:34px;
  padding:24px;
  color:#fff;
  min-height:580px;
  box-shadow:0 30px 80px rgba(0,0,0,0.1);
}

.dashboard-top{
  display:flex;
  gap:10px;
  margin-bottom:30px;
}

.circle{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#444;
}

.dashboard-content{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:20px;
}

.dashboard-sidebar{
  background:#1b1b1b;
  border-radius:24px;
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.sidebar-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:16px;
  color:#aaa;
}

.sidebar-item.active{
  background:#ffe600;
  color:#000;
  font-weight:600;
}

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

.mini-card{
  background:#1b1b1b;
  border-radius:24px;
  padding:28px;
}

.mini-card span{
  display:block;
  color:#999;
  margin-bottom:10px;
}

.mini-card strong{
  font-size:2rem;
}

/* SERVICES */

.services-grid,
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-card,
.benefit-card{
  background:#fff;
  border:1px solid #eee;
  padding:38px;
  border-radius:30px;
}

.service-icon{
  width:64px;
  height:64px;
  border-radius:20px;
  background:#ffe600;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  margin-bottom:24px;
}

.service-card h3,
.benefit-card h3{
  margin-bottom:14px;
  font-size:1.3rem;
}

.service-card p,
.benefit-card p{
  color:#666;
  line-height:1.8;
}

.benefit-card i{
  font-size:2rem;
  margin-bottom:22px;
}

/* STEPS */

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.step-card{
  border:1px solid #eee;
  border-radius:30px;
  padding:36px;
}

.step-card span{
  display:block;
  font-size:2rem;
  font-weight:800;
  color:#ffe600;
  margin-bottom:20px;
}

.step-card h3{
  margin-bottom:14px;
}

.step-card p{
  color:#666;
  line-height:1.8;
}

/* CTA */

.cta-content{
  width:min(1180px,92%);
  margin:auto;
  background:#111;
  color:#fff;
  text-align:center;
  padding:80px 40px;
  border-radius:40px;
}

.cta-content h2{
  font-size:3rem;
  margin-bottom:20px;
}

.cta-content p{
  max-width:700px;
  margin:auto;
  color:#d1d5db;
  line-height:1.9;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}

/* FAQ */

.faq-container{
  max-width:850px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;
}

details{
  border:1px solid #eee;
  border-radius:22px;
  padding:22px;
  background:#fff;
}

summary{
  cursor:pointer;
  font-weight:600;
}

details p{
  margin-top:16px;
  color:#666;
  line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .hero-container,
  .services-grid,
  .benefits-grid,
  .steps-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:3.5rem;
  }
}

@media(max-width:700px){

  section{
    padding:80px 0;
  }

  .hero-content h1,
  .section-header h2,
  .cta-content h2{
    font-size:2.5rem;
  }

  .hero-buttons,
  .cta-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .dashboard-content{
    grid-template-columns:1fr;
  }

  .dashboard-card{
    min-height:auto;
  }
}