:root {
  --ink: #102536;
  --muted: #617283;
  --blue: #075e86;
  --blue-2: #0b7daa;
  --red: #f25d70;
  --red-deep: #ce314c;
  --cyan: #dff6ff;
  --paper: #ffffff;
  --soft: #f3f8fb;
  --line: #d8e7ee;
  --shadow: 0 24px 60px rgba(16, 37, 54, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

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

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

p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(250px, 56vw);
}

.rapid-brand {
  display: grid;
  gap: 2px;
}

.rapid-brand strong {
  color: var(--blue);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}

.rapid-brand span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 14px;
}

.site-nav a {
  color: var(--ink);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue-2);
}

.nav-cta {
  padding: 11px 16px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--blue), var(--red));
  border-radius: 8px;
}

.language-select {
  min-height: 40px;
  width: auto;
  padding: 8px 34px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0b2534;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 42, 0.93), rgba(8, 29, 42, 0.7) 48%, rgba(8, 29, 42, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 96px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(44px, 7vw, 86px);
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
}

h3 {
  font-size: 23px;
}

.hero p {
  max-width: 700px;
  color: #d8eaf1;
  font-size: clamp(18px, 2vw, 22px);
}

.button-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16, 37, 54, 0.15);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-2), var(--red));
}

.btn.light {
  color: var(--ink);
  background: #fff;
}

.btn.ghost {
  color: var(--blue);
  border-color: var(--line);
  background: #fff;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 42px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 34px;
}

.stat span {
  color: #c4dce6;
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: #fff;
  background: #0d2737;
}

.section.dark p {
  color: #c9dce5;
}

.section-head {
  width: min(1080px, 100%);
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head p {
  max-width: 560px;
}

.grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.service-card,
.program-card,
.portal-panel,
.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.service-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
}

.service-card p {
  flex: 1;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card-topline strong {
  color: #fff;
  background: var(--red);
  padding: 4px 8px;
  border-radius: 8px;
}

.price-row {
  display: grid;
  gap: 2px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.price-row span,
.price-row small {
  color: var(--muted);
  font-size: 13px;
}

.price-row b {
  color: var(--blue);
  font-size: 34px;
}

.page-hero {
  padding: 80px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 85% 10%, rgba(242, 93, 112, 0.24), transparent 32%),
    linear-gradient(135deg, #0d2737, #0a5a7c);
  color: #fff;
}

.page-hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.page-hero p {
  max-width: 720px;
  color: #d6e9f1;
  font-size: 20px;
}

.process-list {
  list-style: none;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-list li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-list span {
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
}

.chart-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.bar-chart {
  display: grid;
  gap: 18px;
}

.bar-chart div {
  display: grid;
  gap: 8px;
}

.bar-chart span {
  font-weight: 900;
}

.bar-chart i {
  display: block;
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform-origin: left;
  animation: growBar 1.2s ease both;
}

@keyframes growBar {
  from {
    transform: scaleX(0.12);
  }
  to {
    transform: scaleX(1);
  }
}

.service-detail {
  width: min(1120px, 100%);
  margin: 0 auto 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-detail aside {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 8px;
  background: var(--soft);
}

.service-detail aside strong {
  color: var(--blue);
  font-size: 38px;
}

.service-page-hero {
  min-height: 0;
}

.service-page-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.service-copy,
.order-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.section.soft .service-copy {
  box-shadow: none;
}

.service-copy h2 {
  margin: 10px 0 18px;
}

.service-copy .eyebrow:not(:first-child) {
  display: inline-block;
  margin-top: 28px;
}

.check-list,
.number-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li,
.number-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.number-list {
  counter-reset: service-step;
}

.number-list li {
  counter-increment: service-step;
}

.number-list li::before {
  content: counter(service-step);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.order-panel {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
}

.order-panel span,
.order-panel small {
  color: var(--muted);
  font-weight: 800;
}

.order-panel strong {
  color: var(--blue);
  font-size: 48px;
}

.pricing-table {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}

.table-link {
  color: var(--red-deep);
  font-weight: 900;
}

.portal-layout,
.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.track-form {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  color: var(--muted);
  line-height: 1.5;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-note {
  margin-bottom: 0;
  font-weight: 800;
}

.progress-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.progress-track span {
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  font-weight: 900;
}

.progress-track .done {
  color: #fff;
  background: var(--blue);
}

.offer-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0b2534;
}

.offer-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.offer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 42, 0.94), rgba(8, 29, 42, 0.76) 56%, rgba(8, 29, 42, 0.22));
}

.offer-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
}

.offer-hero h1 {
  max-width: 780px;
}

.offer-hero p {
  max-width: 680px;
  color: #d8eaf1;
  font-size: clamp(18px, 2vw, 22px);
}

.offer-price {
  margin: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  color: #fff;
}

.offer-price strong {
  font-size: clamp(58px, 9vw, 104px);
  line-height: 0.9;
}

.offer-price span {
  max-width: 270px;
  padding-bottom: 8px;
  color: #d8eaf1;
  font-weight: 900;
}

.offer-delivery-note {
  display: inline-flex;
  max-width: 720px;
  margin: 0 0 22px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px !important;
  font-weight: 900;
}

.offer-panel,
.offer-card,
.offer-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.offer-panel {
  padding: 22px;
}

.offer-panel h2,
.offer-card h3,
.offer-form h2 {
  margin-bottom: 12px;
}

.offer-panel p {
  color: var(--muted);
  font-size: 15px;
}

.rapid-hero {
  background: #0c2a2d;
}

.rapid-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 32, 36, 0.95), rgba(9, 67, 74, 0.78) 54%, rgba(9, 32, 36, 0.18)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.28), rgba(11, 125, 170, 0.18));
}

