/* Borrow Page Styles */

:root {
  --borrow-bg-white: #FFFFFF;
  --borrow-bg-light: #F5F6FE;
  --borrow-bg-dark: #000628;
  --borrow-text-title: #222222;
  --borrow-text-body: #64748B;
  --borrow-text-light: #BEC7D5;
  --borrow-primary: #2C52F5;
  --borrow-primary-hover: #2445d4;
  --borrow-green: #10B981;
  --borrow-border: #DEE0E4;
}

/* ============================================
   HERO SECTION
   ============================================ */
.rand-borrow__hero {
  background-color: var(--borrow-bg-dark);
  padding: 80px 16px 40px;
  padding-top: 100px;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .rand-borrow__hero {
    padding: 100px 60px 50px;
    padding-top: 130px;
  }
}

.rand-borrow__hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.rand-borrow__hero-content {
  flex: 0 0 auto;
  width: 100%;
  order: 2;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-content {
    flex: 1;
    max-width: 400px;
    order: 0;
    text-align: right;
  }
}

.rand-borrow__hero-crypto-icons {
  display: grid;
  grid-template-columns: max-content;
  grid-template-rows: max-content;
  margin-bottom: 12px;
  justify-content: center;
  width: 70px;
  height: 40px;
  position: relative;
  margin: 0 auto 12px;
}

@media (min-width: 992px) {
  .rand-borrow__hero-crypto-icons {
    justify-content: flex-end;
    margin: 0 0 12px auto;
  }
}

.rand-borrow__hero-crypto-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  grid-row: 1;
  grid-column: 1;
}

.rand-borrow__hero-crypto-icon--eurc {
  margin-left: 0;
  z-index: 2;
}

.rand-borrow__hero-crypto-icon--btc {
  margin-left: 30px;
  z-index: 1;
}

.rand-borrow__hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-title {
    font-size: 50px;
    line-height: 55px;
    text-align: right;
  }
}

.rand-borrow__hero-title span {
  color: #ffffff;
}

.rand-borrow__hero-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  order: 4;
}

@media (min-width: 992px) {
  .rand-borrow__hero-image {
    flex: 0 1 auto;
    order: 0;
  }
}

.rand-borrow__hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 6, 40, 0.00) 50%, #000628 95%);
  pointer-events: none;
}

.rand-borrow__hero-image img {
  max-width: 280px;
  height: auto;
}

@media (min-width: 992px) {
  .rand-borrow__hero-image img {
    max-width: 320px;
  }
}

.rand-borrow__hero-right {
  display: none;
}

@media (min-width: 992px) {
  .rand-borrow__hero-right {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 0;
    text-align: left;
    align-items: flex-start;
  }
}

.rand-borrow__hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ffffff;
}

/* Mobile-only badge */
.rand-borrow__hero-badge--mobile {
  display: flex;
  order: 1;
  justify-content: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-badge--mobile {
    display: none;
  }
}

/* Mobile-only description */
.rand-borrow__hero-description--mobile {
  display: block;
  order: 3;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-description--mobile {
    display: none;
  }
}

.rand-borrow__hero-badge-icon {
  width: 37px;
  height: 24px;
  flex-shrink: 0;
}

/* Store Badges */
.rand-borrow__hero-store-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.rand-borrow__hero-store-badges--mobile {
  display: flex;
  order: 5;
  align-items: center;
  width: 100%;
  justify-content: center;
}

@media (min-width: 992px) {
  .rand-borrow__hero-store-badges--mobile {
    display: none;
  }
}

.rand-borrow__hero-store-badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
}

.rand-borrow__hero-store-badge img {
  height: 36px;
  width: auto;
  display: block;
}

.rand-borrow__hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-light);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__hero-description {
    font-size: 20px;
  }
}

.rand-borrow__hero-cta {
  display: none;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 52px;
  padding: 8px 20px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

@media (min-width: 992px) {
  .rand-borrow__hero-cta {
    display: inline-flex;
  }
}

.rand-borrow__hero-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

.rand-borrow__hero-disclaimer {
  max-width: 1320px;
  margin: 32px auto 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--borrow-text-light);
  text-align: left;
  padding: 0 16px;
}

.rand-borrow__hero-disclaimer a {
  color: #ffffff;
  font-weight: 700;
}

