*{
     font-family: "Poppins", sans-serif;
}

/* Make Tailwind hover scale effects animate smoothly across all pages */
[class*="hover:scale-"] {
  transition: transform 300ms ease-in-out;
  will-change: transform;
}

.pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .pricing-card {
      transition: all 0.4s ease;
      transform: scale(1);
    }

    /* When hovering over card 1 */
    .pricing-grid:has(.card-1:hover) .card-2,
    .pricing-grid:has(.card-1:hover) .card-3 {
      transform: scale(0.92);
      opacity: 0.7;
    }

    .pricing-grid:has(.card-1:hover) .card-1 {
      transform: scale(1.05);
      z-index: 10;
    }

    /* When hovering over card 2 */
    .pricing-grid:has(.card-2:hover) .card-1,
    .pricing-grid:has(.card-2:hover) .card-3 {
      transform: scale(0.92);
      opacity: 0.7;
    }

    .pricing-grid:has(.card-2:hover) .card-2 {
      transform: scale(1.05);
      z-index: 10;
    }

    /* When hovering over card 3 */
    .pricing-grid:has(.card-3:hover) .card-1,
    .pricing-grid:has(.card-3:hover) .card-2 {
      transform: scale(0.92);
      opacity: 0.7;
    }

    .pricing-grid:has(.card-3:hover) .card-3 {
      transform: scale(1.05);
      z-index: 10;
    }

    @media (max-width: 1023px) {
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px) {
      .pricing-grid {
        grid-template-columns: 1fr;
      }
    }

    /* HubSpot form overrides to keep UI consistent */
    #hubspot-form .hbspt-form,
    #hubspot-form form.hs-form {
      font-family: inherit !important;
      color: #0f172a !important; /* text-slate-900 */
      width: 100% !important;
    }

    #hubspot-form form {
      display: grid !important;
      gap: 1rem !important;
      align-content: start !important;
    }

    #hubspot-form .hs-form-field {
      margin-bottom: 0 !important;
    }

    #hubspot-form label {
      display: block !important;
      margin-bottom: 0.4rem !important;
      color: #fff !important; /* slate-700 */
      font-weight: 600 !important;
    }

    #hubspot-form input[type="text"],
    #hubspot-form input[type="email"],
    #hubspot-form input[type="tel"],
    #hubspot-form textarea,
    #hubspot-form select {
      width: 100% !important;
      padding: 0.625rem 0.75rem !important;
      border: 1px solid #d1d5db !important; /* gray-300 */
      border-radius: 0.375rem !important; /* rounded-md */
      background: #ffffff !important;
      box-sizing: border-box !important;
      font-size: 0.875rem !important;
      color: #0f172a !important;
    }

    #hubspot-form textarea {
      min-height: 140px !important;
      resize: vertical !important;
    }

    #hubspot-form .actions,
    #hubspot-form .hs_submit {
      margin: 0 !important;
      padding: 0 !important;
    }

    #hubspot-form .hs-button,
    #hubspot-form input[type="submit"],
    #hubspot-form button[type="submit"] {
      background: #000 !important;
      color: #fff !important;
      padding: 0.8rem 1.5rem !important;
      border-radius: 9999px !important;
      border: none !important;
      cursor: pointer !important;
      width: fit-content !important;
    }

    #hubspot-form .hs-error-msgs {
      color: #dc2626 !important; /* red-600 */
    }

    /* Make HubSpot-embedded widths responsive inside column */
    #hubspot-form {
      width: 100% !important;
    }

    #hubspot-form-index label {
    display: block !important;
    margin-bottom: 0.4rem !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    }

    #hubspot-form-index input[type="text"],
    #hubspot-form-index input[type="email"],
    #hubspot-form-index input[type="tel"],
    #hubspot-form-index textarea,
    #hubspot-form-index select {
    width: 100% !important;
    padding: 0.625rem 0.75rem !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.375rem !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
    font-size: 0.875rem !important;
    color: #0f172a !important;
    }

    #hubspot-form-index .hs-button,
    #hubspot-form-index input[type="submit"],
    #hubspot-form-index button[type="submit"] {
    background: #000 !important;
    color: #fff !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 9999px !important;
    border: none !important;
    cursor: pointer !important;
    width: fit-content !important;
    }

    #hubspot-form-index .hs-error-msgs {
    color: #dc2626 !important;
    }

    #hubspot-form-index {
    width: 100% !important;
    }

    .grid-pattern {
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 40px 40px;
    }