.rapid-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.rapid-paths,
.rapid-mini-list {
  display: grid;
  gap: 10px;
}

.rapid-paths {
  max-width: 740px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.rapid-paths span,
.rapid-mini-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.rapid-mini-list {
  margin: 18px 0;
}

.rapid-mini-list span {
  border-color: var(--line);
  color: var(--ink);
  background: var(--soft);
  font-size: 14px;
}

.rapid-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.rapid-request-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.credit-hero {
  background: #102536;
}

.credit-hero::after {
  background:
    linear-gradient(90deg, rgba(10, 29, 44, 0.95), rgba(7, 94, 134, 0.74) 56%, rgba(10, 29, 44, 0.2)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.18), rgba(223, 246, 255, 0.12));
}

.credit-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.credit-pills,
.credit-stat-list {
  display: grid;
  gap: 10px;
}

.credit-pills {
  max-width: 740px;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px 0;
}

.credit-pills span,
.credit-stat-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.credit-stat-list {
  margin: 18px 0;
}

.credit-stat-list span {
  border-color: var(--line);
  color: var(--muted);
  background: var(--soft);
}

.credit-stat-list strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

.credit-strip {
  background: var(--blue);
}

.credit-course-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.credit-course-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.05);
}

.credit-pricing-grid .price-row b {
  font-size: clamp(27px, 3vw, 34px);
}

.credit-schedule span {
  font-size: 23px;
}

.credit-apply-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.affiliate-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0b2534;
}

.affiliate-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.affiliate-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 42, 0.95), rgba(8, 47, 62, 0.78) 54%, rgba(8, 29, 42, 0.22)),
    linear-gradient(135deg, rgba(11, 125, 170, 0.22), rgba(242, 93, 112, 0.18));
}

.affiliate-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.affiliate-hero h1 {
  max-width: 780px;
}

.affiliate-hero p {
  max-width: 720px;
  color: #d8eaf1;
  font-size: clamp(18px, 2vw, 22px);
}