@media (min-width: 992px) {
  .rand-borrow__hero-disclaimer {
    text-align: center;
    padding: 0 60px;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.rand-borrow__stats {
  background-color: var(--borrow-bg-light);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__stats {
    padding: 100px 60px;
  }
}

.rand-borrow__stats-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-borrow__stats-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.rand-borrow__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.rand-borrow__stat-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.rand-borrow__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  color: var(--borrow-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__stat-label {
    font-size: 24px;
  }
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.rand-borrow__calculator {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__calculator {
    padding: 150px 60px;
  }
}

.rand-borrow__calculator-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .rand-borrow__calculator-container {
    gap: 100px;
  }
}

.rand-borrow__calculator-content {
  flex: 1;
  min-width: 0;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-content {
    flex: 1;
    max-width: 573px;
  }
}

.rand-borrow__calculator-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-title {
    font-size: 50px;
  }
}

.rand-borrow__calculator-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

.rand-borrow__calculator-subtitle-disclaimer {
    font-size: 12px;
    margin-top: 0;
}

.rand-borrow__calculator-subtitle-disclaimer.mobile {
  display: block;
}

.rand-borrow__calculator-subtitle-disclaimer.desktop {
  display: none;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-subtitle-disclaimer {
    margin-top: 60px;
  }

  .rand-borrow__calculator-subtitle-disclaimer.mobile {
    display: none;
  }

  .rand-borrow__calculator-subtitle-disclaimer.desktop {
    display: block;
  }
}

@media (min-width: 992px) {
  .rand-borrow__calculator-subtitle {
    font-size: 20px;
  }
}

.rand-borrow__calculator-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-form {
    flex: 1;
    max-width: 573px;
  }
}

.rand-borrow__calculator-field {
  background-color: var(--borrow-bg-white);
  border: 1px solid var(--borrow-border);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-sizing: border-box;
}

.rand-borrow__calculator-field-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-field-label {
    font-size: 20px;
  }
}

.rand-borrow__calculator-field-value {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--borrow-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__calculator-field-value {
    font-size: 32px;
  }
}

.rand-borrow__calculator-input {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--borrow-text-title);
  border: none;
  background: transparent;
  padding: 0;
  padding-right: 120px;
  width: 100%;
  outline: none;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .rand-borrow__calculator-input {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .rand-borrow__calculator-input {
    font-size: 32px;
  }
}

.rand-borrow__calculator-input:focus {
  outline: none;
}

.rand-borrow__calculator-input::placeholder {
  color: var(--borrow-text-body);
}

.rand-borrow__calculator-currency {
  position: absolute;
  top: auto;
  bottom: 16px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: none;
  cursor: default;
}

@media (min-width: 768px) {
  .rand-borrow__calculator-currency {
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .rand-borrow__calculator-currency {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.rand-borrow__calculator-currency img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .rand-borrow__calculator-currency img {
    width: 32px;
    height: 32px;
  }
}

.rand-borrow__calculator-currency span {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--borrow-text-title);
}

@media (min-width: 768px) {
  .rand-borrow__calculator-currency span {
    font-size: 20px;
  }
}

@media (min-width: 992px) {
  .rand-borrow__calculator-currency span {
    font-size: 24px;
  }
}

.rand-borrow__calculator-currency--dropdown {
  cursor: pointer;
}

.rand-borrow__calculator-currency--dropdown svg {
  width: 24px;
  height: 24px;
  color: var(--borrow-text-title);
  flex-shrink: 0;
}

.rand-borrow__calculator-swap {
  padding: 4px;
}

.rand-borrow__calculator-swap svg {
  width: 32px;
  height: 32px;
  transform: rotate(90deg);
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.rand-borrow__feature {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__feature {
    padding: 100px 60px;
  }
}

.rand-borrow__feature-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-borrow__feature-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.rand-borrow__feature-container--reversed {
  flex-direction: column;
}

@media (min-width: 992px) {
  .rand-borrow__feature-container--reversed {
    flex-direction: row-reverse;
  }
}

.rand-borrow__feature-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rand-borrow__feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0 0 24px;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-borrow__feature-title {
    font-size: 50px;
    text-align: left;
  }
}

.rand-borrow__feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-borrow__feature-description {
    font-size: 20px;
    text-align: left;
  }
}

.rand-borrow__feature-image {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: var(--borrow-bg-light);
  border-radius: 6px;
  width: 100%;
  max-width: 573px;
  height: 300px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .rand-borrow__feature-image {
    height: 573px;
    width: 573px;
    max-width: none;
    flex: 0 0 573px;
    margin: 0;
  }
}

.rand-borrow__feature-image img {
  max-width: 100%;
  height: auto;
}

