

body {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #ffffff;
      color: #111827;
      line-height: 1.6;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .hero {
      background: linear-gradient(
        135deg,
        #000000 0%,
        #121212 100%
    );
      color: white;
      padding: 100px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 450px;
      gap: 60px;
      align-items: center;
    }

    .badge {
      display: inline-block;
      background: rgba(255,6,108,0.15);
      border: 1px solid rgba(255,6,108,0.4);
      color: #FF066C;
      padding: 12px 20px;
      border-radius: 999px;
      font-size: 14px;
      margin-bottom: 24px;
    }

    h1 {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -2px;
    max-width: 700px;
    }

    .hero p {
      margin-top: 24px;
      font-size: 20px;
      color: #cbd5e1;
      max-width: 600px;
    }

    .buttons {
      display: flex;
      gap: 16px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 16px 32px;
      border-radius: 16px;
      text-decoration: none;
      font-weight: 700;
      transition: 0.3s ease;
    }

    .btn-primary {
      padding: 18px 36px;
      font-size: 17px;
      font-weight: 800;
      border-radius: 18px;
      background: linear-gradient(135deg,#FF066C 0%,#d90059 100%);
      color: white;
      border: none;
      box-shadow: 0 15px 35px rgba(255,6,108,0.45);
    }

    .btn-primary:hover {
       transform: translateY(-2px);
       box-shadow: 0 15px 35px rgba(255,6,108,0.45);
    }

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
    }

    .btn-header {
      background: linear-gradient(135deg,#FF066C 0%,#d90059 100%);
      color: white;
      border: none;
      box-shadow: 0 10px 25px rgba(255,6,108,0.35);
    }

    .btn-header:hover {
      transform: translateY(-2px);
       box-shadow: 0 15px 35px rgba(255,6,108,0.45);
    }
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px;
    }

    .stat-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 24px;
      text-align: center;
    }

    .stat-card h3 {
      font-size: 32px;
      margin-bottom: 8px;
    }

    .lead-box {
       border-top: 6px solid #FF066C;
       box-shadow: 0 25px 60px rgba(0,0,0,0.15);
      background: white;
       transition: 0.3s;
      color: #111827;
      padding: 40px;
      border-radius: 32px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }

      .lead-box:hover {
    transform: translateY(-4px);
}

    .lead-box h2 {
      font-size: 36px;
      line-height: 1.2;
    }

    .lead-box p {
      color: #6b7280;
      margin-top: 12px;
      margin-bottom: 32px;
      font-size: 16px;
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid #d1d5db;
      font-size: 15px;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #FF066C;
      box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
    }

    .submit-btn {
      width: 100%;
      background: linear-gradient(135deg,#FF066C 0%,#d90059 100%);
      color: white;
      border: none;
      box-shadow: 0 10px 25px rgba(255,6,108,0.35);
      padding: 18px;
      border-radius: 18px;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 15px 35px rgba(255,6,108,0.45);
    }

    section {
      padding: 100px 0;
    }

    .section-title {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .section-title span {
      color: #FF066C;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .section-title h2 {
      margin-top: 16px;
      font-size: 44px;
      line-height: 1.2;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .card {
      background: white;
      padding: 32px;
      border-radius: 28px;
      border: 1px solid #e5e7eb;
      transition: 0.3s ease;
    }

    .card:hover {
      transform: translateY(-6px);
      border-color: #FF066C;
      box-shadow: 0 20px 40px rgba(255,6,108,0.12);
      }

    .card-number {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      background: rgba(255,6,108,0.1);
      color: #FF066C;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .card h3 {
      margin-bottom: 14px;
      font-size: 22px;
    }

    .gray {
      background: #f8fafc;
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .service-item {
      display: flex;
      align-items: center;
      gap: 18px;
      background: #f8fafc;
      padding: 18px;
      border-radius: 18px;
      margin-bottom: 16px;
    }

    .check {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #FF066C;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
    }

    .cta-box {
      background:  linear-gradient( 135deg, #FF066C 0%,#d90059 100%);
      box-shadow: 0 25px 50px rgba(255,6,108,0.30);
      color: white;
      padding: 50px;
      border-radius: 36px;
    }

    .cta-box h3 {
      font-size: 42px;
      line-height: 1.2;
      margin-top: 12px;
    }

    .testimonials {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial {
      background: white;
      border-radius: 28px;
      padding: 36px;
      border: 1px solid #e5e7eb;
    }

    .testimonial p {
      font-size: 18px;
      color: #374151;
    }

    .testimonial-author {
      margin-top: 28px;
      padding-top: 20px;
      border-top: 1px solid #e5e7eb;
    }

    .final-cta {
      background: #000000;
      color: white;
      text-align: center;
    }

    .final-cta h2 {
      font-size: 52px;
      line-height: 1.2;
    }

    .final-cta p {
      max-width: 800px;
      margin: 24px auto 0;
      color: #cbd5e1;
      font-size: 20px;
    }

    footer {
      background: black;
      color: #94a3b8;
      padding: 40px 0;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

     header {
      position: sticky;
      top: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255,6,108,0.15);
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .logo {
      color: #FFFFFF;
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .logo-header {
      color: #FFFFFF;
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -1px;
    }

    .logo-header span {
    color: #FF066C;
    }

    .trust-line {
    margin: 20px 0 30px;
}

.trust-line p {
    color: #059669;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

    @media (max-width: 992px) {
      .hero-grid,
      .services-grid,
      .cards,
      .testimonials {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 42px;
      }

      .section-title h2,
      .final-cta h2,
      .cta-box h3 {
        font-size: 36px;
      }

      .stats {
        grid-template-columns: 1fr;
      }

     
    }