.affiliate-hero-panel {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.affiliate-hero-panel span,
.affiliate-hero-panel p {
  color: #d8eaf1;
}

.affiliate-hero-panel span,
.affiliate-earner small {
  display: block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.affiliate-hero-panel strong {
  display: block;
  margin: 12px 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.affiliate-strip {
  padding-top: 24px;
  padding-bottom: 24px;
  background: var(--blue);
}

.affiliate-stat-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.affiliate-stat-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.affiliate-stat-grid strong {
  display: block;
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.affiliate-stat-grid span {
  color: #d8eaf1;
  font-size: 13px;
  font-weight: 900;
}

.affiliate-feature-grid .program-card {
  min-height: 220px;
}

.affiliate-form-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.affiliate-side-card {
  position: sticky;
  top: 98px;
}

.affiliate-agreements {
  margin-top: 4px;
}

.affiliate-service-cloud,
.affiliate-earners-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.affiliate-service-cloud {
  grid-template-columns: repeat(4, 1fr);
}

.affiliate-service-cloud span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(16, 37, 54, 0.05);
}

.affiliate-earners-grid {
  grid-template-columns: repeat(3, 1fr);
}

.affiliate-earner {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.affiliate-earner span {
  color: var(--red);
  font-weight: 900;
}

.affiliate-earner h3,
.affiliate-earner strong {
  color: #fff;
}

.affiliate-earner strong {
  display: block;
  margin: 18px 0 6px;
  font-size: 42px;
  line-height: 1;
}

.affiliate-earner small {
  color: #c9dce5;
}

.trade-hero {
  background: #102536;
}

.trade-hero::after {
  background:
    linear-gradient(90deg, rgba(9, 32, 47, 0.96), rgba(7, 94, 134, 0.78) 56%, rgba(9, 32, 47, 0.18)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.22), rgba(223, 246, 255, 0.12));
}

.trade-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.trade-strip {
  background: var(--blue);
}

.trade-pills span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(223, 246, 255, 0.12);
}

.trade-feature-grid .offer-card,
.trade-program-grid .offer-card,
.trade-pricing-grid .offer-card {
  display: grid;
  align-content: start;
}

.trade-program-grid .offer-card p {
  min-height: 84px;
}

.trade-program-grid .btn {
  margin-top: 14px;
}

.featured-trade-plan {
  border-color: rgba(242, 93, 112, 0.42);
  box-shadow: 0 20px 45px rgba(16, 37, 54, 0.12);
}

.testimonial-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.testimonial-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonial-card h3,
.testimonial-card p,
.testimonial-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.testimonial-card h3 {
  margin-top: 20px;
}

.testimonial-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.trade-request-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.health-hero {
  background: #102536;
}

.health-hero::after {
  background:
    linear-gradient(90deg, rgba(7, 31, 42, 0.96), rgba(22, 111, 105, 0.76) 58%, rgba(7, 31, 42, 0.16)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.16), rgba(223, 246, 255, 0.16));
}

.health-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.health-strip {
  background: #166f69;
}

.health-page-hero {
  background:
    linear-gradient(135deg, rgba(7, 94, 134, 0.93), rgba(22, 111, 105, 0.9)),
    url("assets/images/health-training-hero.png") center / cover;
}

.health-price-table {
  margin-top: 22px;
}

.pay-link-stack {
  display: grid;
  gap: 8px;
}

.stripe-pay-panel {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.stripe-pay-panel h3 {
  margin-top: 8px;
}

.stripe-pay-panel p {
  margin-bottom: 0;
}

.stripe-pay-actions {
  display: grid;
  gap: 12px;
}

.stripe-pay-actions select {
  min-height: 48px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 800;
}

.it-hero {
  background: #102536;
}

.it-hero::after {
  background:
    linear-gradient(90deg, rgba(8, 29, 42, 0.96), rgba(7, 94, 134, 0.78) 56%, rgba(8, 29, 42, 0.18)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.18), rgba(223, 246, 255, 0.16));
}

.it-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.it-strip {
  background: var(--blue);
}

.it-pills span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(223, 246, 255, 0.12);
}

.it-program-grid .offer-card {
  display: grid;
  align-content: start;
}

.it-program-grid .offer-card p {
  min-height: 108px;
}

.it-credit-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.it-transfer-table {
  display: grid;
  gap: 10px;
}

.it-transfer-table div {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.it-transfer-table strong {
  color: var(--ink);
}

.it-transfer-table span {
  color: var(--muted);
  line-height: 1.5;
}

.it-course-grid span {
  min-height: 94px;
  line-height: 1.45;
}

.bpp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bpp-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.bpp-brand span {
  display: grid;
  gap: 2px;
}

.bpp-brand strong {
  color: #082b4f;
  font-size: 24px;
  line-height: 1;
}

.bpp-brand small {
  max-width: 190px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bpp-hero {
  min-height: calc(100vh - 88px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #08233d;
}

.bpp-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.bpp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 27, 51, 0.96), rgba(5, 66, 80, 0.78) 55%, rgba(4, 27, 51, 0.22)),
    linear-gradient(135deg, rgba(196, 149, 45, 0.28), rgba(19, 126, 83, 0.2));
}

.bpp-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: center;
}

.bpp-hero h1 {
  max-width: 820px;
  font-size: clamp(42px, 6.2vw, 78px);
}

.bpp-hero p {
  max-width: 760px;
  color: #e4eef3;
  font-size: clamp(18px, 2vw, 22px);
}

