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

    :root {
      --alpha-btn-text-font-family: "Roboto", Helvetica, Arial, sans-serif;
      --alpha-btn-text-font-size: 15px;
      --alpha-btn-text-font-weight: 700;
      --alpha-btn-text-line-height: 15px;
      --alpha-h2-font-family: "Noto Sans", Helvetica, Arial, sans-serif;
      --alpha-h2-font-size: 47px;
      --alpha-h2-font-weight: 700;
      --alpha-h2-line-height: 56.4px;
      --alpha-h4-font-family: "Noto Sans", Helvetica, Arial, sans-serif;
      --alpha-h4-font-size: 30px;
      --alpha-h4-font-weight: 700;
      --alpha-h4-line-height: 31.5px;
      --alpha-h5-font-family: "Noto Sans", Helvetica, Arial, sans-serif;
      --alpha-h5-font-size: 28px;
      --alpha-h5-font-weight: 700;
      --alpha-h5-line-height: 33.6px;
      --alpha-h6-font-family: "Noto Sans", Helvetica, Arial, sans-serif;
      --alpha-h6-font-size: 23px;
      --alpha-h6-font-weight: 700;
      --alpha-h6-line-height: 27.6px;
      --alpha-text-big-font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
      --alpha-text-big-font-size: 20px;
      --alpha-text-big-font-weight: 400;
      --alpha-text-big-line-height: 37.5px;
      --alpha-text-normal-font-family: "Noto Sans", Helvetica, Arial, sans-serif;
      --alpha-text-normal-font-size: 14px;
      --alpha-text-normal-font-weight: 400;
      --alpha-text-normal-line-height: 26.25px;
      --alphabrand-blue: rgba(0, 74, 152, 1);
      --alphamain-yellow-green: rgba(208, 223, 0, 1);
    }
    .hide{
      display: none !important;
    }
    .show{
      display: flex;
    }


    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      background: white;
      color: black;
      line-height: 1.5;
    }

    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 15px;
    }

    /* Header */
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px;
      background: var(--alphabrand-blue);
    }

    header img {
      height: 86px;
      object-fit: contain;
    }

    /* Button */
    .btn {
      align-self: flex-start;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 20px 48px;
      background: var(--alphamain-yellow-green);
      border: none;
      border-radius: 5px;
      font-family: var(--alpha-btn-text-font-family);
      font-size: var(--alpha-btn-text-font-size);
      font-weight: var(--alpha-btn-text-font-weight);
      line-height: var(--alpha-btn-text-line-height);
      color: black;
      cursor: pointer;
      transition: opacity 0.3s;
      white-space: nowrap;
      min-width: 200px;
    }

    .btn:hover {
      opacity: 0.9;
    }

    /* Hero Section */
    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 60px 15px;
      background: #f2faff;
    }

    .hero-content {
      display: flex;
      align-items: flex-start;
      gap: 80px;
      max-width: 1440px;
      width: 100%;
    }

    .hero-text {
      display: flex;
      flex-direction: column;
      gap: 40px;
      flex: 1;
    }

    .hero-text h1 {
      font-family: var(--alpha-h2-font-family);
      font-size: var(--alpha-h2-font-size);
      font-weight: var(--alpha-h2-font-weight);
      line-height: var(--alpha-h2-line-height);
      margin: 0;
    }

    .hero-text p {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
      margin: 0;
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 15px;
      border: 1px solid #cccccc;
      border-radius: 1000px;
      background: transparent;
      font-family: var(--alpha-text-normal-font-family);
      font-size: var(--alpha-text-normal-font-size);
      font-weight: var(--alpha-text-normal-font-weight);
      line-height: var(--alpha-text-normal-line-height);
    }

    .badge img {
      width: 24px;
      height: 24px;
    }

    .hero-image {
      width: 368px;
      height: 500px;
      object-fit: cover;
    }

    /* Problem Section */
    .problem-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 60px 15px;
      background: var(--alphabrand-blue);
      overflow: hidden;
    }

    .problem-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1440px;
      height: 478px;
      background: linear-gradient(135deg, rgba(0, 74, 152, 0.3) 0%, rgba(0, 74, 152, 0.1) 100%);
      opacity: 0.6;
    }

    .problem-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* background: rgba(255, 255, 255, 0.2); */
      background: url("../Blue-point-background.jpg") no-repeat ;
      background-size: cover;
      opacity: 0.6;
    }

    .problem-content {
      position: relative;
      z-index: 10;
      max-width: 1440px;
      width: 100%;
    }

    .problem-section h2 {
      font-family: var(--alpha-h2-font-family);
      font-size: var(--alpha-h2-font-size);
      font-weight: var(--alpha-h2-font-weight);
      line-height: var(--alpha-h2-line-height);
      color: white;
      margin: 0 0 20px 0;
    }

    .problem-section p {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
      color: white;
      margin: 0;
    }

    /* Solution Section */
    .solution-section {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 60px 15px;
      background: white;
    }

    .solution-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
      max-width: 1440px;
      width: 100%;
    }

    .solution-section h2 {
      font-family: var(--alpha-h2-font-family);
      font-size: var(--alpha-h2-font-size);
      font-weight: var(--alpha-h2-font-weight);
      line-height: var(--alpha-h2-line-height);
      margin: 0 0 40px 0;
    }

    .comparison {
      position: relative;
      display: flex;
      /* grid-template-columns: 1fr 1fr; */
      /* gap: 48px; */
      max-width: 1200px;
      margin: 0 auto;
      align-items: flex-start;
    }

    .card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
    }

    .card.traditional {
      border: 1px solid #cccccc;
      padding: 80px 0 80px 80px;
      align-self: center;
    }

    .card.revolutionary {
      background: var(--alphabrand-blue);
      padding: 120px 80px 120px 0;
      box-shadow: -10px 0px 24px rgba(0, 74, 152, 0.15);
    }

    .card-badge {
      display: inline-flex;
      padding: 10px 20px;
      border-radius: 100px;
      font-family: var(--alpha-h5-font-family);
      font-size: var(--alpha-h5-font-size);
      font-weight: var(--alpha-h5-font-weight);
      line-height: var(--alpha-h5-line-height);
      margin-bottom: 40px;
    }

    .card.traditional .card-badge {
      border: 1px solid black;
      color: black;
    }


    .card.revolutionary .card-badge {
      background: var(--alphamain-yellow-green);
      color: black;
      font-family: var(--alpha-h5-font-family);
      font-size: var(--alpha-h5-font-size);
      font-weight: var(--alpha-h5-font-weight);
      line-height: var(--alpha-h5-line-height);
    }

    .card-badge-left {
      padding-right: 80px;
    }

    #card-badge-right-title,
    .card-badge-right .card-badge,
    .card-badge-right .instruments {
      margin-left: 80px;
    }

    .card h3 {
      font-family: var(--alpha-h6-font-family);
      font-size: var(--alpha-h6-font-size);
      font-weight: var(--alpha-h6-font-weight);
      line-height: var(--alpha-h6-line-height);
      margin: 0 0 20px 0;
    }

    .card-bage-right-line {
      width: 80px !important;
      flex: 0 0 auto !important;
    }

    .card.traditional h3 {
      color: black;
    }

    .card.revolutionary h3 {
      color: white;
    }

    .instruments {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 40px;
    }

    .instruments span {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
    }

    .card.traditional .instruments span {
      color: black;
    }

    .card.revolutionary .instruments span {
      color: white;
      font-weight: 700;
      font-size: 20px;
    }

    .instruments-point {
      color: var(--alphamain-yellow-green) !important;
    }

    .features {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-item img {
      width: 32px;
      height: 32px;
    }

    .feature-item span {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
    }

    .card.traditional .feature-item span {
      color: black;
    }

    .card.revolutionary .feature-item {
      position: relative;
    }

    .card.revolutionary .feature-item span {
      color: white;
      font-weight: 700;
      font-size: 23px;
    }

    .card.revolutionary .feature-item img {
      width: 36px;
      height: 36px;
    }

    .feature-line {
      flex: 1;
      height: 2px;
      /* background: #cccccc; */
      border-bottom: 2px dashed #cccccc;
    }

    .upgrade-icons {
      position: absolute;
      left: calc(50% - 40px);
      top: 41%;
      display: flex;
      flex-direction: column;
      gap: 21px;
      z-index: 10;
    }

    .upgrade-icons img {
      width: 56px;
      height: 56px;
    }

    /* Benefits Section */
    .benefits-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 60px 15px;
      background: #f2faff;
      overflow: hidden;
    }

    .benefits-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1440px;
      height: 662px;
      background: linear-gradient(135deg, rgba(0, 74, 152, 0.1) 0%, rgba(242, 250, 255, 0.5) 100%);
    }

    .benefits-section::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(220deg, rgba(242, 250, 255, 0.1) 0%, rgba(242, 250, 255, 1) 100%);
    }

    .benefits-content {
      position: relative;
      z-index: 10;
      max-width: 1440px;
      width: 100%;
    }

    .benefits-section h2 {
      font-family: var(--alpha-h2-font-family);
      font-size: var(--alpha-h2-font-size);
      font-weight: var(--alpha-h2-font-weight);
      line-height: var(--alpha-h2-line-height);
      margin: 0 0 30px 0;
    }

    .benefits-content-container {
      display: flex
    }

    .timeline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      position: relative;
      margin-right: 30px;
    }

    .timeline::after {
      content: '';
      position: absolute;
      left: 50%;
      top: 24px;
      transform: translateX(-50%);
      width: 2px;
      height: 80%;
      /* background: linear-gradient(180deg, var(--alphabrand-blue) 0%, rgba(0, 74, 152, 0.3) 100%); */
      z-index: 0;
      border-right: 2px dashed #AAC5E1;
    }

    .timeline-step {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      font-family: monospace;
      font-weight: 700;
      font-size: 20px;
      color: white;
      position: relative;
      z-index: 1;
      cursor: pointer;
      background: #AAC5E1;
    }

    .timeline-step.active {
      background: var(--alphabrand-blue);
    }

    .benefit-card-container{
      display: none;
    }
    .benefit-card-container.active{
      display: block;
    }
    .benefit-card {
      flex: 1;
      background: white;
      display: flex;
      overflow: hidden;
      position: relative;
    }
    

    .arrow-blocks {
      position: absolute;
      right: 40px;
      top: 40px;
    }
    .arrow-item{
      display: inline-block;
      margin-right: 14px;
      transform: scaleY(1.5);
      font-size: 30px;
      cursor: pointer;
    }
    .arrow-gray{
      color: #D8D8D8;
    }
    .arrow-blue{
      color: #004A98;
    }
    .benefit-card img.benefit-image, 
    .benefit-card .benefit-video,
    .benefit-card div.benefit-content
    {
      width: 585px;
      height: 438.75px;
      
    }
    .video-js{
      width: 100%;
      height: 100%
    }
    .img.benefit-image{
      object-fit: cover;
    }
    .benefit-content{
      background: 
    }


    .benefit-text {
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 92px 40px 40px;
      flex: 1;
    }

    .benefit-text h3 {
      font-family: var(--alpha-h4-font-family);
      font-size: var(--alpha-h4-font-size);
      font-weight: var(--alpha-h4-font-weight);
      line-height: var(--alpha-h4-line-height);
      margin: 0;
    }

    .benefit-text .benefit-bottom-line{
      width: 100px;
      height: 5px;
      background: var(--alphamain-yellow-green);
    }

    .benefit-text p {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
      margin: 0;
      flex: 1;
    }
    #benefit-slide-3-p{
      flex: 0;
    }

    .benefit-link {
      display: inline-flex;
      align-items: center;
      font-size: 20px;
      color: #004a98;
      text-decoration: none;
      transition: text-decoration 0.3s;
    }

    .benefit-link:hover {
      text-decoration: underline;
    }

    .benefit-link::after {
 
      content: '>';
      font-size: 20px;
    }

    .benefit-small-img{
      width: 67px;
      margin-right: 10px;
    }

    /* Form Section */
    .form-section {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 60px 15px;
      overflow: hidden;
    }

    .form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--alphabrand-blue);
    }

    .form-section::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 1440px;
      height: 1388px;
      background: radial-gradient(circle, rgba(0, 74, 152, 0.8) 0%, rgba(0, 74, 152, 1) 100%);
    }

    .form-header {
      position: relative;
      z-index: 10;
      text-align: center;
      max-width: 1440px;
      width: 100%;
    }

    .form-section h2 {
      font-family: var(--alpha-h2-font-family);
      font-size: var(--alpha-h2-font-size);
      font-weight: var(--alpha-h2-font-weight);
      line-height: var(--alpha-h2-line-height);
      color: white;
      margin: 0 0 20px 0;
    }

    .form-section .form-header p {
      font-family: var(--alpha-text-big-font-family);
      font-size: var(--alpha-text-big-font-size);
      font-weight: var(--alpha-text-big-font-weight);
      line-height: var(--alpha-text-big-line-height);
      color: white;
      margin: 0;
    }

    .form-container {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      max-width: 800px;
      width: 100%;
    }

    .form-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 15px;
      background: #003d7a;
    }

    .form-title h3 {
      font-family: var(--alpha-h4-font-family);
      font-size: var(--alpha-h4-font-size);
      font-weight: var(--alpha-h4-font-weight);
      line-height: var(--alpha-h4-line-height);
      color: white;
      margin: 0;
    }

    /* .language {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: white;
    } */

    .form-body {
      display: flex;
      flex-direction: column;
      gap: 30px;
      padding: 40px;
      background: #f2faff;
    }

    .form-section-group {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-section-label {
      font-size: 12px;
      color: #a8abb2;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-fields {
      display: flex;
      flex-wrap: wrap;
      gap: 30px 20px;
    }

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: calc(50% - 10px);
      flex: 1;
    }

    .form-field label {
      font-weight: 600;
      font-size: 16px;
      color: black;
    }

    .required {
      color: #ff0000;
    }

    .form-field input,
    .form-field select {
      width: 100%;
      padding: 12px;
      background: white;
      border: 1px solid #dcdfe6;
      border-radius: 5px;
      font-size: 14px;
      color: #333;
    }

    .form-field input::placeholder {
      color: #a8abb2;
    }

    .form-field input:focus,
    .form-field select:focus {
      outline: none;
      border-color: var(--alphabrand-blue);
    }

    .radio-group {
      display: flex;
      gap: 20px;
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .radio-option input[type="radio"] {
      width: 18px;
      height: 18px;
      margin: 0;
      cursor: pointer;
    }

    .radio-option label {
      font-size: 14px;
      color: black;
      font-weight: normal;
      cursor: pointer;
    }

    .divider {
      width: 100%;
      height: 1px;
      background: #dcdfe6;
    }

    .submit-btn {
      width: 100%;
      padding: 20px 15px;
      background: var(--alphamain-yellow-green);
      border: none;
      font-family: var(--alpha-btn-text-font-family);
      font-size: var(--alpha-btn-text-font-size);
      font-weight: var(--alpha-btn-text-font-weight);
      line-height: var(--alpha-btn-text-line-height);
      color: black;
      cursor: pointer;
      transition: opacity 0.3s;
      position: relative;
    }

    .submit-btn:hover {
      opacity: 0.9;
    }

    .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .form-message {
      padding: 15px;
      border-radius: 5px;
      margin-top: 20px;
      text-align: center;
      font-weight: 600;
    }

    .form-message.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }

    .form-message.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }

    /* Footer */
    footer {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
      background: #e7e7e7;
    }

    footer span {
      font-size: 63px;
      color: #d0d0d0;
      font-weight: 300;
    }
    /* .captcha .captchaTxt{
      font-size: 14px;
    }
    .captcha #catpchaAns{
      width: 24px;
      height: 24px;
      border: 1px solid #dcdfe6;
    } */
     .captchaQ{
      font-size: 12px;
     }
    #catpchaAns{
      width: 90px;
    } 
    

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-content {
        /* flex-direction: column; */
        gap: 40px;
        align-items: center
      }

      .hero-image {
        width: 100%;
        max-width: 368px;
      }

      .comparison {
        /* grid-template-columns: 1fr; */
        width: 100%;
        flex-direction: column;
      }

      .upgrade-icons {
        display: none;
      }

      .benefits-content {
        flex-direction: column;
      }

      .benefit-card {
        flex-direction: column;
      }


      .benefit-card img.benefit-image{
        width: 100%;
        height: auto;
      }
       .benefit-card .benefit-video{
        width: 100%;
        height: auto;
        position: relative;
       }
       .benefit-card .benefit-video::after{
        display: block;
        content: '';
        padding-top: 66%;
       }
       #my-video,#my-video2{
        position: absolute;
        left: 0;
        top: 0;
       }

      .feature-line{
        display: none;
      }
      .solution-section h2 , .card-badge,#card-badge-right-title, .card-badge-right .instruments{
        margin: 0;
      }
      .card-badge-right .card-badge, .traditional .card-badge{
        margin: 0 0 40px;
      }
      .card.traditional,.card.revolutionary {
        padding: 0;
        width: 100%;
        margin-bottom: 40px;
      }
      .benefit-text{
        padding: 30px 40px 40px;
      }
    }

    @media (max-width: 768px) {
      :root {
        --alpha-h2-font-size: 32px;
        --alpha-h2-line-height: 40px;
        --alpha-h4-font-size: 24px;
        --alpha-h4-line-height: 28px;
      }
      .btn{
        font-size: 17px;
      }
      .hero-content{
        flex-direction: column;
      }
      .hero-image{
        width: 70%;
        height: auto;
      }   
      .card.traditional,
      .card.revolutionary {
        padding: 40px 0 40px 10px;
      }

      .arrow-blocks{
        display: none;
      }

      .form-fields {
        flex-direction: column;
      }

      .form-field {
        min-width: 100%;
      }
      .timeline::after{
        display: none;
      }

    }
