/*-- color --*/
:root {
  --bg-dark-1: #263744;
  --bg-dark-2: #1e2530;
  --bg-light-1: #f5f7fb;
  --bg-light-2: rgba(255, 255, 255, 0.2);
  --text-light: #fff;
  --text-dark: #282c2d;
  --primary-color: #0d6efd;
  --active-color: #97E3FD;
  /* --bg-blue-light: #f2f7fb; */
  --bg-blue-light: #C9E8F4;
  --bg-blue-dark: #24536D;
  --bg-red: #FF0000
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto-Bold;
}

/* ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track-piece {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}

/*-- important style --*/
.gap-md,
.gap-sm,
.gap-lg,
.gap-xs {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 50px;
}

.gap-sm {
  height: 30px;
}

.gap-xs {
  height: 10px;
}

.gap-lg {
  height: 100px;
}

.mg-pd-none {
  padding: 0;
  margin: 0;
}

.large-size {
  font-size: 30px !important;
}

.medium-size {
  font-size: 18px !important;
}

.small-size {
  font-size: 14px !important;
}

.xsmall-size {
  font-size: 12px !important;
}

.hidden {
  overflow: hidden !important;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.unset {
  position: unset !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

@media only screen and (max-width: 991px) {
  .mg-pd-none-mb {
    padding: 0;
    margin: 0;
  }

  .xsmall-size {
    font-size: 8px !important;
  }

  .small-size {
    font-size: 12px !important;
  }

  .medium-size {
    font-size: 14px !important;
  }

  .large-size {
    font-size: 20px !important;
  }

  .small-size {
    font-size: 10px !important;
  }
}

.creditx-body {
  background:
    radial-gradient(circle at top left, rgba(44, 97, 132, 0.18), transparent 32%),
    linear-gradient(180deg, #eef4f8 0%, #ffffff 42%, #eef4f8 100%);
  color: #173042;
}

.creditx-topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(26, 31, 35, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.creditx-topbar-inner,
.creditx-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.creditx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: Roboto-Bold, sans-serif;
  font-size: 24px;
  text-transform: lowercase;
}

.creditx-brand:hover {
  color: #fff;
}

.creditx-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f6b96 0%, #173042 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 48, 66, 0.18);
}

.creditx-brand-text {
  letter-spacing: 0.02em;
}

.creditx-contact-actions,
.creditx-hero-actions,
.creditx-contact-buttons,
.creditx-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.creditx-action-btn,
.creditx-cta-main,
.creditx-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: Roboto-Bold, sans-serif;
  transition: 0.25s ease;
}

.creditx-action-btn:hover,
.creditx-cta-main:hover,
.creditx-cta-secondary:hover {
  transform: translateY(-2px);
}

.creditx-action-outline,
.creditx-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.creditx-action-solid,
.creditx-cta-main {
  background: linear-gradient(135deg, #4ba20f 0%, #2e7e07 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(75, 162, 15, 0.28);
}

.creditx-hero {
  position: relative;
  min-height: 760px;
  padding: 180px 0 120px;
  background:
    linear-gradient(180deg, rgba(18, 24, 31, 0.62) 0%, rgba(18, 24, 31, 0.56) 100%),
    url("../cms/images/index/bg2.png") center center / cover no-repeat;
}

.creditx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  pointer-events: none;
}

.creditx-hero .container {
  position: relative;
  z-index: 1;
}

.creditx-eyebrow {
  margin-bottom: 16px;
  font-family: Roboto-Bold, sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8ed3ff;
}

.creditx-hero-copy h1,
.creditx-section-heading h2,
.creditx-contact-panel h2,
.creditx-hero-panel h2 {
  color: #173042;
}

.creditx-hero-copy h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: 68px;
  line-height: 1.08;
  color: #fff;
  text-align: center;
}

.creditx-lead,
.creditx-service-card p,
.creditx-trust-item p,
.creditx-contact-panel p,
.creditx-hero-panel p {
  font-size: 18px;
  line-height: 1.7;
  color: #4f6473;
}

