/* ==========================================
   CAPITALIZE FUNDING — MOBILE RESPONSIVE
   Only overrides for smaller screens.
   Desktop styles stay untouched.
   ========================================== */


/* ==========================================
   TABLET (max-width: 1024px)
   ========================================== */

@media (max-width: 1024px) {

  /* HEADER */
  header {
    padding: 20px 30px;
  }

  nav {
    gap: 30px;
  }

  .dropdown-menu {
    min-width: 600px;
    padding: 25px 40px;
  }

  /* TYPOGRAPHY */
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 42px;
  }

  /* HOMEPAGE */
  .hero-content {
    width: 100%;
    padding: 20px 30px;
    height: auto;
    min-height: 650px;
  }

  .h1-line1 {
    font-size: 42px;
    width: auto;
    max-width: 500px;
  }

  .h1-line2 {
    font-size: 42px;
    left: 100px;
  }

  .subheadline {
    font-size: 20px;
    width: auto;
    max-width: 500px;
    line-height: 36px;
  }

  .form-card {
    width: calc(100% - 76px);
    max-width: 695px;
  }

  .pigmo-huddle {
    width: 400px;
    height: 266px;
    background-size: 400px 266px;
  }

  .features-container {
    margin-left: 30px;
    margin-right: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .how-it-works-container {
    gap: 60px;
    padding: 0 30px;
  }

  .products-layout {
    padding: 0 30px;
  }

  .what-we-do-header {
    padding: 0 30px;
  }

  .what-its-for-container {
    padding: 0 30px;
  }

  .testimonials-container {
    max-width: 90%;
  }

  .testimonials .pre-heading {
    margin-left: 0;
    text-align: left;
  }

  .testimonials-card {
    gap: 40px;
  }

  .testimonials-footer {
    margin-right: 0;
    text-align: right;
  }

  .final-cta-container {
    padding: 0 30px;
  }

  .final-cta-pigmo img {
    width: 350px;
  }

  .fundability-container {
    padding: 40px;
    flex-direction: column;
    text-align: center;
  }

  .fundability-left,
  .fundability-right {
    max-width: 100%;
  }

  /* PRODUCT PAGES */
  .product-page {
    padding: 0 30px;
  }

  .product-columns {
    gap: 60px;
  }

  .product-role {
    gap: 50px;
    width: 95%;
  }

  .product-role-left {
    width: auto;
  }

  .product-role-right {
    width: auto;
  }

  .product-explainer p {
    margin-left: 60px;
    margin-right: 60px;
  }

  .product-faq {
    gap: 60px;
  }

  .product-process-hero {
    gap: 60px;
  }

  .product-get-started p {
    width: auto;
    max-width: 740px;
    padding: 0 30px;
  }

  .product-options-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* REVERSE CONSOLIDATION */
  .reverse-page {
    padding: 0 30px;
  }

  .reverse-hero p {
    margin-left: 60px;
    margin-right: 60px;
  }

  .reverse-features-container {
    width: auto;
    max-width: 100%;
  }

  .reverse-ccolumns {
    gap: 60px;
  }

  .reverse-overview-left img {
    width: 350px;
    height: 350px;
    margin-left: 0;
  }

  .reverse-overview-right {
    width: auto;
  }

  .distribution-columns {
    gap: 30px;
  }

  .reverse-final p {
    margin-left: 30px;
    margin-right: 30px;
  }

  /* HUB PAGES */
  .two-column-container {
    gap: 60px;
    padding: 0 30px;
  }

  .two-column-container-wide {
    gap: 80px;
    padding: 0 30px;
  }

  .page-hero {
    padding: 40px 30px 60px 30px;
  }

  .bottom-cta-container,
  .bottom-cta-container-reversed {
    padding: 0 30px;
  }

  .bottom-cta-pigmo img {
    width: 350px;
  }

  .bottom-cta-pigmo-small img {
    width: 300px;
  }

  /* APPLY & UPLOAD PAGES */
  .apply-hero {
    gap: 60px;
  }

  .upload-hero {
    gap: 60px;
  }

  .hero-columns {
    gap: 60px;
  }

  .debt-sheet {
    gap: 50px;
  }

  /* FOOTER */
  .footer-container {
    max-width: 90%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-left .cta-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }

  .footer-disclaimer {
    max-width: 90%;
  }

  .legal-links {
    justify-content: center;
    margin-left: 0;
  }

  .copyright {
    margin-left: 0;
  }
}


