/* Financing Promo Section */
.financing-promo-section {
  background-color: #1A1A1A;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.financing-promo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.financing-promo-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 80%;
  border: 2px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translateY(-50%) rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.financing-promo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.financing-promo-visuals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -20px;
  position: relative;
  min-height: 400px;
  z-index: 2;
  padding-top: 40px;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 35px;
  padding: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.phone-mockup-1 {
  transform: rotate(-8deg);
  z-index: 2;
  margin-right: -40px;
}

.phone-mockup-2 {
  transform: rotate(8deg);
  z-index: 1;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.phone-header i {
  font-size: 14px;
  color: #1a1a1a;
}

.phone-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.account-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.account-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.account-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  padding: 5px;
  position: relative;
}

.account-logo::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: white;
  border-radius: 4px;
  z-index: 1;
}

.account-logo::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  border-radius: 2px;
  z-index: 2;
  opacity: 0.3;
}

.account-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.account-header p {
  font-size: 11px;
  color: #666;
  margin: 0;
}

.balance-section {
  margin-top: 15px;
}

.balance-section p {
  font-size: 11px;
  color: #666;
  margin: 0 0 8px 0;
}

.balance-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.pie-chart {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(
    #ff6600 0% 25%,
    #ffb366 25% 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-center {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-amount {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}

.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  margin-top: 15px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-label {
  font-size: 11px;
  color: #666;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  padding-left: 12px;
}

.stat-value::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ff6600;
  border-radius: 50%;
}

.financing-promo-content {
  color: white;
  text-align: center;
}

.financing-promo-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.financing-promo-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.financing-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
  align-items: center;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 300px;
  margin: 0;
}

.step-number {
  font-size: 24px;
  font-weight: 700;
  color: #ff6600;
  width: 60px;
  text-align: right;
  flex-shrink: 0;
  display: block;
}

.step-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.financing-cta-btn {
  display: inline-block;
  background: #ff6600;
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.financing-cta-btn:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

/* Desktop Styles */
@media screen and (min-width: 800px) {
  .financing-promo-section {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .financing-promo-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }

  .financing-promo-visuals {
    flex: 1;
    min-height: 500px;
    padding-top: 0;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .phone-mockup-1 {
    margin-right: -60px;
  }

  .financing-promo-content {
    flex: 1;
    text-align: left;
    max-width: 500px;
  }

  .financing-promo-content h2 {
    font-size: 42px;
  }

  .financing-promo-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .financing-steps {
    align-items: flex-start;
  }

  .step-item {
    width: 100%;
  }
}

/* Mobile Styles */
@media screen and (max-width: 799px) {
  .financing-promo-section {
    padding: 60px 20px;
  }

  .financing-promo-container {
    border-radius: 12px;
    overflow: hidden;
  }

  .phone-mockup {
    width: 160px;
    height: 320px;
  }

  .phone-mockup-1 {
    margin-right: -30px;
  }

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

  .financing-promo-content p {
    font-size: 14px;
  }

  .step-number {
    font-size: 20px;
    min-width: 40px;
  }

  .step-text {
    font-size: 16px;
  }
}