.rand-borrow__feature-video {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

/* Feature Section - Dark Variant */
.rand-borrow__feature--dark {
  background-color: var(--borrow-bg-dark);
}

.rand-borrow__feature--dark .rand-borrow__feature-title {
  color: #ffffff;
}

.rand-borrow__feature--dark .rand-borrow__feature-description {
  color: var(--borrow-text-light);
}

.rand-borrow__feature--dark .rand-borrow__feature-image {
  background-color: rgba(255, 255, 255, 0.05);
}

/* ============================================
   COST SECTION
   ============================================ */
.rand-borrow__cost {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__cost {
    padding: 150px 60px;
  }
}

.rand-borrow__cost-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.rand-borrow__cost-header {
  margin-bottom: 60px;
}

.rand-borrow__cost-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-borrow__cost-title {
    font-size: 50px;
  }
}

.rand-borrow__cost-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__cost-subtitle {
    font-size: 20px;
  }
}

.rand-borrow__cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .rand-borrow__cost-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rand-borrow__cost-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.rand-borrow__cost-icon {
  width: 50px;
  height: 50px;
}

.rand-borrow__cost-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--borrow-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__cost-card-title {
    font-size: 24px;
  }
}

.rand-borrow__cost-card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__cost-card-description {
    font-size: 18px;
  }
}

.rand-borrow__cost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-borrow__cost-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.rand-borrow__reviews {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__reviews {
    padding: 150px 60px;
  }
}

.rand-borrow__reviews-container {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

.rand-borrow__reviews-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0 0 60px;
}

@media (min-width: 992px) {
  .rand-borrow__reviews-title {
    font-size: 50px;
    margin-bottom: 80px;
  }
}

.rand-borrow__reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .rand-borrow__reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .rand-borrow__reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rand-borrow__review-card {
  background-color: var(--borrow-bg-light);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  min-height: 250px;
}

.rand-borrow__review-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
  flex: 1;
}

@media (min-width: 992px) {
  .rand-borrow__review-text {
    font-size: 16px;
  }
}

.rand-borrow__review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rand-borrow__review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--borrow-text-title);
}

@media (min-width: 992px) {
  .rand-borrow__review-name {
    font-size: 16px;
  }
}

.rand-borrow__review-stars {
  display: flex;
  gap: 4px;
}

.rand-borrow__review-stars svg {
  width: 24px;
  height: 24px;
}

.rand-borrow__reviews-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-borrow__reviews-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   CTA SECTION
   ============================================ */
.rand-borrow__cta {
  background-color: var(--borrow-bg-light);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__cta {
    padding: 0 60px;
  }
}

.rand-borrow__cta-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 992px) {
  .rand-borrow__cta-container {
    flex-direction: row;
    gap: 60px;
  }
}

.rand-borrow__cta-image {
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .rand-borrow__cta-image {
    width: 573px;
  }
}

.rand-borrow__cta-image img {
  max-width: 300px;
  height: auto;
}

@media (min-width: 992px) {
  .rand-borrow__cta-image img {
    max-width: 100%;
    height: 659px;
    object-fit: cover;
  }
}

.rand-borrow__cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 40px 0;
}

@media (min-width: 992px) {
  .rand-borrow__cta-content {
    align-items: flex-start;
    text-align: left;
    padding: 150px 0;
  }
}

.rand-borrow__cta-icon {
  width: 70px;
  height: 70px;
}

.rand-borrow__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rand-borrow__cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__cta-title {
    font-size: 50px;
  }
}

.rand-borrow__cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__cta-subtitle {
    font-size: 20px;
  }
}

.rand-borrow__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  margin-top: 16px;
}

.rand-borrow__cta-button:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.rand-borrow__faq {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__faq {
    padding: 150px 60px;
  }
}

.rand-borrow__faq-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-borrow__faq-container {
    flex-direction: row;
    gap: 100px;
  }
}

.rand-borrow__faq-header {
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .rand-borrow__faq-header {
    width: 573px;
  }
}

.rand-borrow__faq-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.rand-borrow__faq-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__faq-title {
    font-size: 50px;
  }
}

.rand-borrow__faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rand-borrow__faq-item {
  border-bottom: 1px solid var(--borrow-border);
}

.rand-borrow__faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--borrow-text-title);
  text-align: left;
  gap: 16px;
}

@media (min-width: 992px) {
  .rand-borrow__faq-question {
    font-size: 20px;
  }
}

.rand-borrow__faq-question:hover {
  color: var(--borrow-primary);
}

