.elementor-145678 .elementor-element.elementor-element-f4c09a1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-145678 .elementor-element.elementor-element-f4c09a1{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-f721d81 */#tax-season-page {
  color: #ffffff;
  font-family: 'Red Hat', sans-serif;
  overflow: hidden;
  padding: 60px 30px;

  .gradient-text {
    background: linear-gradient(
      135deg,
      #5826c3,
      #a855f7,
      #1ee66e,
      #5826c3
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
  }

  /* ---- HERO ---- */
  #tax-hero {
    position: relative;
    padding: 56px 20px 40px;
    text-align: center;
    background: url('https://cdn.coinme.com/wp-content/uploads/2024/03/tax_page_bg.webp')
      center/cover no-repeat;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(19, 12, 52, 0.94);
      z-index: 0;
    }

    .bg-glow {
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(
        circle,
        rgba(88, 38, 195, 0.15) 0%,
        rgba(30, 230, 110, 0.05) 40%,
        transparent 70%
      );
      pointer-events: none;
      z-index: 1;
    }

    .container {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      z-index: 1;
    }

    .badge {
      display: inline-block;
      padding: 8px 22px;
      background: #5826c3;
      color: #ffffff;
      font-family: 'Red Hat', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      border-radius: 50px;
      animation: badgePulse 2s ease-in-out infinite;
    }

    h1 {
      font-family: 'Red Hat', sans-serif;
      font-size: 40px;
      font-weight: 700;
      line-height: 1.15;
      margin: 24px 0 16px;
      color: #ffffff;

      .highlight {
        background: linear-gradient(
          135deg,
          #1ee66e,
          #61ed99
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
    }

    p {
      font-family: 'Red Hat', sans-serif;
      font-size: 16px;
      line-height: 1.65;
      color: #ffffffdd;
      max-width: 520px;
      margin: 0 auto;

      a {
        color: inherit;
        text-decoration: underline;
      }
    }
  }

  /* ---- HOW IT WORKS ---- */
  #tax-steps {
    padding: 32px 20px 36px;
    background: #f9f9f9;

    .container {
      max-width: 760px;
      margin: 0 auto;
    }

    h2 {
      font-family: 'Red Hat', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 24px;
      color: #130c34;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .card {
      position: relative;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 16px;
      padding: 20px 16px 18px;
      text-align: center;
      box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.08);
      opacity: 0;
      transform: translateY(20px);
      transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        box-shadow 0.3s ease;

      &:nth-child(2) {
        transition-delay: 0.15s;
      }
      &:nth-child(3) {
        transition-delay: 0.3s;
      }

      &.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      &:hover {
        transform: translateY(-3px);
        box-shadow: 5px 5px 25px rgba(88, 38, 195, 0.15);
      }

      .number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #5826c3;
        color: #ffffff;
        font-family: 'Red Hat', sans-serif;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
      }

      h3 {
        font-family: 'Red Hat', sans-serif;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 4px;
        color: #130c34;
      }

      p {
        font-family: 'Red Hat', sans-serif;
        font-size: 13px;
        line-height: 1.5;
        color: #5a5571;
      }
    }
  }

  /* ---- FORM ---- */
  #tax-form-section {
    padding: 48px 20px;
    background: #130c34;
    position: relative;

    .bg-glow {
      position: absolute;
      bottom: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(
        circle,
        rgba(88, 38, 195, 0.1) 0%,
        transparent 70%
      );
      pointer-events: none;
    }

    .container {
      position: relative;
      max-width: 580px;
      margin: 0 auto;
      z-index: 1;
    }

    .card {
      background: rgba(26, 19, 84, 0.6);
      border: 1px solid rgba(88, 38, 195, 0.25);
      border-radius: 24px;
      padding: 36px;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    h2 {
      font-family: 'Red Hat', sans-serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #ffffff;
    }

    .card > p {
      font-family: 'Red Hat', sans-serif;
      font-size: 15px;
      line-height: 1.6;
      color: #FFF;
      margin-bottom: 24px;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      width: 0;
    }

    label {
      display: block;
      font-family: 'Red Hat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #b0adc0;
      text-align: left;
      margin-bottom: 6px;
    }

    input[type='email'] {
      display: block;
      width: 100%;
      padding: 14px 16px;
      font-family: 'Red Hat', sans-serif;
      font-size: 15px;
      color: #ffffff;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 12px;
      outline: none;
      transition:
        border-color 0.2s ease,
        background 0.2s ease;

      &::placeholder {
        color: rgba(176, 173, 192, 0.6);
      }

      &:focus {
        border-color: #5826c3;
        background: rgba(255, 255, 255, 0.1);
      }
    }

    button[type='submit'] {
      display: block;
      width: 100%;
      margin-top: 12px;
      padding: 14px;
      font-family: 'Red Hat', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      background: #5826c3;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition:
        background 0.2s ease,
        transform 0.2s ease;

      &:hover {
        background: #5826c3dd;
      }

      &:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
      }
    }

    #tax-response-message {
      display: none;
      margin-bottom: 16px;
      padding: 0 16px;
      border-radius: 12px;
      background: rgba(30, 230, 110, 0.1);
      border: 1px solid rgba(30, 230, 110, 0.25);
      font-family: 'Red Hat', sans-serif;
      font-size: 14px;
      line-height: 1.5;
      color: #1ee66e;
      white-space: pre-line;
      text-align: center;

      &.visible {
        display: block;
      }

      &.error {
        background: rgba(235, 87, 87, 0.1);
        border-color: rgba(235, 87, 87, 0.3);
        color: #eb5757;
      }
    }
  }
  
  #tax-response-message-content {
      margin: 0;
  }

  /* ---- DISCLAIMER ---- */
  #tax-disclaimer {
    padding: 40px 20px;
    background: #130c34;
    border-top: 1px solid rgba(255, 255, 255, 0.05);

    .container {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    p {
      font-family: 'Red Hat', sans-serif;
      font-size: 13px;
      line-height: 1.75;
      color: #b0adc0;
    }

    a {
      color: #b0adc0;
      text-decoration: underline;
      text-underline-offset: 2px;
      transition: color 0.2s ease;

      &:hover {
        color: #61ed99;
      }
    }
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(88, 38, 195, 0.5);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(88, 38, 195, 0);
  }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  #tax-season-page {
    padding: 60px 20px;
  }

  #tax-hero h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #tax-season-page {
    #tax-hero {
      padding: 48px 20px 32px;

      h1 {
        font-size: 28px;
      }
      p {
        font-size: 15px;
      }
    }

    #tax-steps {
      padding: 24px 20px 28px;

      h2 {
        font-size: 20px;
        margin-bottom: 18px;
      }

      .grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto;
      }

      .card {
        padding: 16px 16px 14px;
      }
    }

    #tax-form-section {
      padding: 40px 20px;

      .card {
        padding: 28px 20px;
      }
      h2 {
        font-size: 24px;
      }
    }
  }
}

@media (max-width: 360px) {
  #tax-season-page #tax-hero {
    h1 {
      font-size: 24px;
    }

    .badge {
      font-size: 10px;
      padding: 6px 16px;
      letter-spacing: 2px;
    }
  }
}/* End custom CSS */