.creditx-hero .creditx-lead {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.creditx-hero-copy {
  text-align: center;
}

.creditx-hero-actions {
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}

.creditx-hero-actions .creditx-cta-main,
.creditx-hero-actions .creditx-cta-secondary {
  min-width: 132px;
  padding: 0 26px;
}

.creditx-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.creditx-meta-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7d8e9b;
}

.creditx-hero-meta a,
.creditx-footer-links a,
.creditx-contact-details span {
  color: #173042;
  font-family: Roboto-Bold, sans-serif;
}

.creditx-hero .creditx-meta-label {
  color: rgba(255, 255, 255, 0.62);
}

.creditx-hero .creditx-hero-meta a {
  color: #fff;
}

.creditx-hero-panel,
.creditx-contact-panel,
.creditx-service-card {
  background: #fff;
  border: 1px solid rgba(23, 48, 66, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(23, 48, 66, 0.08);
}

.creditx-hero-panel {
  padding: 34px;
}

.creditx-hero-panel-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(31, 107, 150, 0.1);
  color: #1f6b96;
  font-family: Roboto-Bold, sans-serif;
  font-size: 13px;
}

.creditx-panel-list {
  margin: 24px 0 0;
  padding: 0;
}

.creditx-panel-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #173042;
}

.creditx-panel-list i,
.creditx-card-icon {
  color: #1f6b96;
}

.creditx-services,
.creditx-funding-uses,
.creditx-about,
.creditx-startup-programs,
.creditx-why,
.creditx-process,
.creditx-testimonials,
.creditx-partner-section,
.creditx-contact-section {
  padding: 36px 0 72px;
}

.creditx-services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.8) 100%),
    url("../cms/images/index/bg2.png") center center / cover no-repeat;
}

.creditx-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 58%);
  pointer-events: none;
}

.creditx-services .container {
  position: relative;
  z-index: 1;
}

.creditx-funding-uses {
  background: #fff;
}

.creditx-about {
  background: #4e5258;
  color: #fff;
  overflow: hidden;
}

.creditx-about-collage {
  position: relative;
  min-height: 720px;
}

.creditx-about-frame,
.creditx-about-photo {
  position: absolute;
}

.creditx-about-frame {
  border: 2px solid #4ba20f;
}

.creditx-about-frame-one {
  top: 80px;
  left: 60px;
  width: 240px;
  height: 220px;
}

.creditx-about-frame-two {
  bottom: 72px;
  left: 230px;
  width: 300px;
  height: 240px;
}

.creditx-about-photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.creditx-about-photo-main {
  top: 30px;
  left: 130px;
  width: 240px;
  height: 174px;
  background-image: url("../cms/images/index/bg2.png");
}

.creditx-about-photo-small {
  top: 190px;
  left: 14px;
  width: 206px;
  height: 196px;
  background-image: url("../cms/images/index/bg1.jpg");
}

.creditx-about-photo-wide {
  bottom: 28px;
  left: 176px;
  width: 334px;
  height: 190px;
  background-image: url("../cms/images/index/bg2.png");
}

.creditx-about-copy {
  max-width: 620px;
}

.creditx-about-eyebrow {
  margin-bottom: 18px;
  color: #fff;
  font-family: Roboto-Bold, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.creditx-about-copy h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
}

.creditx-about-copy p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
}

.creditx-about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.creditx-about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: Roboto-Bold, sans-serif;
}

.creditx-about-badge i {
  color: #93df31;
}

.creditx-startup-programs {
  background: #fff;
}

.creditx-startup-header {
  max-width: 980px;
  margin: 0 auto 36px;
}

.creditx-startup-header h2 {
  margin-bottom: 8px;
  color: #3b930f;
  font-size: 58px;
  line-height: 1.12;
}

.creditx-startup-header h3 {
  margin: 0;
  color: #59606a;
  font-size: 48px;
  line-height: 1.16;
}

.creditx-use-list-compact {
  max-width: 500px;
}

.creditx-program-box {
  max-width: 760px;
  margin: 26px auto 0;
}

.creditx-program-box h4 {
  margin-bottom: 12px;
  color: #3b930f;
  font-size: 32px;
}

