@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300..700&family=Inter:wght@400..700&display=swap');

:root {
  --primary-fonts: "Montserrat", sans-serif;
  --secondary-fonts: "Inter", sans-serif;
  --primary-color: #4400a3;
  --secondary-color: #00d4b5;
  --link-color: #6905f2;
  --heading-color: #111111;
  --content-color: #111111;
  --bg-grey: #e9dafd;
  --error-color: #ff1744;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--primary-fonts);
  color: var(--content-color);
  background: #ffffff;
}

h1, h2, h3 {
  font-family: var(--secondary-fonts);
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--primary-color);
}

button {
  font-family: inherit;
}

.gr-section {
  padding: 64px 24px;
}

.gr-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.gr-wrap-wide {
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .gr-section {
    padding: 40px 20px;
  }
}

/* Header */
.gr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: var(--primary-color);
  flex-wrap: wrap;
  gap: 12px;
}

.gr-header img {
  height: 32px;
  width: auto;
}

.gr-header span {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

/* Hero */
.gr-breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}

.gr-pill {
  display: inline-block;
  background: var(--bg-grey);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.gr-hero h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 20px;
}

.gr-hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  max-width: 720px;
  margin: 0 0 28px;
}

.gr-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.gr-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 13px 28px;
  font-weight: 700;
  font-family: var(--secondary-fonts);
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
}

.gr-jump-link {
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
}

/* Status banner */
.gr-status-banner {
  background: var(--bg-grey);
  padding: 28px 24px;
}

.gr-status-banner .title {
  font-family: var(--secondary-fonts);
  font-weight: 800;
  font-size: 19px;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.gr-status-banner .body {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Headings shared across sections */
.gr-h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 12px;
}

.gr-lede {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 24px;
}

/* Recap table */
.gr-recap-table {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
}

.gr-recap-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
}

.gr-recap-row:last-child {
  border-bottom: none;
}

.gr-recap-row .label {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 14px;
}

.gr-recap-row .value {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Card grids */
.gr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.gr-card-grid-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.gr-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 22px;
  background: #ffffff;
}

.gr-card .icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.gr-card .title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 8px;
}

.gr-card .desc {
  font-size: 14px;
  color: #555;
  line-height: 1.55;
}

.gr-card-slim {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 20px;
}

.gr-card-slim .title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
  margin-bottom: 8px;
}

.gr-card-slim .title.primary {
  color: var(--primary-color);
}

.gr-card-slim .desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
}

/* Eligibility exclusions */
.gr-eligibility-bg {
  background: #fafafa;
  padding: 64px 24px;
}

.gr-exclusion-box {
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 20px 24px;
  background: #ffffff;
}

.gr-exclusion-box .heading {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.gr-exclusion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gr-exclusion-list .item {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  display: flex;
  gap: 10px;
}

.gr-exclusion-list .item .bullet {
  color: var(--primary-color);
}

/* Why not best option */
.gr-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gr-reason {
  border-left: 4px solid var(--primary-color);
  padding: 4px 0 4px 20px;
}

.gr-reason .title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 16px;
  margin-bottom: 6px;
}

.gr-reason .desc {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

/* Concern tabs */
.gr-concerns-bg {
  background: var(--bg-grey);
  padding: 64px 24px;
}

.gr-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gr-tab {
  background: #ffffff;
  color: var(--heading-color);
  border: 1px solid #d8cdf0;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--secondary-fonts);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.gr-tab.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.gr-concern-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
}

.gr-concern-panel .title {
  font-weight: 800;
  color: var(--heading-color);
  font-size: 19px;
  margin-bottom: 12px;
  font-family: var(--secondary-fonts);
}

.gr-concern-panel .body {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  white-space: pre-line;
}

/* Court claims */
.gr-court-footnote {
  margin-top: 24px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

/* Do not accept */
.gr-do-not-accept {
  background: #fff5f6;
  padding: 56px 24px;
  border-top: 1px solid #ffd9dd;
  border-bottom: 1px solid #ffd9dd;
}

.gr-do-not-accept h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--error-color);
  margin: 0 0 6px;
}

