/* ========================================
   BUTTONS STYLES
   ======================================== */

/* ========== DESKTOP 1441px+ ========== */
@media (min-width: 1441px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 8px;
    text-decoration: none;
    padding: 0 12px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #3D8073;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    gap: 16px;
    width: fit-content;
    min-width: fit-content;
    height: 47px;
    background: #262626f5;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #262626f5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 16px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    gap: 16px;
    width: fit-content;
    min-width: fit-content;
    height: 47px;
    background: #FFFFFF;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 16px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 16px;
    height: 48px;
    padding: 0 32px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 32px;
    padding: 0 12px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}

/* ========== DESKTOP 1024-1440px ========== */
@media (min-width: 1024px) and (max-width: 1440px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 8px;
    text-decoration: none;
    padding: 0 12px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    gap: 16px;
    width: fit-content;
    min-width: fit-content;
    height: 47px;
    background: #262626f5;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #1a1a1af5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 16px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 13px 24px;
    gap: 16px;
    width: fit-content;
    min-width: fit-content;
    height: 47px;
    background: #FFFFFF;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 16px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 16px;
    height: 48px;
    padding: 0 32px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 32px;
    padding: 0 12px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}

/* ========== TABLET 800-1023px ========== */
@media (min-width: 800px) and (max-width: 1023px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 8px;
    text-decoration: none;
    padding: 0 10px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    width: fit-content;
    min-width: fit-content;
    height: 44px;
    background: #262626f5;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #1a1a1af5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 15px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
    width: fit-content;
    min-width: fit-content;
    height: 44px;
    background: #FFFFFF;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 15px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 15px;
    height: 44px;
    padding: 0 28px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 30px;
    padding: 0 10px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 8px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}

/* ========== TABLET 600-799px ========== */
@media (min-width: 600px) and (max-width: 799px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 6px;
    text-decoration: none;
    padding: 0 8px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    width: fit-content;
    min-width: fit-content;
    height: 40px;
    background: #262626f5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #1a1a1af5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 14px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 16px;
    gap: 8px;
    width: fit-content;
    min-width: fit-content;
    height: 40px;
    background: #FFFFFF;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 14px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 14px;
    height: 40px;
    padding: 0 24px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 28px;
    padding: 0 8px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 6px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}

/* ========== MOBILE 420-599px ========== */
@media (min-width: 420px) and (max-width: 599px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 6px;
    text-decoration: none;
    padding: 0 6px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 6px;
    width: fit-content;
    min-width: fit-content;
    height: 36px;
    background: #262626f5;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #1a1a1af5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 13px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 6px;
    width: fit-content;
    min-width: fit-content;
    height: 36px;
    background: #FFFFFF;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 13px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 13px;
    height: 36px;
    padding: 0 20px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 26px;
    padding: 0 6px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 6px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}

/* ========== MOBILE 320-419px ========== */
@media (min-width: 320px) and (max-width: 419px) {
  .button {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 4px;
    text-decoration: none;
    padding: 0 4px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0 auto;
  }

  .button img {
    margin: 0;
    vertical-align: middle;
  }

  /* Primary Button */
  .button--primary {
    background: #262626f5;
    color: #fff;
    border-image: linear-gradient(to bottom, #444 0%, #F0F3F5 100%) 1;
  }

  .button--primary:hover {
    background: #222;
    color: #fff;
    border-image: linear-gradient(to bottom, #666 0%, #F0F3F5 100%) 1;
  }

  .button--primary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* Secondary Button */
  .button--secondary {
    background: #fff;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #f7f7fa 0%, #F0F3F5 100%) 1;
  }

  .button--secondary:hover {
    background: #f9f9f9;
    color: #1A1A1A;
    border-image: linear-gradient(to bottom, #F0F3F5 0%, #f7f7fa 100%) 1;
  }

  .button--secondary:focus-visible {
    outline: 2px solid #0037ff;
    outline-offset: 2px;
  }

  /* CTA Black Button */
  .cta-button--black {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    gap: 4px;
    width: fit-content;
    min-width: fit-content;
    height: 32px;
    background: #262626f5;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--black:hover {
    background: #262626f5;
    transform: translateY(-2px);
  }

  .cta-button--black .button-text {
    width: auto;
    height: 14px;
    display: flex;
    align-items: center;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 12px;
    line-height: 132%;
    color: #FFFFFF;
    color: color(display-p3 1.000 1.000 1.000);
    flex: none;
    order: 0;
    flex-grow: 0;
  }

  /* CTA White Button */
  .cta-button--white {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    gap: 4px;
    width: fit-content;
    min-width: fit-content;
    height: 32px;
    background: #FFFFFF;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.015em;
    font-size: 12px;
    line-height: 132%;
    color: #1A1A1A;
    color: color(display-p3 0.102 0.102 0.102);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto;
  }

  .cta-button--white:hover {
    background: #F5F5F5;
    transform: translateY(-2px);
  }

  .cta-button--white,
  .cta-button--white a {
    color: #1A1A1A !important;
  }

  /* Footer Section Buttons */
  .footer-section-wrapper .button {
    background: #fff;
    color: #1A1A1A !important;
    border: none;
  }

  .footer-section-wrapper .button:hover,
  .footer-section-wrapper .button:active {
    background: #F0F3F5;
    color: #1A1A1A !important;
  }

  /* Make Offer Section Buttons */
  .make-offer-wrapper .button {
    font-size: 12px;
    height: 32px;
    padding: 0 16px;
    background: #262626f5;
    color: #fff;
    border: 2px solid #262626f5;
    transition: all 0.3s ease;
  }

  .make-offer-wrapper .button:hover {
    background: #fff;
    color: #1f1f1f;
  }

  /* Process Section Buttons */
  .process-section .button {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.01em;
    height: 24px;
    padding: 0 4px;
    background: #fff;
    color: #1A1A1A;
    border: none;
    border-radius: 4px;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .process-section .button:hover {
    opacity: 0.9;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Default text color for buttons (excluding footer CTA) */
  .button:not(.footer-cta-button) {
    color: #3D2F25;
  }
}