.creditx-program-box p {
  margin-bottom: 8px;
  color: #34495b;
  font-size: 20px;
  line-height: 1.55;
}

.creditx-program-box .creditx-cta-main {
  min-width: 360px;
  min-height: 78px;
  margin-top: 28px;
  font-size: 28px;
  text-transform: uppercase;
  box-shadow: 0 12px 0 rgba(36, 88, 8, 0.16), 0 24px 34px rgba(75, 162, 15, 0.22);
}

.creditx-program-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #687784;
  font-size: 16px;
}

.creditx-program-note i {
  color: #3b930f;
}

.creditx-why {
  background: #4e5258;
  color: #fff;
}

.creditx-why-header {
  margin-bottom: 28px;
}

.creditx-why-header h2 {
  color: #fff;
  font-size: 56px;
}

.creditx-why-card {
  display: flex;
  gap: 18px;
  height: 100%;
  padding: 22px 18px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.creditx-why-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3b930f;
  font-size: 36px;
}

.creditx-why-card h3 {
  margin-bottom: 8px;
  color: #3b930f;
  font-size: 22px;
  line-height: 1.25;
}

.creditx-why-card p {
  margin: 0;
  color: #42505d;
  font-size: 18px;
  line-height: 1.55;
}

.creditx-why-footer {
  max-width: 840px;
  margin: 20px auto 0;
}

.creditx-why-footer h3 {
  color: #fff;
  font-size: 54px;
  line-height: 1.12;
}

.creditx-why-footer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 26px;
  line-height: 1.3;
}

.creditx-process {
  background: #fff;
}

.creditx-process-header {
  max-width: 780px;
  margin: 0 auto 46px;
}

.creditx-process-header h2 {
  margin-bottom: 10px;
  color: #3b930f;
  font-size: 58px;
}

.creditx-process-header p {
  margin: 0;
  color: #59606a;
  font-family: Roboto-Bold, sans-serif;
  font-size: 28px;
  line-height: 1.28;
}

.creditx-process-flow {
  max-width: 1180px;
  margin: 0 auto;
}

.creditx-process-step {
  max-width: 250px;
  margin: 0 auto;
  text-align: center;
}

.creditx-process-step-middle {
  margin-top: 0;
}

.creditx-process-step-end {
  margin-top: 0;
}

.creditx-process-icon {
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: #3b930f;
  color: #fff;
  font-size: 48px;
}

.creditx-process-step h3 {
  margin-bottom: 16px;
  color: #101418;
  font-size: 26px;
}

.creditx-process-step p {
  margin: 0;
  color: #33495b;
  font-size: 18px;
  line-height: 1.58;
}

.creditx-testimonials {
  background: #4e5258;
  color: #fff;
}

.creditx-testimonials-header {
  max-width: 920px;
  margin: 0 auto 34px;
}

.creditx-testimonials-header h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 56px;
  line-height: 1.12;
}

.creditx-testimonials-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: Roboto-Bold, sans-serif;
  font-size: 26px;
  line-height: 1.3;
}

.creditx-review-card {
  position: relative;
  height: 100%;
  padding: 48px 24px 26px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.creditx-review-avatar {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6dbc1a 0%, #3b930f 100%);
  color: #fff;
  font-family: Roboto-Bold, sans-serif;
  font-size: 24px;
  box-shadow: 0 10px 24px rgba(59, 147, 15, 0.22);
}

.creditx-review-card h3 {
  margin-bottom: 10px;
  color: #101418;
  font-size: 26px;
}

.creditx-review-stars {
  margin-bottom: 14px;
  color: #f5b700;
  font-size: 22px;
}

.creditx-review-card p {
  margin: 0;
  color: #33495b;
  font-size: 18px;
  line-height: 1.65;
}

.creditx-partner-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.88) 100%),
    url("../cms/images/index/bg2.png") center center / cover no-repeat;
}

.creditx-partner-content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 0 10px;
}

.creditx-partner-content h2 {
  margin-bottom: 6px;
  color: #3b930f;
  font-size: 62px;
  line-height: 1.08;
}

