/* =============================================
   HERO SECTION
   ============================================= */
.da-smm-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.da-smm-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(17, 24, 39, 0.80) 60%, color-mix(in srgb, var(--primary) 15%, transparent) 100%),
    url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.da-smm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, color-mix(in srgb, var(--primary) 8%, transparent) 0%, transparent 70%);
}

.da-smm-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.da-smm-breadcrumb {
  font-family: var(--font-sub);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.da-smm-breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.da-smm-breadcrumb span {
  opacity: 0.5;
}

.da-smm-hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.da-smm-hero-title .accent {
  color: var(--primary);
}

.da-smm-hero-sub {
  font-family: var(--font-sub);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.da-smm-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.da-smm-hero-stats {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.da-smm-hero-stat span {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.da-smm-hero-stat p {
  font-family: var(--font-sub);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lead Form Card */
.da-smm-lead-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.da-smm-lead-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.da-smm-lead-card h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.da-smm-lead-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: var(--font-sub);
}

.da-smm-lead-card .form-group {
  margin-bottom: 16px;
}

.da-smm-lead-card .form-group input,
.da-smm-lead-card .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s;
  background: var(--gray-50);
}

.da-smm-lead-card .form-group input:focus,
.da-smm-lead-card .form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
}

.da-smm-lead-card .form-group input::placeholder {
  color: var(--gray-400);
}

.da-smm-lead-card .btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 15px;
  background: var(--primary, #61CE70);
  color: var(--secondary, #111827);
  border: none;
  border-radius: var(--radius-sm, 6px);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.da-smm-lead-card .btn:hover {
  background: var(--primary-dark, #4ab85a);
  color: var(--white, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 35%, transparent);
}

@media (max-width: 991px) {
  .da-smm-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .da-smm-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}