.bpp-hero-stats {
  max-width: 720px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bpp-hero-stats span,
.bpp-logo-panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.bpp-hero-stats span {
  padding: 16px;
}

.bpp-hero-stats strong {
  display: block;
  color: #f2c14e;
  font-size: 34px;
}

.bpp-hero-stats small {
  color: #dbe9ef;
  font-weight: 900;
}

.bpp-logo-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.bpp-logo-panel img {
  width: min(260px, 100%);
  margin: 0 auto 18px;
}

.bpp-logo-panel h2 {
  color: var(--ink);
  font-size: 34px;
}

.bpp-logo-panel p {
  color: var(--muted);
  font-size: 16px;
}

.bpp-whatsapp-sticky {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 13px 18px;
  border-radius: 8px;
  color: #fff;
  background: #14874f;
  box-shadow: 0 18px 36px rgba(16, 37, 54, 0.24);
  font-weight: 900;
}

.bpp-strip {
  background: #0f6f4f;
}

.bpp-split,
.bpp-two-column {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  align-items: center;
}

.bpp-split {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
}

.bpp-two-column {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.bpp-visual-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.bpp-visual-grid img {
  grid-row: span 3;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.bpp-visual-grid div,
.bpp-mini-panels div,
.bpp-icon-card,
.bpp-product-card,
.bpp-faq details,
.bpp-quote-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.bpp-visual-grid div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 128px;
  padding: 22px;
}

.bpp-visual-grid strong {
  color: #0f6f4f;
  font-size: 28px;
}

.bpp-visual-grid span,
.bpp-mini-panels span {
  color: var(--muted);
  line-height: 1.5;
}

.bpp-icon-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bpp-icon-card {
  min-height: 150px;
  padding: 20px;
}

.bpp-icon-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #082b4f, #14874f);
  font-weight: 900;
}

.bpp-icon-card h3 {
  font-size: 19px;
  line-height: 1.2;
}

.bpp-process {
  grid-template-columns: repeat(5, 1fr);
}

.bpp-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bpp-chip-grid span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #082b4f;
  background: #fff;
  font-weight: 900;
}

.bpp-mini-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bpp-mini-panels div {
  padding: 18px;
}

.bpp-mini-panels strong {
  display: block;
  margin-bottom: 10px;
  color: #c4952d;
  font-size: 22px;
}

.bpp-pricing-grid,
.bpp-service-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.bpp-pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.bpp-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bpp-product-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.bpp-product-card > strong {
  color: #0f6f4f;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.bpp-product-card p {
  margin: 0;
}

.bpp-product-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.bpp-product-card .pay-link-stack {
  margin-top: 6px;
}

.bpp-included {
  color: #082b4f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-bpp-plan {
  border-color: rgba(196, 149, 45, 0.62);
  box-shadow: 0 20px 50px rgba(16, 37, 54, 0.14);
}

.bpp-quote-card {
  min-height: 260px;
  padding: 26px;
}

.bpp-quote-card p,
.bpp-quote-card span {
  margin-left: 0;
  margin-right: 0;
}

.bpp-quote-mark {
  color: #c4952d;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.85;
}

.bpp-faq {
  width: min(920px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.bpp-faq details {
  padding: 18px 22px;
}

.bpp-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.bpp-faq p {
  margin-bottom: 0;
}

.bpp-apply-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.bpp-form,
.bpp-final-card {
  color: var(--ink);
}

.bpp-final-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.bpp-final-card img {
  width: min(230px, 100%);
  margin: 0 auto 8px;
}

.bpp-footer {
  display: grid;
  gap: 14px;
}

.bpp-footer .footer-inner {
  align-items: start;
}

.bpp-footer small {
  color: #c9dce5;
  font-size: 14px;
  font-weight: 600;
}

.bpp-disclaimer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 22px;
  color: #c9dce5;
  font-size: 13px;
}

.ged-page {
  background: #fff;
}

.ged-hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #08224a;
}

.ged-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.ged-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 30, 70, 0.96), rgba(6, 50, 101, 0.82) 54%, rgba(6, 30, 70, 0.24)),
    linear-gradient(135deg, rgba(245, 179, 0, 0.26), rgba(14, 113, 54, 0.18));
}

.ged-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 28px;
  align-items: center;
}

.ged-hero p {
  max-width: 720px;
  color: #e8f2f7;
  font-size: clamp(18px, 2vw, 22px);
}