.creditx-partner-subtitle {
  margin-bottom: 24px;
  color: #3b930f;
  font-family: Roboto-Bold, sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.creditx-partner-copy {
  max-width: 1100px;
  margin: 0 auto 20px;
  color: #475765;
  font-family: Roboto-Bold, sans-serif;
  font-size: 28px;
  line-height: 1.38;
}

.creditx-partner-content .creditx-cta-main {
  margin-top: 14px;
  min-width: 340px;
  min-height: 74px;
  font-size: 22px;
}

.creditx-partner-note {
  margin: 16px 0 22px;
  color: #586a79;
  font-size: 18px;
}

.creditx-partner-content h3 {
  margin-bottom: 8px;
  color: #4a5663;
  font-size: 52px;
  line-height: 1.15;
}

.creditx-partner-closing {
  margin: 0;
  color: #56616d;
  font-size: 30px;
  line-height: 1.3;
}

.creditx-funding-header {
  max-width: 980px;
  margin: 0 auto 40px;
}

.creditx-funding-header h2 {
  margin-bottom: 18px;
  color: #3b930f;
  font-size: 58px;
  line-height: 1.12;
}

.creditx-funding-header p {
  max-width: 820px;
  margin: 0 auto;
  color: #475765;
  font-family: Roboto-Bold, sans-serif;
  font-size: 26px;
  line-height: 1.3;
}

.creditx-use-list {
  max-width: 420px;
  margin: 0 auto;
  padding: 0;
}

.creditx-use-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  color: #34495b;
  font-size: 22px;
  line-height: 1.35;
}

.creditx-use-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 4px solid #3b930f;
  transform: rotate(45deg);
  border-radius: 2px;
}

.creditx-use-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #3b930f;
}

.creditx-service-card h3,
.creditx-service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.creditx-section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
}

.creditx-section-heading .creditx-eyebrow {
  color: #6dbc1a;
}

.creditx-service-card {
  height: 100%;
  padding: 28px;
}

.creditx-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(31, 107, 150, 0.1);
  font-size: 22px;
}

.creditx-contact-panel {
  padding: 48px 36px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(151, 227, 253, 0.22), transparent 28%),
    #fff;
}

.creditx-contact-details {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.creditx-contact-buttons {
  justify-content: center;
}

.creditx-contact-details i {
  margin-right: 8px;
  color: #1f6b96;
}

.creditx-footer {
  border-top: 1px solid rgba(23, 48, 66, 0.08);
  background: #fff;
  padding-top: 18px;
}

.creditx-footer-inner {
  align-items: flex-start;
  padding: 34px 0 26px;
  min-height: 240px;
}

.creditx-footer-content {
  flex: 1 1 58%;
  max-width: 760px;
}

.creditx-footer-map {
  flex: 1 1 34%;
  width: 100%;
  max-width: 380px;
}

.creditx-footer-intro {
  margin: 18px 0 0;
  color: #4f6473;
  font-size: 18px;
  line-height: 1.75;
}

.creditx-footer-contact {
  margin-top: 18px;
}

.creditx-footer-address {
  margin: 10px 0 0;
  color: #607482;
  font-size: 17px;
  line-height: 1.7;
}

.creditx-footer-address i {
  margin-right: 8px;
  color: #1f6b96;
}

.creditx-footer-address a {
  color: #607482;
}

.creditx-footer-address a:hover {
  color: #173042;
}

.creditx-footer-bottom {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(23, 48, 66, 0.08);
  text-align: center;
}

.creditx-footer-copy {
  margin: 0;
  color: #607482;
  font-size: 14px;
  line-height: 1.7;
}

.creditx-map-card {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  border: 1px solid rgba(23, 48, 66, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(23, 48, 66, 0.08);
}

.creditx-map-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  color: #173042;
}

.creditx-map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(23, 48, 66, 0.08);
  background: #dbe8f1;
}

.creditx-map-frame iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