/* ==========================================
   MOBILE NAV (max-width: 768px)
   Header becomes hamburger menu
   ========================================== */

@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 15px 20px;
    position: relative;
  }

  .logo {
    height: 45px;
  }

  /* HAMBURGER BUTTON */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HIDE DESKTOP NAV */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 40px;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  nav.mobile-open {
    right: 0;
  }

  nav > a {
    font-size: 18px;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    padding: 0;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
  }

  nav:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  nav > a:first-child:hover ~ .dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .dropdown-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .dropdown-content.active {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu a {
    padding: 10px 0;
    padding-left: 15px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  /* HIDE CTA BUTTON IN HEADER ON MOBILE */
  header > .cta-button {
    display: none;
  }

  /* MOBILE NAV OVERLAY */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }
}


/* ==========================================
   MOBILE (max-width: 768px)
   Layout & typography overrides
   ========================================== */

@media (max-width: 768px) {

  /* TYPOGRAPHY */
  h1 {
    font-size: 34px;
    margin-bottom: 15px;
  }

  h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 20px;
  }

  .subheading {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .preheading {
    font-size: 18px;
  }

  body {
    font-size: 16px;
  }

  .body-sm {
    font-size: 16px;
  }

  /* SECTIONS */
  .section {
    padding: 50px 0;
  }

  /* CONTAINERS - add side padding */
  .container,
  .container-narrow,
  .container-small,
  .container-content,
  .container-sized,
  .container-wide,
  .container-mid,
  .container-avg,
  .container-full,
  .container-aye,
  .container-max {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* CARDS */
  .card {
    padding: 20px;
  }

  .card-elevated {
    padding: 25px;
  }

  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    padding: 10px 30px;
    font-size: 16px;
  }


  /* ==========================================
     HOMEPAGE — MOBILE
     ========================================== */

  /* HERO */
  .hero-content {
    width: 100%;
    height: auto;
    padding: 20px 20px 30px;
    min-height: auto;
    position: relative;
  }

  .pigmo-huddle {
    display: none;
  }

  .pigmo-bonk {
    display: none;
  }

  .h1-line1,
  .h1-line2 {
    position: static;
    width: auto;
    font-size: 32px;
  }

  .h1-line2 {
    margin-top: -5px;
  }

  .subheadline {
    position: static;
    width: auto;
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
  }

  .form-card {
    position: static;
    width: 100%;
    height: auto;
    padding: 25px;
    margin-top: 25px;
  }

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

  .form-row {
    flex-direction: column;
  }

  .slider-label {
    font-size: 16px;
  }

  /* FEATURES */
  .features {
    padding: 40px 0;
  }

  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .feature {
    width: 100%;
    max-width: 300px;
  }

  /* WHAT WE DO */
  .what-we-do-header {
    padding: 0 20px;
  }

  .what-we-do h2 {
    font-size: 34px;
  }

  .products-layout {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .pigmo-money {
    width: 200px;
    margin: 0 auto;
  }

  .products-right {
    flex-direction: column;
    width: 100%;
  }

  .product-card {
    width: 100%;
  }

  .product-card.small,
  .product-card.tall {
    height: auto;
    padding: 28px;
  }

  /* HOW IT WORKS */
  .how-it-works-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .how-left {
    max-width: 100%;
  }

  .how-left h2 {
    font-size: 34px;
  }

  .how-right {
    max-width: 100%;
  }

  /* FUNDABILITY */
  .fundability-container {
    padding: 30px 25px;
    border-radius: 20px;
    margin: 0 20px;
  }

  .fundability-right h2 {
    font-size: 30px;
  }

  /* WHAT IT'S FOR */
  .what-its-for-container {
    padding: 0 20px;
  }

  .what-its-for h2 {
    font-size: 34px;
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }

  /* TESTIMONIALS */
  .testimonials-container {
    max-width: 100%;
    padding: 0 20px;
  }

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

  .testimonials .pre-heading {
    margin-left: 0;
  }

  .testimonials-card {
    flex-direction: column;
    gap: 30px;
    padding: 30px 25px;
  }

  .testimonials-footer {
    margin-right: 0;
    text-align: center;
  }

  /* FINAL CTA */
  .final-cta-container {
    padding: 0 20px;
  }

  .final-cta h2 {
    font-size: 34px;
  }

  .final-cta-bottom {
    flex-direction: column;
  }

  .final-cta-pigmo img {
    width: 280px;
    margin: 0 auto;
    display: block;
  }

  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }


  /* ==========================================
     PRODUCT PAGES — MOBILE
     ========================================== */

  .product-page {
    padding: 0 20px;
  }

  .product-columns {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .product-left {
    max-width: 100%;
  }

  .product-left-text h1 {
    font-size: 34px;
  }

  .product-eyebrow {
    font-size: 20px;
  }

  .product-bullets {
    margin-left: 0;
  }

  .product-bullet-row {
    width: 100%;
  }

  .product-right {
    max-width: 100%;
    margin-top: 0;
  }

  /* STATS */
  .stats-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .product-stat-top {
    flex-direction: column;
    gap: 20px;
  }

  /* ROLE SECTION */
  .product-role {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    padding: 50px 0;
  }

  .product-role-left {
    width: 100%;
  }

  .product-role-left h2 {
    font-size: 34px;
    text-align: left;
    margin-bottom: 30px;
  }

  .product-role-right {
    width: 100%;
  }

  /* EXPLAINER */
  .product-explainer h2 {
    font-size: 34px;
  }

  .product-explainer p {
    margin-left: 0;
    margin-right: 0;
  }

  /* USE CASES GRID */
  .product-use-cases h2 {
    font-size: 34px;
  }

  .product-use-cases-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .product-use-case p {
    margin-bottom: 20px;
  }

  /* BENEFITS */
  .product-benefits h2 {
    font-size: 34px;
  }

  .product-benefits-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .product-benefit-text h3,
  .product-benefit-text p {
    max-width: 100%;
  }

  /* QUALIFICATIONS */
  .product-qualify-header h2 {
    font-size: 34px;
  }

  .product-qualification-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  /* PROCESS */
  .product-process-hero {
    flex-direction: column;
    gap: 30px;
  }

  .product-process-left h2 {
    font-size: 34px;
  }

  .product-process-left {
    max-width: 100%;
  }

  .product-process-right {
    max-width: 100%;
  }

  .product-process-step {
    max-width: 100%;
  }

  .product-process-step p {
    margin-left: 0;
  }

  /* GET STARTED */
  .product-get-started h2 {
    font-size: 34px;
  }

  .product-get-started p {
    width: auto;
    padding: 0;
  }

  /* FAQ */
  .product-faq {
    flex-direction: column;
    gap: 30px;
  }

  .product-faq-right h2 {
    font-size: 34px;
    text-align: left;
  }

  /* OPTIONS */
  .product-options-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }


  /* ==========================================
     REVERSE CONSOLIDATION — MOBILE
     ========================================== */

  .reverse-page {
    padding: 0 20px;
  }

  .reverse-hero h1 {
    font-size: 34px;
  }

  .reverse-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-button-block {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .reverse-features-container {
    flex-direction: column;
    width: auto;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
  }

  .reverse-overview {
    flex-direction: column;
    gap: 30px;
  }

  .reverse-overview-left {
    max-width: 100%;
    text-align: center;
  }

  .reverse-overview-left img {
    width: 280px;
    height: 280px;
    margin-left: 0;
  }

  .reverse-overview-right {
    width: 100%;
  }

  .reverse-overview-right h2 {
    font-size: 34px;
  }

  .reverse-ccolumns {
    flex-direction: column;
    gap: 30px;
  }

  .reverse-example h2 {
    font-size: 34px;
  }

  .distribution-columns {
    flex-direction: column;
    gap: 30px;
  }

  .dcolumn-left,
  .dcolumn-right {
    max-width: 100%;
  }

  .reverse-qualification-container {
    flex-direction: column;
    gap: 25px;
    align-items: center;
  }

  .reverse-apply-steps {
    flex-direction: column;
    gap: 30px;
  }

  .reverse-step p {
    max-width: 100%;
  }

  .reverse-columns {
    flex-direction: column;
  }

  .reverse-breakdown h2 {
    font-size: 34px;
  }

  .reverse-final h2 {
    font-size: 34px;
  }

  .reverse-final p {
    margin-left: 0;
    margin-right: 0;
  }


  /* ==========================================
     HUB PAGES — MOBILE
     ========================================== */

  .page-hero {
    padding: 30px 20px 40px 20px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero-subtitle {
    font-size: 18px;
  }

  /* TWO COLUMN LAYOUT */
  .two-column-container,
  .two-column-container-wide {
    flex-direction: column-reverse;
    gap: 30px;
    padding: 0 20px;
  }

  .sidebar {
    width: 100%;
    padding: 30px 25px 40px;
  }

  .page-content h2 {
    font-size: 32px;
  }

  /* BOTTOM CTA */
  .bottom-cta-container,
  .bottom-cta-container-reversed {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }

  .bottom-cta-heading {
    font-size: 32px;
  }

  .bottom-cta-pigmo img {
    width: 250px;
    margin: 0 auto;
  }

  .bottom-cta-pigmo-small img {
    width: 220px;
    margin: 0 auto;
  }

  /* APPLE GRID */
  .apple {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }


  /* ==========================================
     APPLY / UPLOAD PAGES — MOBILE
     ========================================== */

  .apply-page,
  .upload-stips-page,
  .debt-sheet-page {
    padding: 0 20px;
  }

  .apply-hero {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .apply-left,
  .apply-right {
    max-width: 100%;
  }

  .apply-right {
    margin-top: 0;
  }

  .apply-heading {
    font-size: 32px;
  }

  .stats-row {
    flex-direction: column;
    gap: 30px;
  }

  .stats-heading {
    font-size: 32px;
  }

  /* UPLOAD HERO */
  .upload-hero {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .upload-left,
  .upload-right {
    max-width: 100%;
  }

  .upload-heading {
    font-size: 34px;
  }

  .upload-form {
    margin-left: 0;
    margin-right: 0;
  }

  /* UPLOAD STIPS */
  .hero-columns {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .stip-feature {
    width: 100%;
  }

  .right-body-text h1 {
    font-size: 34px;
  }

  /* DEBT SCHEDULE */
  .debt-sheet {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .left-debt,
  .right-debt {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .debt-feature {
    width: 100%;
  }

  .debt-upload {
    width: 100%;
  }

  .right-debt-text h1 {
    font-size: 34px;
  }

  /* PROCESS SECTION */
  .process-container {
    flex-direction: column;
    gap: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .process {
    width: 100%;
  }

  .subhead {
    font-size: 26px;
    margin-left: 0;
    text-align: center;
  }

  .afterthought p {
    margin-bottom: 60px;
  }

  /* OTHER OPTIONS */
  .other-row {
    flex-direction: column;
    gap: 30px;
  }


  /* ==========================================
     INLINE STYLE OVERRIDES — MOBILE
     These use !important to beat inline
     style="" attributes on individual pages.
     ========================================== */

  /* Force all inline flex layouts to stack vertically */
  [style*="display: flex"][style*="gap:"] {
    flex-direction: column !important;
    gap: 30px !important;
  }

  /* Kill large inline margins that squish content */
  [style*="margin-left:"][style*="margin-right:"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Fix inline percentage widths that assume side-by-side layout */
  [style*="width: 35%"],
  [style*="width: 30%"] {
    width: 100% !important;
  }

  [style*="width: 60%"],
  [style*="width: 70%"] {
    width: 100% !important;
  }

  /* Fix oversized inline font-size on hero headings */
  h1[style*="font-size: 65px"],
  h1[style*="font-size: 60px"] {
    font-size: 34px !important;
  }

  /* Cap oversized inline images */
  img[style*="width: 487px"],
  img[style*="width: 500px"],
  img[style*="width: 450px"] {
    width: 100% !important;
    max-width: 300px !important;
    height: auto !important;
  }

  /* Fix inline margin-left on text content */
  p[style*="margin-left: 100px"],
  p[style*="margin-left: 120px"],
  p[style*="margin-left: 150px"],
  div[style*="margin-left: 190px"],
  div[style*="margin-left: 100px"] {
    margin-left: 0 !important;
  }

  p[style*="margin-right: 100px"],
  p[style*="margin-right: 120px"],
  p[style*="margin-right: 150px"],
  div[style*="margin-right: 190px"],
  div[style*="margin-right: 100px"] {
    margin-right: 0 !important;
  }

  /* Ensure sections have side padding */
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }


  /* ==========================================
     FOOTER — MOBILE
     ========================================== */

  .footer {
    padding: 40px 0 30px 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }

  .footer-left {
    max-width: 100%;
  }

  .footer-left .cta-button {
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
  }

  .footer-right {
    max-width: 100%;
  }

  .footer-newsletter {
    margin-left: 0;
    margin-right: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    text-align: left;
    width: 100%;
  }

  .footer-column {
    align-items: flex-start;
  }

  .footer-column a {
    font-size: 13px;
    white-space: nowrap;
  }

  .footer-column h4 {
    font-size: 16px;
  }

  .footer-disclaimer {
    flex-direction: column;
    max-width: 90%;
    padding: 30px 20px 0;
  }

  .legal-links {
    justify-content: center;
    margin-left: 0;
  }

  .copyright {
    margin-left: 0;
  }
}


/* ==========================================
   SMALL MOBILE (max-width: 480px)
   ========================================== */

@media (max-width: 480px) {

  /* TYPOGRAPHY */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 28px;
  }

  .h1-line1,
  .h1-line2 {
    font-size: 28px;
  }

  /* USE CASE GRIDS - single column */
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .product-use-cases-container {
    grid-template-columns: 1fr;
  }

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

  /* CARDS */
  .testimonials-card {
    padding: 25px 20px;
  }

  .product-card {
    padding: 20px;
  }

  .sidebar {
    padding: 25px 20px 35px;
  }

  /* FORM */
  .form-card {
    padding: 20px;
  }

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

  /* HOMEPAGE HERO */
  .subheadline {
    font-size: 16px;
    line-height: 26px;
  }

  /* PRODUCT PAGES */
  .product-left-text h1 {
    font-size: 28px;
  }

  .product-explainer h2,
  .product-use-cases h2,
  .product-benefits h2,
  .product-qualify-header h2,
  .product-process-left h2,
  .product-get-started h2,
  .product-faq-right h2 {
    font-size: 28px;
  }

  /* REVERSE CONSOLIDATION */
  .reverse-hero h1,
  .reverse-overview-right h2,
  .reverse-example h2,
  .reverse-breakdown h2,
  .reverse-final h2 {
    font-size: 28px;
  }

  /* HUB PAGES */
  .page-hero h1 {
    font-size: 28px;
  }

  .page-content h2 {
    font-size: 28px;
  }

  .bottom-cta-heading {
    font-size: 28px;
  }

  /* APPLY/UPLOAD */
  .apply-heading {
    font-size: 28px;
  }

  .upload-heading {
    font-size: 28px;
  }

  .stats-heading {
    font-size: 28px;
  }

  .right-body-text h1,
  .right-debt-text h1 {
    font-size: 28px;
  }
}