.ged-language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.ged-language-row a {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.ged-language-note {
  max-width: 760px;
  margin: -8px 0 24px;
  display: grid;
  gap: 8px;
}

.ged-language-note span {
  padding: 10px 12px;
  border-left: 4px solid #f5b300;
  color: #eff8ff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.ged-count-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.ged-count-card h2 {
  color: var(--ink);
  font-size: 34px;
}

.ged-count-card p,
.ged-mini-note {
  color: var(--muted);
}

.ged-strip {
  background: #082f6c;
}

.ged-overview,
.ged-subject-grid,
.ged-testimonials {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.ged-overview {
  grid-template-columns: repeat(3, 1fr);
}

.ged-center-actions {
  width: min(1120px, 100%);
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ged-subject-grid {
  grid-template-columns: repeat(4, 1fr);
}

.ged-subject {
  min-height: 360px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.ged-subject span {
  color: #0b6b3a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.ged-subject p {
  flex: 1;
  margin: 0;
}

.ged-proof-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: center;
}

.ged-proof-layout > img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ged-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.ged-trust-list span {
  padding: 13px 14px;
  border-radius: 8px;
  color: #082f6c;
  background: #eef6ff;
  font-weight: 900;
}

.ged-testimonials {
  grid-template-columns: repeat(3, 1fr);
}

.ged-testimonial {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.ged-testimonial p {
  color: #d7e8f0;
}

.ged-testimonial strong,
.ged-testimonial span {
  display: block;
}

.ged-testimonial strong {
  color: #fff;
}

.ged-testimonial span {
  margin-top: 4px;
  color: #f5b300;
  font-size: 13px;
  font-weight: 900;
}

.ged-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(245, 179, 0, 0.76);
  border-radius: 50%;
  color: #082f6c;
  background: #fff;
  font-weight: 900;
  font-size: 20px;
}

.ged-faq {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.ged-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.05);
}

.ged-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.ged-faq p {
  margin: 0;
  padding: 0 20px 20px;
}

.job-brand strong {
  color: #0a6f4d;
}

.job-hero {
  background: #0a2f2b;
}

.job-hero::after {
  background:
    linear-gradient(90deg, rgba(6, 34, 32, 0.95), rgba(8, 80, 71, 0.76) 54%, rgba(6, 34, 32, 0.18)),
    linear-gradient(135deg, rgba(242, 93, 112, 0.26), rgba(35, 176, 121, 0.2));
}

.job-hero-inner {
  grid-template-columns: minmax(0, 1fr) 390px;
}

.job-paths span {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(35, 176, 121, 0.18);
}

.job-openings .offer-card strong {
  color: #0a6f4d;
  font-size: 26px;
}

.job-product-grid {
  align-items: stretch;
}

.job-product-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
}

.job-product-card h3 {
  margin-top: 10px;
}

.job-product-card p {
  flex: 1;
}

.job-product-price {
  display: grid;
  gap: 2px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.job-product-price strong {
  color: #0a6f4d;
  font-size: 34px;
}

.job-product-price span,
.job-product-price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.job-product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.job-payment-note {
  width: min(1120px, 100%);
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}

.job-apply-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.countdown div {
  padding: 12px 8px;
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.countdown strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
}

.countdown span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-strip {
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--red-deep);
  color: #fff;
}

.offer-strip.job-strip {
  background: #0a6f4d;
}

.offer-strip-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-weight: 900;
}

.offer-strip p {
  margin: 0;
  color: #fff;
}

.offer-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-grid.job-openings {
  grid-template-columns: repeat(4, 1fr);
}

.offer-card {
  padding: 24px;
}

.offer-card strong {
  color: var(--blue);
  font-size: 30px;
}

.offer-card ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
}

.offer-form-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.offer-form {
  padding: 28px;
}

.nonprofit-page {
  background: #fbfdfb;
}

.nonprofit-header .site-nav {
  gap: 12px;
}

.nonprofit-hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b2d2c;
}

.nonprofit-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.nonprofit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 37, 0.96), rgba(12, 91, 84, 0.78) 54%, rgba(8, 35, 37, 0.2)),
    linear-gradient(135deg, rgba(210, 159, 60, 0.28), rgba(242, 93, 112, 0.16));
}

.nonprofit-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: center;
}

.nonprofit-hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6.8vw, 82px);
}

.nonprofit-hero p {
  max-width: 760px;
  color: #e3f0ec;
  font-size: clamp(18px, 2vw, 22px);
}

.nonprofit-hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.nonprofit-hero-panel,
.nonprofit-price-card,
.nonprofit-service-grid article,
.nonprofit-addon-grid article,
.nonprofit-form,
.nonprofit-side-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.nonprofit-hero-panel {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nonprofit-hero-panel span {
  color: #126b5e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.nonprofit-hero-panel > strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 28px;
  line-height: 1.15;
}

.nonprofit-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.nonprofit-mini-metrics div {
  padding: 12px;
  border-radius: 8px;
  background: #eef8f3;
}

.nonprofit-mini-metrics b {
  display: block;
  color: #126b5e;
  font-size: 24px;
}

.nonprofit-mini-metrics small {
  color: var(--muted);
  font-weight: 800;
}

.nonprofit-strip {
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  background: #126b5e;
}

.nonprofit-strip-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.nonprofit-strip span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  text-align: center;
}

