* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family:
      Inter,
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: min(1120px, 90%);
    margin: auto;
  }
  
  
  /* NAVBAR */
  
  .navbar {
    height: 76px;
    display: flex;
    align-items: center;
  
    border-bottom: 1px solid #e5e7eb;
  
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
  
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    font-weight: 750;
    letter-spacing: -0.8px;
  }
  
  nav {
    display: flex;
    gap: 32px;
  }
  
  nav a {
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
  }
  
  nav a:hover {
    color: #111827;
  }
  
  
  /* HERO */
  
  .hero {
    padding: 130px 0 140px;
  
    background:
      radial-gradient(
        circle at 50% 0%,
        #eef2ff 0%,
        #ffffff 55%
      );
  }
  
  .hero-content {
    max-width: 850px;
    text-align: center;
  }
  
  .badge {
    display: inline-block;
  
    background: #eef2ff;
    color: #4f46e5;
  
    padding: 7px 14px;
    border-radius: 100px;
  
    font-size: 14px;
    font-weight: 600;
  
    margin-bottom: 25px;
  }
  
  .hero h1 {
    font-size: clamp(48px, 7vw, 76px);
    line-height: 1.05;
    letter-spacing: -3px;
    margin-bottom: 28px;
  }
  
  .hero h1 span {
    color: #4f46e5;
  }
  
  .hero p {
    max-width: 700px;
    margin: 0 auto 35px;
  
    color: #6b7280;
  
    font-size: 19px;
  }
  
  .button {
    display: inline-block;
  
    background: #111827;
    color: white;
  
    padding: 14px 24px;
  
    border-radius: 9px;
  
    font-weight: 600;
  
    transition: 0.2s;
  }
  
  .button:hover {
    transform: translateY(-2px);
    background: #272f3d;
  }
  
  
  /* GENERAL SECTIONS */
  
  .section {
    padding: 110px 0;
  }
  
  .section-alt {
    background: #f8fafc;
  }
  
  .section-header {
    max-width: 700px;
    margin-bottom: 55px;
  }
  
  .section-label {
    color: #4f46e5;
  
    font-size: 13px;
    font-weight: 700;
  
    letter-spacing: 1.5px;
  
    margin-bottom: 12px;
  }
  
  .section h2,
  .contact h2 {
    font-size: 40px;
    line-height: 1.15;
  
    letter-spacing: -1.5px;
  
    margin-bottom: 16px;
  }
  
  .section-header > p:last-child {
    color: #6b7280;
    font-size: 17px;
  }
  
  
  /* FEATURES */
  
  .features {
    display: grid;
  
    grid-template-columns:
      repeat(3, 1fr);
  
    gap: 24px;
  }
  
  .card {
    padding: 32px;
  
    border: 1px solid #e5e7eb;
    border-radius: 14px;
  
    background: white;
  }
  
  .card .icon {
    width: 42px;
    height: 42px;
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    background: #eef2ff;
    color: #4f46e5;
  
    border-radius: 9px;
  
    font-size: 13px;
    font-weight: 700;
  
    margin-bottom: 24px;
  }
  
  .card h3 {
    margin-bottom: 10px;
  
    font-size: 19px;
  }
  
  .card p {
    color: #6b7280;
  }
  
  
  /* HOW */
  
  .how {
    display: grid;
  
    grid-template-columns:
      1fr 1fr;
  
    gap: 100px;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
  
    gap: 35px;
  }
  
  .step {
    display: flex;
  
    gap: 20px;
  }
  
  .step > span {
    min-width: 38px;
    height: 38px;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    background: #111827;
    color: white;
  
    border-radius: 50%;
  
    font-size: 14px;
    font-weight: 600;
  }
  
  .step h3 {
    margin-bottom: 5px;
  }
  
  .step p {
    color: #6b7280;
  }
  
  
  /* CONTACT */
  
  .contact {
    padding: 110px 0;
  }
  
  .contact-box {
    text-align: center;
  
    padding: 75px 30px;
  
    background: #f8fafc;
  
    border-radius: 20px;
  }
  
  .contact-box > p:not(.section-label) {
    color: #6b7280;
  
    margin-bottom: 28px;
  }
  
  
  /* FOOTER */
  
  footer {
    border-top: 1px solid #e5e7eb;
  
    padding: 55px 0 25px;
  }
  
  .footer-content {
    display: flex;
  
    justify-content: space-between;
  
    gap: 50px;
  }
  
  .footer-content strong {
    font-size: 20px;
  }
  
  .footer-content p {
    color: #6b7280;
  
    margin-top: 8px;
  }
  
  .footer-links {
    display: flex;
  
    flex-direction: column;
  
    gap: 10px;
  
    color: #4b5563;
  }
  
  .footer-links a:hover {
    color: #111827;
  }
  
  .copyright {
    color: #9ca3af;
  
    font-size: 13px;
  
    margin-top: 50px;
  
    padding-top: 25px;
  
    border-top: 1px solid #e5e7eb;
  }
  
  
  /* MOBILE */
  
  @media (max-width: 800px) {
  
    nav {
      display: none;
    }
  
    .hero {
      padding: 90px 0;
    }
  
    .hero h1 {
      letter-spacing: -2px;
    }
  
    .features {
      grid-template-columns: 1fr;
    }
  
    .how {
      grid-template-columns: 1fr;
  
      gap: 50px;
    }
  
    .section {
      padding: 80px 0;
    }
  
    .footer-content {
      flex-direction: column;
    }
  }


/* LEGAL PAGES */

.legal {
    padding: 90px 0 120px;
  }
  
  .legal-container {
    width: min(800px, 90%);
    margin: auto;
  }
  
  .legal h1 {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 10px;
  }
  
  .legal-date {
    color: #9ca3af;
    margin-bottom: 50px;
  }
  
  .legal h2 {
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 10px;
  }
  
  .legal p {
    color: #4b5563;
    margin-bottom: 15px;
  }