/** Shopify CDN: Minification failed

Line 100:10 Unexpected "{"
Line 100:34 Expected ":"
Line 100:38 Unexpected "{"

**/
/* ============================================================
   FINANCE PAGE — CSS
   Design System: Sun City Trailers
   Fonts: Poppins (400, 600, 700, 800)
   Colors:
     #121f45 — dark navy
     #223971 — primary blue
     #cc1e4a — CTA red
     #ffc906 — accent yellow
     #f4f5f7 — light gray bg
   ============================================================ */

/* ── Shared Container ── */
.sf-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ── Shared Overline ── */
.sf-overline {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc906;
  margin-bottom: 12px;
}

.sf-overline--red {
  color: #cc1e4a;
}

/* ── Shared Buttons ── */
.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.sf-btn--primary {
  background: #cc1e4a;
  color: #ffffff;
  border-color: #cc1e4a;
}
.sf-btn--primary:hover {
  background: #a8163c;
  border-color: #a8163c;
  color: #ffffff;
}

.sf-btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.50);
}
.sf-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: #ffffff;
}

.sf-btn--outline-dark {
  background: transparent;
  color: #121f45;
  border-color: #121f45;
}
.sf-btn--outline-dark:hover {
  background: #121f45;
  color: #ffffff;
}

/* ============================================================
   HERO
   ============================================================ */

.sf-hero-{{ section_id_placeholder }} {
  --overlay-color: #121f45;
  --overlay-opacity: 70;
}

.sf-hero {
  position: relative;
  min-height: 480px;
  background-color: #121f45;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sf-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--overlay-color, #121f45);
  opacity: calc(var(--overlay-opacity, 70) / 100);
  z-index: 1;
  pointer-events: none;
}

.sf-hero .sf-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.sf-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.sf-hero__content {}

.sf-hero__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.sf-hero__heading span {
  color: #ffc906;
}

.sf-hero__body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 32px 0;
}

.sf-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sf-hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.sf-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
}

.sf-hero__trust-item svg {
  flex-shrink: 0;
}

.sf-hero__badge {
  background: rgba(255, 201, 6, 0.12);
  border: 1px solid rgba(255, 201, 6, 0.30);
  border-radius: 8px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sf-hero__badge-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffc906;
  margin: 0;
}

.sf-hero__badge-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ============================================================
   HOW IT WORKS (3 STEPS)
   ============================================================ */
.sf-steps {
  background: #ffffff;
  padding: 96px 0;
  border-bottom: 1px solid #e8eaed;
}

.sf-steps__header {
  text-align: center;
  margin-bottom: 64px;
}

.sf-steps__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #121f45;
  margin: 0;
}

.sf-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.sf-steps__grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(to right, #cc1e4a, #ffc906);
  z-index: 0;
}

.sf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.sf-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #cc1e4a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(204, 30, 74, 0.30);
}

.sf-step__title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #121f45;
  margin: 0 0 10px 0;
}

.sf-step__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.sf-form-section {
  background: #f4f5f7;
  padding: 96px 0;
}

.sf-form-section__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.sf-form-section__embed {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(18, 31, 69, 0.08);
  min-height: 400px;
}

.sf-form-section__embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border: 2px dashed rgba(18, 31, 69, 0.15);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9aa3b2;
}

.sf-form-section__sidebar {}

.sf-form-section__sidebar-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #121f45;
  margin: 0 0 8px 0;
  line-height: 1.15;
}

.sf-form-section__sidebar-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 36px 0;
}

.sf-form-section__perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.sf-form-section__perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sf-form-section__perk-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(204, 30, 74, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sf-form-section__perk-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.sf-form-section__perk-text {}

.sf-form-section__perk-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #121f45;
  display: block;
  margin-bottom: 3px;
}

.sf-form-section__perk-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   FINANCE OPTIONS
   ============================================================ */
.sf-options {
  background: #121f45;
  padding: 96px 0;
}

