/* EC page only; load after style.css */
.ec-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgb(10 49 46 / 90%) 0%, rgb(14 86 79 / 84%) 45%, rgb(4 55 73 / 84%) 100%),
  url('/img/ec/ec-slide1.jpg') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.ec-hero .container { position: relative; z-index: 1; }
.ec-hero__content { max-width: 640px; }
.ec-section-label--hero {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
}
.ec-hero__title { font-size: clamp(1.5rem, 4vw, 2rem); text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2); }
.ec-hero__lead { font-size: 1.1rem; opacity: 0.95; }
.ec-hero .ec-hero__sub { opacity: 0.9; }

.ec-section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.ec-worried-img {
  display: block;
  width: min(100%, 420px);
  max-width: 100%;
  max-height: 320px;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eefaf7 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.ec-stat-strip {
  background: linear-gradient(90deg, var(--bs-primary) 0%, #14b8a6 100%);
  color: #fff;
}
.ec-stat-strip .ec-stat { font-size: 1.75rem; font-weight: 700; line-height: 1.2; }
.ec-stat-strip .ec-stat-label { font-size: 0.875rem; opacity: 0.95; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.animate-delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.animate-delay-6 { transition-delay: 0.6s; }

.ec-bullets--dash li::before { display: none; }

.ec-sol-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bs-primary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.ec-solutions-intro,
.ec-pricing-intro { max-width: 60ch; }

.ec-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1) !important;
}

.ec-plan-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ec-plan-card:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important; }
.ec-plan-card__price { font-size: 1.5rem; font-weight: 700; color: var(--bs-primary); line-height: 1.2; }
.ec-plan-card__divider { border-color: rgba(0, 0, 0, 0.08); border-width: 1px; }

.ec-flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