@media only screen and (max-width: 991px) {
  .creditx-hero {
    min-height: 640px;
    padding: 148px 0 88px;
  }

  .creditx-hero-copy h1 {
    font-size: 50px;
  }

  .creditx-funding-header h2 {
    font-size: 44px;
  }

  .creditx-funding-header p {
    font-size: 22px;
  }

  .creditx-startup-header h2 {
    font-size: 44px;
  }

  .creditx-startup-header h3 {
    font-size: 38px;
  }

  .creditx-program-box .creditx-cta-main {
    min-width: 300px;
    min-height: 68px;
    font-size: 24px;
  }

  .creditx-why-header h2 {
    font-size: 46px;
  }

  .creditx-why-footer h3 {
    font-size: 42px;
  }

  .creditx-why-footer p {
    font-size: 22px;
  }

  .creditx-process-header h2 {
    font-size: 46px;
  }

  .creditx-process-header p {
    font-size: 24px;
  }

  .creditx-process-step,
  .creditx-process-step-middle,
  .creditx-process-step-end {
    max-width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .creditx-testimonials-header h2 {
    font-size: 46px;
  }

  .creditx-testimonials-header p {
    font-size: 22px;
  }

  .creditx-partner-content h2 {
    font-size: 48px;
  }

  .creditx-partner-subtitle {
    font-size: 24px;
  }

  .creditx-partner-copy {
    font-size: 24px;
  }

  .creditx-partner-content h3 {
    font-size: 40px;
  }

  .creditx-partner-closing {
    font-size: 24px;
  }

  .creditx-about-collage {
    min-height: 560px;
  }

  .creditx-about-frame-one {
    top: 56px;
    left: 36px;
    width: 190px;
    height: 172px;
  }

  .creditx-about-frame-two {
    left: 178px;
    width: 220px;
    height: 188px;
  }

  .creditx-about-photo-main {
    left: 88px;
    width: 200px;
    height: 148px;
  }

  .creditx-about-photo-small {
    width: 168px;
    height: 162px;
  }

  .creditx-about-photo-wide {
    left: 142px;
    width: 264px;
    height: 152px;
  }

  .creditx-about-eyebrow {
    font-size: 48px;
  }

  .creditx-topbar-inner,
  .creditx-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .creditx-footer-inner {
    min-height: unset;
    padding: 28px 0 22px;
  }

  .creditx-footer-content,
  .creditx-footer-map {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .creditx-brand {
    font-size: 20px;
  }

  .creditx-hero-copy h1 {
    font-size: 38px;
  }

  .creditx-funding-header h2 {
    font-size: 34px;
  }

  .creditx-funding-header p {
    font-size: 20px;
  }

  .creditx-startup-header h2 {
    font-size: 34px;
  }

  .creditx-startup-header h3 {
    font-size: 30px;
  }

  .creditx-use-list li {
    font-size: 20px;
  }

  .creditx-program-box h4 {
    font-size: 28px;
  }

  .creditx-program-box p {
    font-size: 18px;
  }

  .creditx-program-box .creditx-cta-main {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 20px;
  }

  .creditx-why-header h2 {
    font-size: 34px;
  }

  .creditx-why-card {
    padding: 18px 16px;
  }

  .creditx-why-card h3 {
    font-size: 20px;
  }

  .creditx-why-card p {
    font-size: 16px;
  }

  .creditx-why-footer h3 {
    font-size: 32px;
  }

  .creditx-why-footer p {
    font-size: 18px;
  }

  .creditx-process-header h2 {
    font-size: 34px;
  }

  .creditx-process-header p {
    font-size: 20px;
  }

  .creditx-process-icon {
    width: 92px;
    height: 92px;
    font-size: 40px;
  }

  .creditx-process-step h3 {
    font-size: 22px;
  }

  .creditx-process-step p {
    font-size: 16px;
  }

  .creditx-testimonials-header h2 {
    font-size: 34px;
  }

  .creditx-testimonials-header p {
    font-size: 20px;
  }

  .creditx-partner-content h2 {
    font-size: 36px;
  }

  .creditx-partner-subtitle {
    font-size: 20px;
  }

  .creditx-partner-copy {
    font-size: 20px;
  }

  .creditx-partner-content .creditx-cta-main {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 20px;
  }

  .creditx-partner-content h3 {
    font-size: 30px;
  }

  .creditx-partner-closing {
    font-size: 20px;
  }

  .creditx-review-card h3 {
    font-size: 22px;
  }

  .creditx-review-stars {
    font-size: 20px;
  }

  .creditx-review-card p {
    font-size: 16px;
  }

  .creditx-about-collage {
    min-height: 430px;
  }

  .creditx-about-frame-one {
    top: 34px;
    left: 22px;
    width: 142px;
    height: 122px;
  }

  .creditx-about-frame-two {
    bottom: 40px;
    left: 136px;
    width: 174px;
    height: 142px;
  }

  .creditx-about-photo-main {
    top: 14px;
    left: 74px;
    width: 148px;
    height: 108px;
  }

  .creditx-about-photo-small {
    top: 118px;
    left: 0;
    width: 130px;
    height: 126px;
  }

  .creditx-about-photo-wide {
    bottom: 0;
    left: 104px;
    width: 208px;
    height: 120px;
  }

  .creditx-about-eyebrow {
    font-size: 38px;
  }

  .creditx-about-copy h2 {
    font-size: 24px;
  }

  .creditx-about-copy p {
    font-size: 16px;
  }

  .creditx-lead,
  .creditx-service-card p,
  .creditx-contact-panel p,
  .creditx-hero-panel p {
    font-size: 16px;
  }

  .creditx-contact-actions,
  .creditx-hero-actions,
  .creditx-contact-buttons {
    flex-direction: column;
  }

  .creditx-action-btn,
  .creditx-cta-main,
  .creditx-cta-secondary {
    width: 100%;
  }

  .creditx-hero-panel,
  .creditx-contact-panel,
  .creditx-service-card {
    border-radius: 22px;
  }

  .creditx-footer-intro {
    font-size: 16px;
  }
}

/* Footer refresh to match reference layout */
.creditx-footer {
  background: #4f5258;
  color: #fff;
  padding-top: 42px;
}

.creditx-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 8px 0 24px;
  min-height: 0;
}

.creditx-footer-content,
.creditx-footer-links-col,
.creditx-footer-social-col {
  max-width: none;
  width: auto;
}

.creditx-footer-title {
  margin-bottom: 26px;
  color: #fff;
  font-size: 22px;
}

.creditx-footer-contact {
  margin-top: 0;
}

.creditx-footer-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
}

