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

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #1d191c;
    color: #7a7679;
    font-size: 12pt;
    font-weight: 400;
    direction: rtl;
    overflow-x: hidden;
    position: relative;
  }

  .highlight {
    color: #f41966;
  }
  
  #header { width:100%;display:table;padding:25px 8%;box-sizing:border-box;margin-bottom:40px; }
  #header > div { display:table-cell;vertical-align:middle; }
  #header > div:nth-child(1) { width:80px; }
  #header > div:nth-child(1) img { width:100%; }
  #header > div:nth-child(2) { text-align:center; }
  #header > div:nth-child(2) > a { margin:0px 15px; }
  #header > div:nth-child(2) > a:hover { color:#fff; }
  #header > div:nth-child(3) { text-align:left; }
  #header > div:nth-child(3) > a { background-color: #f41966;color:#fff;padding:15px 30px;border-radius:30px;font-weight:600;position:relative;
  box-shadow: 0 12px 30px rgba(244,25,102,0.35);transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  display:inline-block;vertical-align:middle; }
  #header > div:nth-child(3) > a:hover { transform:translateY(-3px);box-shadow:0 18px 40px rgba(244,25,102,0.5);
  background-color: #ff2c78; }
  
  #contacts_method > div { margin-top:15px; }
  #contacts_method a { display:inline-block;border-radius:20px;padding:10px 20px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); }

  /* Banner */
  .banner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 8% 40px;
    position: relative;
  }

  .banner-image {
    flex: 1 1 350px;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7679;
    position: relative;
      background-size:100%;
      background-image:url('../image/banner.png');
  }

  .banner-image::before {
    content: "";
    position: absolute;
    inset: -25px;
    border-radius: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(244,25,102,0.18), transparent 60%);
    z-index: -1;
    filter: blur(10px);
  }

  .banner-content {
    flex: 1 1 320px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f41966;
    font-size: 10.5pt;
    font-weight: 600;
    width: fit-content;
    padding: 6px 16px;
    border-radius: 20px;
    background-color: rgba(244,25,102,0.1);
  }

  .banner-content h1 {
    color: #fff;
    font-size: 50pt;
    font-weight: 800;
    line-height: 1;
      margin:0;
  }

  .banner-content h2 {
    color: #fff;
    font-size: 30pt;
    font-weight: 800;
    line-height: 1;
      margin:0;
  }

  .banner-content p {
    color: #7a7679;
    font-size: 12pt;
    font-weight: 400;
    line-height: 2.4;
  }

  .start-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f41966;
    color: #fff;
    text-decoration: none;
    padding: 15px 38px;
    border-radius: 30px;
    width: fit-content;
    font-size: 14pt;
    font-weight: 600;
    margin-top: 12px;
    box-shadow: 0 12px 30px rgba(244,25,102,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  }

  .start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(244,25,102,0.5);
    background-color: #ff2c78;
  }

  .start-btn:active {
    transform: translateY(0);
  }

  .start-btn .arrow {
    transition: transform 0.25s ease;
  }

  .start-btn:hover .arrow {
    transform: translateX(-4px);
  }

  /* Features */
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 8% 50px;
  }

  .feature-card {
    flex: 1 1 240px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border-radius: 18px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .feature-icon img {
      width:60px;
  }

  .feature-card h3 {
    color: #fff;
    font-size: 18pt;
    font-weight: 600;
      margin:10px 0px 0px;
  }

  .feature-card p {
    font-size: 12pt;
    line-height: 2;
    color: #7a7679;
  }
  
  
  .title {
      text-align:center;
      padding:40px 0px 20px;
  }
  
  .title > div:nth-child(1) {
      font-size:25pt;
      font-weight:600;
      color:#fff;
  }
  
  .title > div:nth-child(2) {
      width:90%;
      max-width:500px;
      margin:10px auto;
      line-height:2.4;
  }
  

  /* Prices */
  .prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 20px 8% 50px;
  }

  .price-card {
    flex: 1 1 240px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border-radius: 18px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
  
  .price-card > div:nth-child(1) {
      font-size:16pt;
      font-weight:600;
      color:#fff;
  }
  
  .price-card > div:nth-child(2) strike {
      margin-left:10px;
  }

  /* Footer */
  footer {
      
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 60px 8% 60px;
    margin-top: 30px;
    background-color:rgba(0,0,0,0.1);
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-logo {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.footer-logo img { width:100%; }

  .footer-right p {
    font-size: 12pt;
    color: #7a7679;
      margin-top:5px;
      line-height:2;
  }

.footer-right a { color:#fff;font-size:13pt; }

  .footer-box {
    width: 140px;
    height: 160px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    flex-shrink: 0;
  }
  
  
  .info-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 40px 8%;
    position: relative;
  }

  .info-banner-image {
    flex: 1 1 320px;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a7679;
    position: relative;
  }
  
  .info-banner-image > img {
      width:100%;
  }

  .info-banner-content {
    flex: 1 1 320px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .info-banner-content h1 {
    color: #fff;
    font-size: 30pt;
    font-weight: 800;
    line-height: 1;
      margin:0;
  }

  .info-banner-content h2 {
    color: #fff;
    font-size: 40pt;
    font-weight: 800;
    line-height: 1;
      margin:0;
      color:#f41966;
  }

  .info-banner-content p {
    color: #7a7679;
    font-size: 12pt;
    font-weight: 400;
    line-height: 2.4;
  }

  /* Responsive */
  @media (max-width: 1100px) {
    .banner-content h2 {
        font-size:20pt;
    }
      

    .info-banner {
      flex-direction: column;
      text-align: center;
      padding: 30px 6% 30px;
      gap:0px;
    }
    
    .info-banner-content {
      align-items: center;
    }
}
  @media (max-width: 900px) {
      #header { padding:25px 20px; }
      .banner {
      flex-direction: column;
      text-align: center;
      padding: 30px 6% 30px;
      gap:20px;
    }

    .banner-content {
      align-items: center;
    }

    .eyebrow {
      margin: 0 auto;
    }

    .banner-content h1 {
      font-size: 40pt;
    }

    .banner-content h2 {
      font-size: 15pt;
    }

    .start-btn {
      margin: 12px auto 0;
    }
  }
  @media (max-width: 800px) {

    #header > div:nth-child(2) { display:none; }
    .features {
      padding: 30px 6% 70px;
    }

    .feature-card {
      text-align: right;
    }

    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-right {
      align-items: center;
      order: 1;
    }

    .footer-box {
      order: 2;
    }
  }