.sf-options__header {
  text-align: center;
  margin-bottom: 56px;
}

.sf-options__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.sf-options__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sf-option-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.sf-option-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

.sf-option-card--featured {
  background: rgba(255, 201, 6, 0.10);
  border-color: rgba(255, 201, 6, 0.45);
}

.sf-option-card--featured:hover {
  background: rgba(255, 201, 6, 0.16);
  border-color: rgba(255, 201, 6, 0.65);
}

.sf-option-card__tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc906;
  background: rgba(255, 201, 6, 0.12);
  border: 1px solid rgba(255, 201, 6, 0.25);
  border-radius: 3px;
  padding: 4px 8px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.sf-option-card--featured .sf-option-card__tag {
  color: #ffc906;
  background: rgba(255, 201, 6, 0.15);
  border-color: rgba(255, 201, 6, 0.35);
}

.sf-option-card__image {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 20px;
}

.sf-option-card__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.25;
}

.sf-option-card__list {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.sf-option-card__list li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.sf-option-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc906;
}

.sf-option-card--featured .sf-option-card__list li::before {
  background: #ffc906;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.sf-benefits {
  background: #ffffff;
  padding: 96px 0;
  border-top: 1px solid #e8eaed;
}

.sf-benefits__header {
  text-align: center;
  margin-bottom: 64px;
}

.sf-benefits__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  color: #121f45;
  margin: 0;
}

.sf-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sf-benefit {
  text-align: center;
  padding: 40px 28px;
  border: 1px solid #e8eaed;
  border-radius: 8px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.sf-benefit:hover {
  box-shadow: 0 8px 32px rgba(18, 31, 69, 0.08);
  border-color: rgba(204, 30, 74, 0.20);
}

.sf-benefit__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.sf-benefit__title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121f45;
  margin: 0 0 12px 0;
}

.sf-benefit__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   LENDER PARTNERS
   ============================================================ */
.sf-partners {
  background: #f4f5f7;
  padding: 72px 0;
  border-top: 1px solid #e0e3e8;
}

.sf-partners__header {
  text-align: center;
  margin-bottom: 44px;
}

.sf-partners__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #121f45;
  margin: 0;
}

.sf-partners__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 56px;
}

.sf-partners__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.sf-partners__logo:hover {
  opacity: 1;
  filter: none;
}

.sf-partners__logo img {
  height: 56px;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.sf-cta-band {
  background: linear-gradient(105deg, #121f45 0%, #223971 100%);
  padding: 80px 0;
}

.sf-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.sf-cta-band__text {}

.sf-cta-band__heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.sf-cta-band__sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media screen and (max-width: 1024px) {
  .sf-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 0 56px;
  }

  .sf-hero__badge {
    max-width: 520px;
  }

  .sf-form-section__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sf-form-section__inner > :first-child {
    order: 2;
  }

  .sf-form-section__inner > :last-child {
    order: 1;
  }

  .sf-options__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 860px) {
  .sf-steps__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sf-steps__grid::before {
    display: none;
  }

  .sf-step {
    flex-direction: row;
    text-align: left;
    gap: 20px;
    padding: 0;
  }

  .sf-step__number {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .sf-benefits__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sf-options__grid {
    grid-template-columns: 1fr;
  }

  .sf-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .sf-partners__logos {
    gap: 24px 36px;
  }
}

@media screen and (max-width: 600px) {
  .sf-hero__inner {
    padding: 56px 0 48px;
  }

  .sf-hero__ctas {
    flex-direction: column;
    gap: 10px;
  }

  .sf-hero__ctas .sf-btn {
    width: 100%;
    justify-content: center;
  }

  .sf-hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sf-form-section__embed {
    padding: 24px 20px;
  }

  .sf-partners__logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 20px 24px;
  }

  .sf-partners__logo img {
    height: 40px;
    max-width: 140px;
  }
}
