
.strategic-advantage {
  background-color: var(--white);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.strategic-advantage .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.advantage-content {
  flex: 6;
}

.advantage-visual {
  flex: 5;
  position: relative;
}

.section-heading {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
  line-height: 1.2;
}

.advantage-tagline {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 25px;
  font-weight: 500;
}

.advantage-intro {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.advantage-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.stat-item {
  text-align: center;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 15px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 4px 12px rgba(30, 42, 56, 0.15);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(30, 42, 56, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--accent);
}

.stat-label {
  color: aliceblue;
  font-size: 0.95rem;
  line-height: 1.3;
}

.advantage-list-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary);
}

.advantage-list {
  list-style: none;
  margin-bottom: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: transform 0.2s ease;
}

.advantage-item:hover {
  transform: translateX(5px);
}

.advantage-icon {
  color: var(--accent);
  margin-right: 15px;
  min-width: 24px;
}

.advantage-point {
  display: flex;
  flex-direction: column;
}

.advantage-point strong {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

.advantage-point span {
  color: var(--gray);
  font-size: 0.95rem;
}

.client-result {
  background-color: var(--bg-light);
  border-radius: 10px;
  padding: 25px;
  margin: 40px 0;
  border-left: 4px solid var(--accent);
}

.client-quote {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--primary);
}

.client-info {
  display: flex;
  align-items: center;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.advantage-cta {
  margin-top: 30px;
}

.map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.eu-map {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.map-hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
}

.hotspot-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgba(106, 176, 76, 0.5);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hotspot-label {
  position: absolute;
  background-color: var(--primary);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  top: -25px;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.market-comparison {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
}

.comparison-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.comparison-item {
  margin-bottom: 15px;
}

.comparison-label {
  margin-bottom: 5px;
  font-weight: 500;
}

.comparison-bar-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comparison-bar {
  padding: 8px 10px;
  border-radius: 4px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.comparison-bar.eu {
  background-color: var(--accent);
}

.comparison-bar.us {
  background-color: #b84c4c;
}

@media (max-width: 992px) {
  .strategic-advantage .container {
    flex-direction: column;
  }
  
  .advantage-stats {
    flex-direction: column;
  }
  
  .advantage-visual {
    width: 100%;
  }
}