/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  gap: 80px;
}

.split-image {
  flex: 1;
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, var(--tealLight), var(--teal));
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.2)"/></svg>') repeat;
  border-radius: 32px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  z-index: 10;
  width: 100%;
  max-width: 360px;
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--deep);
  font-weight: 500;
}

.check-list li > span:first-child {
  color: var(--accent);
  font-weight: bold;
  flex-shrink: 0;
}

.split-text {
  flex: 1;
}

.advantage-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.advantage-item {
  display: flex;
  gap: 24px;
}

.adv-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  background: var(--bg-soft);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  flex-shrink: 0;
}

.advantage-item h3 {
  font-size: 20px;
  color: var(--deep);
  margin-bottom: 8px;
}

.advantage-item p {
  color: var(--text-soft);
  font-size: 15px;
}