.rand-borrow__faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-top: 4px;
}

.rand-borrow__faq-item.active .rand-borrow__faq-icon {
  transform: rotate(180deg);
}

.rand-borrow__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rand-borrow__faq-item.active .rand-borrow__faq-answer {
  max-height: 1000px;
}

.rand-borrow__faq-answer-text {
  padding-bottom: 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

.rand-borrow__faq-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  margin-bottom: 24px;
}

.rand-borrow__faq-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   SELLING COST SECTION
   ============================================ */
.rand-borrow__selling-cost {
  background-color: var(--borrow-bg-white);
  padding: 80px 16px;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost {
    padding: 150px 60px;
  }
}

.rand-borrow__selling-cost-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost-container {
    gap: 80px;
  }
}

.rand-borrow__selling-cost-header {
  text-align: center;
}

.rand-borrow__selling-cost-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--borrow-text-title);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost-title {
    font-size: 50px;
  }
}

.rand-borrow__selling-cost-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost-subtitle {
    font-size: 20px;
  }
}

.rand-borrow__selling-cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .rand-borrow__selling-cost-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.rand-borrow__selling-cost-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.rand-borrow__selling-cost-icon {
  width: 50px;
  height: 50px;
  color: var(--borrow-primary);
  object-fit: contain;
  object-position: center;
  display: block;
}

.rand-borrow__selling-cost-card-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: var(--borrow-text-title);
  margin: 0 0 12px;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost-card-title {
    font-size: 24px;
  }
}

.rand-borrow__selling-cost-card-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--borrow-text-body);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__selling-cost-card-description {
    font-size: 20px;
  }
}

.rand-borrow__selling-cost-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-borrow__selling-cost-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   CUSTODY SECTION
   ============================================ */
.rand-borrow__custody {
  background-color: var(--borrow-bg-dark);
  padding: 80px 16px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .rand-borrow__custody {
    padding: 150px 60px;
  }
}

.rand-borrow__custody-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .rand-borrow__custody-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.rand-borrow__custody-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
}

.rand-borrow__custody-image img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: lighten;
}

@media (min-width: 992px) {
  .rand-borrow__custody-image {
    flex: 1;
    max-width: 573px;
  }

  .rand-borrow__custody-image img {
    max-width: 100%;
    height: 498px;
    object-fit: cover;
  }
}

.rand-borrow__custody-content {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-borrow__custody-content {
    flex: 1;
    max-width: 573px;
    gap: 52px;
  }
}

.rand-borrow__custody-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  color: var(--borrow-text-light);
  margin: 0 0 24px;
}

.rand-borrow__custody-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__custody-title {
    font-size: 50px;
  }
}

.rand-borrow__custody-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rand-borrow__custody-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rand-borrow__custody-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rand-borrow__custody-feature-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) {
  .rand-borrow__custody-feature-text {
    font-size: 20px;
  }
}

.rand-borrow__custody-feature-text a {
  color: #ffffff;
  text-decoration: underline;
}

.rand-borrow__custody-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--borrow-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-borrow__custody-cta:hover {
  background-color: var(--borrow-primary-hover);
  color: #ffffff;
}

/* ============================================
   CALCULATOR IMPROVEMENTS
   ============================================ */

.rand-borrow__calculator-currency--dropdown {
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.rand-borrow__calculator-currency--dropdown:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.rand-borrow__calculator-dropdown {
  position: absolute;
  bottom: -8px;
  right: 16px;
  transform: translateY(100%);
  background: #ffffff;
  border: 1px solid var(--borrow-border);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  display: none;
  min-width: 120px;
}

@media (min-width: 768px) {
  .rand-borrow__calculator-dropdown {
    right: 24px;
  }
}

.rand-borrow__calculator-dropdown.active {
  display: block;
}

.rand-borrow__calculator-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.rand-borrow__calculator-dropdown-item:hover {
  background-color: var(--borrow-bg-light);
}

.rand-borrow__calculator-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.rand-borrow__calculator-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

.rand-borrow__calculator-dropdown-item img {
  width: 24px;
  height: 24px;
}

.rand-borrow__calculator-dropdown-item span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--borrow-text-title);
}

.rand-borrow__calculator-loading {
  font-size: 12px;
  color: var(--borrow-text-body);
  text-align: center;
  padding: 8px;
}

.rand-borrow__calculator-error {
  font-size: 12px;
  color: #ef4444;
  text-align: center;
  padding: 8px;
}