.nonprofit-chip-grid,
.nonprofit-service-grid,
.nonprofit-pricing-grid,
.nonprofit-addon-grid,
.nonprofit-process,
.nonprofit-intake-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.nonprofit-chip-grid {
  grid-template-columns: repeat(3, 1fr);
}

.nonprofit-chip-grid span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #0b4c47;
  background: #fff;
  font-weight: 900;
}

.nonprofit-service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.nonprofit-service-grid article {
  min-height: 178px;
  padding: 20px;
}

.nonprofit-service-grid h3 {
  font-size: 19px;
  line-height: 1.2;
}

.nonprofit-service-grid p {
  margin-bottom: 0;
  font-size: 14px;
}

.nonprofit-how {
  color: #fff;
  background: #0a2525;
}

.nonprofit-how p {
  color: #d8ece8;
}

.nonprofit-process {
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
}

.nonprofit-process li {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nonprofit-process span {
  color: #d29f3c;
  font-size: 28px;
  font-weight: 900;
}

.nonprofit-pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nonprofit-price-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.nonprofit-price-card > span {
  color: #126b5e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nonprofit-price-card strong {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.nonprofit-price-card ul,
.nonprofit-addon-grid ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.nonprofit-price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.nonprofit-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #126b5e, #d29f3c);
}

.nonprofit-featured {
  border-color: rgba(210, 159, 60, 0.75);
  box-shadow: 0 22px 54px rgba(16, 37, 54, 0.14);
}

.nonprofit-addon-grid {
  grid-template-columns: repeat(4, 1fr);
}

.nonprofit-addon-grid article {
  min-height: 160px;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.nonprofit-addon-grid h3 {
  font-size: 19px;
}

.nonprofit-addon-grid strong {
  color: #126b5e;
  font-size: 30px;
}

.nonprofit-addon-grid a {
  color: var(--red-deep);
  font-weight: 900;
}

.nonprofit-intake-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.nonprofit-form,
.nonprofit-side-card {
  padding: 28px;
}

.nonprofit-form h2,
.nonprofit-side-card h2 {
  margin: 10px 0 12px;
}

.nonprofit-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nonprofit-checkboxes legend {
  padding: 0 6px;
  color: #126b5e;
  font-weight: 900;
}

.nonprofit-checkboxes label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.4;
}

.nonprofit-checkboxes input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: #126b5e;
}

.nonprofit-side-card {
  position: sticky;
  top: 98px;
}

.nonprofit-testimonials .testimonial-card {
  padding: 26px;
}

.nonprofit-testimonials .testimonial-card p,
.nonprofit-testimonials .testimonial-card span {
  margin-left: 0;
  margin-right: 0;
}

.nonprofit-footer {
  display: grid;
  gap: 18px;
}

.nonprofit-footer .footer-inner {
  align-items: flex-start;
}

.nonprofit-footer .footer-inner div {
  display: grid;
  gap: 8px;
}

.nonprofit-footer small {
  color: #c9dce5;
  font-weight: 700;
}

.nonprofit-disclaimer {
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #c9dce5;
  font-size: 13px;
}

.nonprofit-web-page {
  background: #fbfdfb;
}

.nonprofit-website-hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b2d2c;
}

.nonprofit-website-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.nonprofit-website-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 33, 43, 0.96), rgba(9, 84, 84, 0.82) 52%, rgba(20, 21, 49, 0.3)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.24), rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.18));
}

.nonprofit-website-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
}

.nonprofit-website-hero h1 {
  max-width: 780px;
  font-size: clamp(46px, 7vw, 88px);
}

.nonprofit-website-hero p {
  max-width: 760px;
  color: #e3f0ec;
  font-size: clamp(18px, 2vw, 22px);
}

.nonprofit-web-summary,
.nonprofit-web-package,
.nonprofit-web-card,
.nonprofit-web-table,
.nonprofit-web-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 37, 54, 0.06);
}

