/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 188, 212, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(79, 147, 156, 0.15), transparent 40%),
    linear-gradient(180deg, #f0f9fa 0%, #ffffff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: 80px;
  border-radius: 50%;
  background: rgba(31, 79, 87, 0.04);
}

html[dir="rtl"] .hero::before {
  right: auto;
  left: -250px;
}

.hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.06);
}

html[dir="rtl"] .hero::after {
  left: auto;
  right: -120px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  z-index: 1;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.15);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(0, 188, 212, 0.15); }
  50% { box-shadow: 0 0 0 12px rgba(0, 188, 212, 0.05); }
}

/* Title */
.hero-title {
  font-size: clamp(42px, 6.5vw, 74px);
  line-height: 1.05;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

html[dir="rtl"] .hero-title {
  letter-spacing: 0;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 188, 212, 0.2);
  border-radius: 4px;
  z-index: -1;
}

/* Description */
.hero-desc {
  color: var(--muted);
  font-size: 18px;
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lighter);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 18px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* Hero Card */
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 24px;
  padding: 36px;
  color: var(--white);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-card-top::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

html[dir="rtl"] .hero-card-top::before {
  right: auto;
  left: -70px;
}

.hero-card-logo {
  width: 100px;
  height: auto;
  position: relative;
  z-index: 1;
}

.hero-card h3 {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.mini-box {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 18px 14px;
  border-radius: 18px;
  text-align: center;
  transition: var(--ease);
}

.mini-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mini-box strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 6px;
}

.mini-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}