/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f6f7;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
 border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}


.logo {
  font-size: 22px;
  font-weight: 800;
  color: #2196f3;
}

.header nav a {
  margin-left:10px;
  font-weight: 500;
  color: #ffffff;
  font-size: 20px;
  
}

.header nav a:hover {
  color: #2196f3;
}




/* HERO */
.hero {
  background: linear-gradient(180deg, #1B273B, #1B273B);
  padding: 30px 0;
  text-align: center;
  
}

.hero h2 {
  font-size: 36px;
  max-width: 700px;
  margin: 0 auto 10px;
  color: #ffffff;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 30px;
  color: #ffffff;
}

.btn-primary {
  background: #2196f3;
  color: #fff;
  padding: 14px 30px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background: #1976d2;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  text-transform: uppercase;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2196f3;
  margin: 12px auto 0;
  border-radius: 2px;
}


/* TOOLS GRID */
.tools {
  padding: 60px 0;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tool-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card h3 {
  margin-bottom: 10px;
  color: #2196f3;
}

.tool-card p {
  color: #666;
  font-size: 15px;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ADS */
.ads {
  padding: 40px 0;
}

.ad-box {
  background: #ffffff;
  border: 1px dashed #ccc;
  padding: 25px;
  text-align: center;
  color: #888;
  border-radius: 8px;
}

/* FEATURES */
.features {
  padding: 60px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #666;
  font-size: 15px;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 60px 0;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  background: #fff;
  flex: 1;
  min-width: 220px;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.step span {
  display: inline-block;
  background: #2196f3;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 10px;
}

/* TRUST */
.trust {
  padding: 60px 0;
  background: #ffffff;
  text-align: center;
}

.trust p {
  max-width: 800px;
  margin: auto;
  color: #666;
}

/* CTA */
.cta {
  padding: 70px 0;
  text-align: center;
  background: #2196f3;
  color: #fff;
}

.cta h2 {
  margin-bottom: 20px;
}

.cta .btn-primary {
  background: #fff;
  color: #2196f3;
}

.cta .btn-primary:hover {
  background: #e3f2fd;
}

/* FOOTER */
.footer {
  background: #1e1e1e;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
}

.footer a {
  color: #ccc;
  margin: 0 5px;
}

.footer a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 26px;
  }

  .header .container {
    flex-direction: column;
    gap: 10px;
  }

  .header nav a {
    margin: 0 10px;
  }
}

/* STICKY HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid #e5e5e5;
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* HEADER INNER */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ACTIVE MENU */
.header nav a.active {
  color: #2196f3;
  border-bottom: 3px solid #2196f3;
  padding-bottom: 5px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
  }

  nav.show {
    display: flex;
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }

  nav a:last-child {
    border-bottom: none;
  }
}

/* FIX CONTENT UNDER HEADER */

}