.nonprofit-web-summary {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nonprofit-web-summary > span,
.nonprofit-web-card > span,
.nonprofit-web-package > span {
  color: #126b5e;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.nonprofit-web-summary > strong {
  display: block;
  margin: 8px 0;
  color: #126b5e;
  font-size: clamp(48px, 7vw, 74px);
  line-height: 1;
}

.nonprofit-web-summary p {
  margin-top: 0;
}

.nonprofit-web-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.nonprofit-web-facts div {
  padding: 12px;
  border-radius: 8px;
  background: #eef8f3;
}

.nonprofit-web-facts b {
  display: block;
  color: #126b5e;
  font-size: 22px;
}

.nonprofit-web-facts small {
  color: var(--muted);
  font-weight: 800;
}

.nonprofit-web-package-grid,
.nonprofit-maintenance-grid,
.nonprofit-info-grid,
.nonprofit-payment-grid,
.nonprofit-web-process {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.nonprofit-web-package-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.nonprofit-web-package {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 26px;
}

.nonprofit-web-package.featured {
  border-color: rgba(59, 130, 246, 0.65);
  box-shadow: 0 22px 54px rgba(16, 37, 54, 0.14);
}

.package-color-dot {
  width: 42px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.professional .package-color-dot {
  background: #2563eb;
}

.premium .package-color-dot {
  background: #9333ea;
}

.nonprofit-web-package strong,
.nonprofit-web-card strong {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.package-meta {
  padding: 12px 14px;
  border-radius: 8px;
  color: #0b4c47;
  background: #eef8f3;
  font-weight: 900;
}

.nonprofit-web-package h3,
.nonprofit-web-card h3 {
  margin-top: 8px;
  font-size: 20px;
}

.nonprofit-web-package ul,
.nonprofit-web-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.nonprofit-web-package li,
.nonprofit-web-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.5;
}

.nonprofit-web-package li::before,
.nonprofit-web-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #126b5e, #3b82f6);
}

.compact-copy {
  margin-top: 0;
  font-size: 15px;
}

.nonprofit-web-table {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: auto;
}

.nonprofit-web-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.nonprofit-web-table th,
.nonprofit-web-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.nonprofit-web-table th {
  color: #0b4c47;
  background: #eef8f3;
  font-size: 13px;
  text-transform: uppercase;
}

.nonprofit-web-table td:last-child {
  color: var(--ink);
  font-weight: 900;
}

.nonprofit-web-table.compact {
  max-width: 760px;
}

.nonprofit-maintenance-grid,
.nonprofit-payment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.nonprofit-info-grid {
  grid-template-columns: repeat(5, 1fr);
}

.nonprofit-web-card {
  padding: 22px;
}

.nonprofit-web-card p {
  margin-bottom: 0;
}

.nonprofit-payment-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nonprofit-payment-grid h3 {
  color: #fff;
}

.nonprofit-payment-grid p,
.nonprofit-payment-grid li {
  color: #d8ece8;
}

.nonprofit-payment-grid ol {
  margin: 12px 0 0;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.nonprofit-web-process {
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  list-style: none;
}

.nonprofit-web-process li {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.nonprofit-web-process span {
  display: block;
  margin-bottom: 12px;
  color: #126b5e;
  font-size: 24px;
}

.nonprofit-web-cta {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.nonprofit-web-cta h2 {
  max-width: 780px;
  margin: 10px auto 0;
}

.nonprofit-web-cta p {
  max-width: 760px;
  margin: 18px auto;
}

.nonprofit-web-cta .hero-actions {
  justify-content: center;
}

.upgrade-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.upgrade-list label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.upgrade-list input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.offer-side {
  position: sticky;
  top: 98px;
}

.footer {
  padding: 36px clamp(18px, 4vw, 56px);
  background: #071a25;
  color: #fff;
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  color: #d9eef6;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 73px;
    left: 18px;
    right: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .language-select {
    width: 100%;
  }

  .grid.three,
  .grid.four,
  .process-list,
  .chart-wrap,
  .portal-layout,
  .contact-layout,
  .offer-hero-inner,
  .affiliate-hero-inner,
  .rapid-hero-inner,
  .credit-hero-inner,
  .trade-hero-inner,
  .health-hero-inner,
  .it-hero-inner,
  .it-credit-layout,
  .ged-hero-inner,
  .job-hero-inner,
  .offer-grid,
  .credit-course-grid,
  .testimonial-grid,
  .ged-overview,
  .ged-subject-grid,
  .ged-testimonials,
  .ged-proof-layout,
  .job-openings,
  .offer-form-layout {
    grid-template-columns: 1fr 1fr;
  }

  .affiliate-stat-grid,
  .affiliate-form-layout,
  .affiliate-service-cloud,
  .affiliate-earners-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nonprofit-hero-inner,
  .nonprofit-service-grid,
  .nonprofit-pricing-grid,
  .nonprofit-addon-grid,
  .nonprofit-process,
  .nonprofit-intake-layout,
  .nonprofit-website-hero-inner,
  .nonprofit-web-package-grid,
  .nonprofit-maintenance-grid,
  .nonprofit-payment-grid,
  .nonprofit-info-grid,
  .nonprofit-web-process {
    grid-template-columns: 1fr 1fr;
  }

  .nonprofit-strip-inner,
  .nonprofit-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nonprofit-side-card {
    position: static;
  }

  .affiliate-side-card {
    position: static;
  }

  .bpp-hero-inner,
  .bpp-split,
  .bpp-two-column,
  .bpp-icon-grid,
  .bpp-process,
  .bpp-mini-panels,
  .bpp-pricing-grid,
  .bpp-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-page-layout {
    grid-template-columns: 1fr;
  }

  .order-panel {
    position: static;
  }

  .offer-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 56px 0 74px;
  }

  .hero::after {
    background: rgba(8, 29, 42, 0.82);
  }

  .hero-stats,
  .rapid-paths,
  .credit-pills,
  .grid.three,
  .grid.four,
  .process-list,
  .chart-wrap,
  .portal-layout,
  .contact-layout,
  .offer-hero-inner,
  .affiliate-hero-inner,
  .rapid-hero-inner,
  .credit-hero-inner,
  .trade-hero-inner,
  .health-hero-inner,
  .it-hero-inner,
  .it-credit-layout,
  .ged-hero-inner,
  .job-hero-inner,
  .offer-grid,
  .credit-course-grid,
  .testimonial-grid,
  .ged-overview,
  .ged-subject-grid,
  .ged-testimonials,
  .ged-proof-layout,
  .job-openings,
  .offer-form-layout,
  .progress-track {
    grid-template-columns: 1fr;
  }

  .affiliate-stat-grid,
  .affiliate-form-layout,
  .affiliate-service-cloud,
  .affiliate-earners-grid {
    grid-template-columns: 1fr;
  }

  .nonprofit-hero {
    min-height: auto;
  }

  .nonprofit-hero-inner {
    padding: 56px 0 68px;
  }

  .nonprofit-hero::after {
    background: rgba(8, 35, 37, 0.86);
  }

  .nonprofit-hero-inner,
  .nonprofit-website-hero-inner,
  .nonprofit-strip-inner,
  .nonprofit-chip-grid,
  .nonprofit-service-grid,
  .nonprofit-pricing-grid,
  .nonprofit-addon-grid,
  .nonprofit-process,
  .nonprofit-web-package-grid,
  .nonprofit-maintenance-grid,
  .nonprofit-payment-grid,
  .nonprofit-info-grid,
  .nonprofit-web-process,
  .nonprofit-intake-layout,
  .nonprofit-checkboxes {
    grid-template-columns: 1fr;
  }

  .nonprofit-website-hero {
    min-height: auto;
  }

  .nonprofit-website-hero-inner {
    padding: 56px 0 68px;
  }

  .nonprofit-website-hero::after {
    background: rgba(8, 35, 37, 0.86);
  }

  .bpp-hero {
    min-height: auto;
  }

  .bpp-hero-inner,
  .bpp-split,
  .bpp-two-column,
  .bpp-icon-grid,
  .bpp-process,
  .bpp-mini-panels,
  .bpp-pricing-grid,
  .bpp-service-grid,
  .bpp-hero-stats,
  .bpp-visual-grid {
    grid-template-columns: 1fr;
  }

  .bpp-hero-inner {
    padding: 56px 0 68px;
  }

  .bpp-hero::after {
    background: rgba(4, 27, 51, 0.86);
  }

  .bpp-visual-grid img {
    min-height: 280px;
  }

  .bpp-whatsapp-sticky {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .offer-hero {
    min-height: auto;
  }

  .affiliate-hero {
    min-height: auto;
  }

  .affiliate-hero-inner {
    padding: 56px 0 66px;
  }

  .affiliate-hero::after {
    background: rgba(8, 29, 42, 0.86);
  }

  .offer-hero-inner {
    padding: 56px 0 66px;
  }

  .offer-hero::after {
    background: rgba(8, 29, 42, 0.84);
  }

  .ged-hero {
    min-height: auto;
  }

  .ged-hero-inner {
    padding: 56px 0 66px;
  }

  .ged-hero::after {
    background: rgba(6, 30, 70, 0.86);
  }

  .ged-trust-list {
    grid-template-columns: 1fr;
  }

  .offer-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-row,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