.creditx-footer-address i {
  margin-top: 4px;
  margin-right: 0;
  color: #3b930f;
  font-size: 34px;
}

.creditx-footer-address a {
  color: #3b930f;
  font-family: Roboto-Bold, sans-serif;
}

.creditx-footer-address a:hover {
  color: #5fb518;
}

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

.creditx-footer-nav a {
  color: #fff;
  font-size: 17px;
}

.creditx-footer-apply,
.creditx-footer-newsletter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4ba20f 0%, #2e7e07 100%);
  color: #fff !important;
  font-family: Roboto-Bold, sans-serif;
  box-shadow: 0 10px 18px rgba(75, 162, 15, 0.22);
}

.creditx-footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.creditx-footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3b930f;
  border-radius: 8px;
  color: #3b930f;
}

.creditx-footer-newsletter {
  margin-bottom: 28px;
}

.creditx-footer-brandlock .creditx-brand {
  color: #fff;
  font-size: 18px;
}

.creditx-footer-brandlock .creditx-brand:hover {
  color: #fff;
}

.creditx-footer-brandlock .creditx-brand-mark {
  width: 42px;
  height: 42px;
  box-shadow: none;
}

.creditx-footer-bottom {
  padding: 10px 0 34px;
  border-top: 0;
  text-align: center;
}

.creditx-footer-copy {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
}

.creditx-footer-bottom-link a {
  color: #3b930f;
  font-family: Roboto-Bold, sans-serif;
}

.creditx-footer-map,
.creditx-map-card,
.creditx-map-frame {
  display: none !important;
}

@media only screen and (max-width: 991px) {
  .creditx-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media only screen and (max-width: 767px) {
  .creditx-footer-title {
    font-size: 20px;
  }

  .creditx-footer-address {
    font-size: 16px;
  }

  .creditx-footer-socials {
    margin-bottom: 16px;
  }
}
