/* ===== PAGE WRAPPER ===== */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff!important;
  color: #222;
}



/* ===== HEADER ===== */
.payment-header {
  text-align: center;
  margin-bottom: 35px;
}

.logo {
  height: 70px;
  margin-bottom: 15px;
}


.subtitle {
  margin-top: 6px;
  font-size: 16px;
  color: #555;
}

/* Grid system */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

/* Labels */
label {
  font-weight: 600;
  margin-bottom: 6px;
}

/* Inputs */
.form-input,
iframe {
  height: 42px;
  padding: 8px 12px;
  font-size: 15px;
  border: 1px solid #cfd6dc;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
}

iframe {
  border: 1px solid #cfd6dc;
}

/* ===== BUTTON ===== */
.pay-button {
  width: 100%;
  padding: 15px;
  font-size: 17px;
  background: #0b4dbb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.pay-button:hover {
  background: #083c93;
}

/* ===== FOOTER NOTE ===== */
.security-note {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
   .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .logo {
    height: 60px;
  }
}
.grecaptcha-badge {
  visibility: hidden !important;
}
/* ===============================
   PAY BUTTON – NORMAL STATE
   =============================== */
button.pay-button {
  background: #0b3ea8;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s ease;
}

/* Hover ONLY when enabled */
button.pay-button:not(:disabled):hover {
  background: #092f7a;
}

/* ===============================
    LOCKED / DISABLED STATE
   =============================== */
button.pay-button:disabled,
button.pay-button:disabled:hover,
button.pay-button:disabled:focus,
button.pay-button:disabled:active {
  background: #b8b8b8 !important;
  color: #ffffff !important;

  cursor: not-allowed !important;
  pointer-events: none !important;

  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* ===============================
   ELEMENTOR OVERRIDE KILL
   =============================== */
.elementor button.pay-button:disabled,
.elementor button.pay-button:disabled:hover {
  background: #b8b8b8 !important;
  cursor: not-allowed !important;
}
/* ===============================
   ABSOLUTELY DEAD PAY BUTTON
   =============================== */
button.pay-button[data-locked="true"],
button.pay-button[data-locked="true"]:hover,
button.pay-button[data-locked="true"]:active,
button.pay-button[data-locked="true"]:focus,
.elementor button.pay-button[data-locked="true"],
.elementor button.pay-button[data-locked="true"]:hover {
  background: #b5b5b5 !important;
  color: #ffffff !important;

  cursor: not-allowed !important;
  pointer-events: none !important;

  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

.record-requirements {
  background: #f8f9fb;
  border: 1px solid #dcdfe4;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #333;
}

.record-requirements h3 {
  margin-top: 0;
  font-size: 16px;
  color: #1f2a44;
}

.record-requirements ul {
  margin: 12px 0;
  padding-left: 18px;
}

.record-requirements li {
  margin-bottom: 6px;
}

.record-requirements .warning-text {
  color: #7a1f1f;
}

.record-requirements .note {
  font-size: 13px;
  color: #555;
}

/* ===============================
   AGREEMENT SECTION (CLEAN)
   =============================== */

.agreement-box {
  margin: 20px 0 14px;
  padding: 14px 16px;
  background: #f9fafc;
  border: 1px solid #e1e6ef;
  border-radius: 8px;
}

.agreement-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
}

.agreement-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
}

.agreement-label a {
  color: #0b4dbb;
  font-weight: 600;
  text-decoration: underline;
}

.agreement-label a:hover {
  text-decoration: none;
}

/* Clarification text */
.agreement-note {
  margin: 10px 0 0 32px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

/* ===============================
   MOBILE POLISH
   =============================== */
@media (max-width: 480px) {
  .agreement-label {
    font-size: 16px;
  }

  .agreement-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
  }

  .agreement-note {
    margin-left: 0;
    padding-left: 32px;
  }
}




/*Form Updates*/

/* Veteran yes/no toggle */
.veteran-toggle {
  margin-top: 12px;
}

.veteran-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.veteran-options {
  display: flex;
  gap: 12px;
}

.veteran-option {
  position: relative;
  cursor: pointer;
}

.veteran-option input {
  display: none;
}

.veteran-option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  font-weight: 500;
  min-width: 72px;
  transition: all 0.2s ease;
}

/* Selected state */
.veteran-option input:checked + span {
  background: #111845; /* navy */
  color: #fff;
  border-color: #111845;
  box-shadow: 0 4px 10px rgba(17,24,69,0.25);
}

/* Hover */
.veteran-option span:hover {
  border-color: #111845;
}

@media (max-width: 600px) {
  .veteran-options {
    flex-direction: column;
  }

  .veteran-option span {
    width: 100%;
  }
}


/*page 2*/

.what-you-get {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

.what-you-get h3 {
  margin-bottom: 10px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.benefits-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.benefits-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}


.reviews-snippet {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.reviews-snippet h4 {
  margin-bottom: 8px;
}

.review {
  margin-bottom: 10px;
  color: #374151;
}


/* =========================
   WHAT YOU RECEIVE - MOBILE FIX
   ========================= */
@media (max-width: 768px) {

  .what-you-get {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 18px;
  }



  .benefit-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 8px;
  }

  .benefit-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .benefit-card p {
    font-size: 13px;
    line-height: 1.4;
  }

}
@media (max-width: 768px) {



  .benefit-icon {
    margin-bottom: 8px;
  }

}

/* 📱 Mobile layout */
@media (max-width: 768px) {


  .benefit-icon {
    margin-bottom: 10px;
  }
}



/* 📱 Stack icon on top */
@media (max-width: 768px) {


  .benefit-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {

  body {
    background: #ffffff;
  }


}
html, body {
  overflow-x: hidden;
}


/* =========================
   MOBILE BUTTON IMPROVEMENT
   ========================= */
@media (max-width: 768px) {

  /* Stack buttons vertically instead of side-by-side */
  #screen-info div[style*="display:flex"],
  #screen-service div[style*="display:flex"],
  #screen-delivery div[style*="display:flex"] {
    flex-direction: column;
  }

  .pay-button {
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
  }

  .pay-button + .pay-button {
    margin-top: 10px;
  }

}
.veteran-option span {
  padding: clamp(6px, 2vw, 10px) clamp(12px, 4vw, 18px);
  font-size: clamp(14px, 3vw, 16px);
  min-width: auto;
}


* {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}



