.financing-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 48px 80px;
  background: linear-gradient(
    135deg,
    rgba(10, 30, 40, 0.7) 0%,
    rgba(15, 40, 50, 0.65) 50%,
    rgba(20, 50, 45, 0.65) 100%
  );
  position: relative;
  overflow: hidden;
}
#lightRaysCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.financing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(63, 208, 255, 0.22) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(166, 255, 59, 0.18) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.financing-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.financing-hero__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mascot {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
  animation: floatMascot 3s ease-in-out infinite;
}
@keyframes floatMascot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.financing-hero__content {
  text-align: left;
}
.financing-hero__title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  font-family: "Boldonse", serif;
  color: #ffffff;
  margin: 0 0 28px;
  line-height: 1.1;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.7),
    0 4px 20px rgba(0, 0, 0, 0.5);
}
.financing-hero__lead {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Section Titles */
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  font-family: "Boldonse", serif;
  color: #e8f6ff;
  margin: 0 0 16px;
  line-height: 1.2;
  text-align: center;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(63, 208, 255, 0.3);
}
.title-highlight {
  background: linear-gradient(135deg, #3fd0ff 0%, #a6ff3b 50%, #3fd0ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
  display: inline-block;
  font-weight: 900;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(63, 208, 255, 0.5));
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.section-subtitle {
  font-size: clamp(16px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  margin: 0 auto 48px;
  max-width: 800px;
  text-align: center;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.financing-intro {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.financing-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(63, 208, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(166, 255, 59, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.intro-card {
  padding: 48px 32px;
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.12) 0%,
    rgba(92, 184, 255, 0.06) 50%,
    rgba(166, 255, 59, 0.08) 100%
  );
  backdrop-filter: blur(16px);
  border: 2px solid transparent;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.4),
    rgba(166, 255, 59, 0.4)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.intro-card:hover::before {
  opacity: 1;
}
.intro-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.18) 0%,
    rgba(92, 184, 255, 0.12) 50%,
    rgba(166, 255, 59, 0.14) 100%
  );
  box-shadow:
    0 20px 60px rgba(63, 208, 255, 0.25),
    0 0 80px rgba(166, 255, 59, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.intro-icon {
  font-size: 64px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(63, 208, 255, 0.4));
  animation: iconFloat 3s ease-in-out infinite;
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.intro-card:nth-child(1) .intro-icon {
  animation-delay: 0s;
}
.intro-card:nth-child(2) .intro-icon {
  animation-delay: 0.2s;
}
.intro-card:nth-child(3) .intro-icon {
  animation-delay: 0.4s;
}
.intro-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #e8f6ff;
  margin: 0 0 16px;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(63, 208, 255, 0.4);
  line-height: 1.3;
  font-family: "Boldonse", serif;
}
.intro-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.partners-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(166, 255, 59, 0.08) 50%,
    transparent 100%
  );
}
.partners-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
.partner-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: stretch;
}
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(166, 255, 59, 0.3);
  box-shadow: 0 20px 60px rgba(166, 255, 59, 0.2);
}
.partner-card__header {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.partner-card:hover .partner-logo {
  transform: scale(1.05);
}
.partner-card__content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.partner-card__title {
  font-size: 28px;
  font-weight: 700;
  font-family: "Boldonse", serif;
  color: #e8f6ff;
  margin: 0 0 16px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}
.partner-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}
.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.partner-benefits li {
  font-size: 14px;
  color: #e8f6ff;
  padding: 10px 12px;
  background: rgba(166, 255, 59, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(166, 255, 59, 0.15);
}
.financing-process {
  padding: 100px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(
    135deg,
    rgba(63, 208, 255, 0.15) 0%,
    rgba(166, 255, 59, 0.12) 100%
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 255, 59, 0.3);
  box-shadow: 0 12px 40px rgba(166, 255, 59, 0.15);
}
.process-step__number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3fd0ff 0%, #a6ff3b 100%);
  color: #05070b;
  font-size: 24px;
  font-weight: 700;
  font-family: "Boldonse", serif;
  margin-bottom: 20px;
}
.process-step__title {
  font-size: 22px;
  font-weight: 700;
  color: #e8f6ff;
  margin: 0 0 12px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.55);
}
.process-step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 1024px) {
  .financing-hero {
    padding: 130px 40px 70px;
  }
  .financing-hero__container {
    gap: 50px;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 968px) {
  .financing-hero {
    padding: 120px 32px 60px;
    min-height: auto;
  }
  .financing-hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .financing-hero__content {
    text-align: center;
  }
  .hero-mascot {
    max-width: 280px;
  }
  .partner-card {
    grid-template-columns: 1fr;
  }
  .partner-card__header {
    min-height: 200px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .financing-hero {
    padding: 100px 24px 48px;
  }
  .financing-hero__container {
    gap: 32px;
  }
  .hero-mascot {
    max-width: 240px;
  }
  .financing-intro {
    padding: 60px 0 40px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .partners-section {
    padding: 60px 0;
  }
  .financing-process {
    padding: 60px 0;
  }
}
@media (max-width: 540px) {
  .financing-hero {
    padding: 90px 20px 40px;
  }
  .financing-hero__title {
    font-size: clamp(36px, 8vw, 56px);
  }
  .hero-mascot {
    max-width: 200px;
  }
  .partner-card {
    padding: 24px 20px;
  }
  .intro-card {
    padding: 24px 20px;
  }
}
