/* Shared split hero / AI layout blocks (from template 3) */
.hero-split {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 6, 162, 0.08), rgba(255, 98, 37, 0.08));
  border: 1px solid rgba(255, 98, 37, 0.15);
  color: var(--wps-brand, #ff6225);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.hero-tagline::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wps-accent, #ff06a2), var(--wps-brand, #ff6225));
}
.hero-headline {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: #0d0d0d;
  margin: 0;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--wps-accent, #ff06a2) 0%, var(--wps-brand, #ff6225) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(13, 13, 13, 0.65);
  margin: 0;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: var(--wps-radius, 18px);
  backdrop-filter: blur(10px);
}
.hero-trust .item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust .item strong {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--wps-brand, #ff6225);
}
.hero-trust .item span {
  font-size: 12px;
  color: rgba(13, 13, 13, 0.55);
}
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--wps-radius, 20px);
  overflow: hidden;
  background: #f3eef9;
  box-shadow: 0 30px 60px -22px rgba(13, 13, 13, 0.22);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-floating {
  position: absolute;
  z-index: 3;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px -14px rgba(13, 13, 13, 0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: wpsFloatY 4s ease-in-out infinite;
}
.hero-floating .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1aa362;
}
.hero-floating .text {
  font-size: 12px;
  color: #0d0d0d;
  line-height: 1.3;
}
.hero-floating .text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.hero-floating.f1 {
  top: 12%;
  left: -16px;
}
.hero-floating.f2 {
  bottom: 14%;
  right: -12px;
  animation-delay: -2s;
}
@keyframes wpsFloatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.split-layout {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.split-layout.reverse {
  direction: rtl;
}
.split-layout.reverse > * {
  direction: ltr;
}
.split-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.split-text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.split-text p {
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}
.split-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-features .feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.split-features .feat::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wps-accent, #ff06a2), var(--wps-brand, #ff6225));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-text-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.split-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--wps-radius, 20px);
}

@media (max-width: 960px) {
  .hero-split,
  .split-layout,
  .split-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}