.gr-do-not-accept .warn {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.gr-do-not-accept .points {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gr-do-not-accept .points div {
  font-size: 14.5px;
  color: #444;
  line-height: 1.6;
}

/* Summary */
.gr-summary-bg {
  background: var(--bg-grey);
  padding: 64px 24px;
}

.gr-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.gr-summary-card {
  display: flex;
  gap: 14px;
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
}

.gr-summary-card .num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.gr-summary-card .title {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 15px;
  margin-bottom: 4px;
}

.gr-summary-card .desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
}

/* Contact us */
.gr-contact {
  text-align: center;
}

.gr-contact p {
  font-size: 15px;
  color: #444;
  margin: 0 0 6px;
}

.gr-contact .note {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}

.gr-contact .addr {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 17px;
}

/* Confirm form */
.gr-confirm-bg {
  background: #f7f5fb;
  padding: 64px 24px;
}

.gr-confirm-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.gr-confirm-icon {
  text-align: center;
  margin-bottom: 8px;
  font-size: 22px;
}

.gr-confirm-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color);
  text-align: center;
  margin: 0 0 10px;
}

.gr-confirm-wrap > p {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 0 0 28px;
  line-height: 1.6;
}

.gr-panel {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 28px;
}

.gr-panel + .gr-panel {
  margin-top: 32px;
}

.gr-panel-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 6px;
}

.gr-panel-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 14px;
}

.gr-lender-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.gr-lender-tab {
  background: #ffffff;
  color: var(--heading-color);
  border: 2px solid #d8cdf0;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--secondary-fonts);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.gr-lender-tab.active {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.gr-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gr-field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.gr-field-label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.gr-copy-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.gr-field-value {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fafafa;
}

.gr-field-value.body {
  padding: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  white-space: pre-line;
}

.gr-copy-full {
  width: 100%;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-weight: 700;
  font-family: var(--secondary-fonts);
  font-size: 15px;
  cursor: pointer;
  margin-top: 22px;
}

.gr-copy-hint {
  font-size: 12.5px;
  color: #999;
  text-align: center;
  margin-top: 10px;
}

.gr-send-hint {
  font-size: 13px;
  color: #777;
  margin-bottom: 18px;
}

.gr-lender-send-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gr-lender-send-card {
  background: var(--bg-grey);
  border-radius: 10px;
  padding: 18px 20px;
}

.gr-lender-send-card .meta {
  color: var(--heading-color);
  font-size: 14.5px;
  margin-bottom: 12px;
}

.gr-lender-send-card .meta .agreement {
  color: #6b5a8a;
}

.gr-send-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  cursor: pointer;
  font-family: var(--secondary-fonts);
  text-decoration: none;
}

.gr-multi-lender-warning {
  margin-top: 14px;
  background: #fdf3dd;
  border-left: 4px solid #e0a52c;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #7a5a15;
  text-align: center;
}

.gr-already-sent {
  margin-top: 14px;
  background: #f2eefa;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

.gr-already-sent strong {
  color: var(--heading-color);
}

.gr-confirm-footnote {
  font-size: 12.5px;
  color: #888;
  text-align: center;
  margin-top: 20px;
  line-height: 1.6;
}

.gr-confirm-state {
  text-align: center;
  font-size: 14px;
  color: #666;
  padding: 20px 0;
}

.gr-confirm-state.error {
  color: var(--error-color);
  font-weight: 600;
}

/* Why choose us */
.gr-why h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color);
  text-align: center;
  margin: 0 0 8px;
}

.gr-why > p {
  font-size: 15px;
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Footer */
.gr-footer {
  border-top: 1px solid #ececec;
  padding: 40px 24px;
  background: #fafafa;
}

.gr-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gr-footer-brand {
  font-family: var(--secondary-fonts);
  font-weight: 800;
  font-size: 18px;
  color: var(--heading-color);
}

.gr-footer-legal {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  max-width: 760px;
}
