.hero {
  background: linear-gradient(135deg, var(--light) 0%, #e6f2ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--dark);
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-description {
  font-size: 1rem;
  color: #4a5c6b;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4a5c6b;
}

.feature-icon {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-graphic {
  flex: 1;
  position: relative;
  min-height: 400px;
}

.graphic-card {
  position: absolute;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  width: 300px;
}

.hero-card-1 {
  top: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 3;
  border-top: 4px solid var(--primary);
}

.hero-card-2 {
  bottom: 120px;
  right: 100px;
  transform: rotate(-2deg);
  z-index: 2;
  border-top: 4px solid var(--secondary);
}

.hero-card-3 {
  bottom: 0;
  right: 0;
  z-index: 1;
  border-top: 4px solid #00cc88;
}

.hero-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.8rem;
  color: var(--primary);
}

.hero-card-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.hero-card-content {
  font-size: 0.9rem;
  color: #6c7a89;
}

.hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.solution-card {
  background: var(--pure-white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(10, 26, 53, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(10, 26, 53, 0.15);
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.card-desc {
  font-size: 16px;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-features {
  list-style-type: none;
  padding-left: 0;
}

.card-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-blue);
  opacity: 0.9;
}

.card-feature::before {
  content: "✓";
  color: var(--primary-blue);
  font-weight: bold;
  margin-right: 8px;
}

.protection-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--light);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.scenario-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.1);
}

.scenario-icon-container {
  margin-bottom: 1.5rem;
}

.scenario-icon-bg {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenario-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.scenario-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.scenario-card-desc {
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.funds-flow-container {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.funds-flow-content {
  flex: 1;
  min-width: 0;
}

.funds-flow-graphic {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funds-flow-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.funds-flow-tag i {
  margin-right: 0.5rem;
}

.funds-flow-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.3;
}

.funds-flow-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.funds-flow-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.funds-flow-icon-circle {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.funds-flow-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem;
}

.funds-flow-text p {
  color: var(--text);
  margin: 0;
  line-height: 1.7;
}

.funds-flow-image {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.funds-flow-graphic-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.funds-flow-orb {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--orb-color) 0%, rgba(0, 0, 0, 0) 70%);
  opacity: 0.15;
  filter: blur(15px);
  animation: pulse 6s infinite ease-in-out;
}

.funds-flow-orb:nth-child(1) {
  animation-delay: 0s;
}
.funds-flow-orb:nth-child(2) {
  animation-delay: 1s;
}
.funds-flow-orb:nth-child(3) {
  animation-delay: 2s;
}

.funds-flow-connecting-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 992px) {
  .hero-container {
    flex-direction: column;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-title,
  .hero-subtitle,
  .hero-description {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2rem;
  }

  .hero-graphic {
    width: 100%;
    min-height: 300px;
  }

  .funds-flow-container {
    flex-direction: column;
    gap: 3rem;
  }

  .funds-flow-graphic {
    width: 100%;
  }

  .funds-flow-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .graphic-card {
    position: relative;
    top: 0;
    left: 0;
    transform: rotate(0);
    width: 100%;
    margin-bottom: 10px;
  }

  .stat-card {
    min-width: 100%;
  }

  .stat-number {
    font-size: 2.2rem;
  }
  .scenarios-grid {
    grid-template-columns: 1fr;
  }
  .funds-item {
    flex-direction: column;
    gap: 1rem;
  }

  .funds-icon-circle {
    width: 50px;
    height: 50px;
  }

  .funds-icon {
    font-size: 1.2rem;
  }

  .funds-flow-feature {
    flex-direction: column;
    gap: 1rem;
  }
  .funds-flow-graphic {
    order: 1;
  }
  .funds-flow-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}
