/* =====================================================
   ECOMMERCE SERVICE PAGE — Al Hussan Tech
   ===================================================== */

/* ── Hero ─────────────────────────────────────────── */
.ec-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ec-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ec-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: ecHeroZoom 30s ease-out forwards;
  will-change: transform;
}
@keyframes ecHeroZoom {
  0% {
    transform: scale(1.15) translateY(-1%);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.ec-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(29, 10, 50, 0.22) 0%,
    rgba(45, 17, 73, 0.42) 25%,
    rgba(45, 17, 73, 0.68) 55%,
    rgba(29, 10, 50, 0.9) 85%,
    rgba(20, 5, 40, 0.97) 100%
  );
  z-index: 1;
}
.ec-hero__overlay::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 320px;
  background: radial-gradient(
    ellipse,
    rgba(168, 85, 247, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ec-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h, 72px) + 4.5rem) 0 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.ec-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.8rem;
}
.ec-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.ec-hero__breadcrumb a:hover {
  color: #fff;
}
.ec-hero__breadcrumb svg {
  width: 13px;
  height: 13px;
  opacity: 0.5;
}
.ec-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.22);
  padding: 0.42rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}
.ec-hero__badge svg {
  width: 15px;
  height: 15px;
  opacity: 0.85;
}
.ec-hero__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
.ec-hero__title span {
  background: linear-gradient(90deg, var(--clr-accent, #a855f7), #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ec-hero__accent {
  width: 60px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--clr-accent, #a855f7),
    var(--clr-primary-light, #7c3aed)
  );
  margin: 0 auto 1.2rem;
}
.ec-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.ec-hero__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2.5rem;
}
.ec-hero__perk {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}
.ec-hero__perk svg {
  width: 15px;
  height: 15px;
  color: #86efac;
  flex-shrink: 0;
}
.ec-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 3.5rem;
}
.ec-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-ar-medium);
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ec-hero__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.ec-hero__cta:hover {
  transform: translateY(-3px);
}
.ec-hero__cta--primary {
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  color: #fff;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.35);
}
.ec-hero__cta--primary:hover {
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.45);
}
.ec-hero__cta--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(6px);
}
.ec-hero__cta--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.ec-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 680px;
  margin: 0 auto;
}
.ec-hero__stat {
  text-align: center;
}
.ec-hero__stat-num {
  display: block;
  font-family: var(--ff-ar-bold);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.ec-hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
.ec-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── Section shared ───────────────────────────────── */
.ec-section {
  padding: 6rem 0;
}
.ec-section--alt {
  background: #faf8fd;
}
.ec-section--dark {
  background: linear-gradient(135deg, #1d0a32 0%, #2d1149 100%);
  color: #fff;
}
.ec-section__head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.ec-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--clr-primary, #542187);
  background: rgba(84, 33, 135, 0.07);
  border: 1px solid rgba(84, 33, 135, 0.15);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-family: var(--ff-ar-medium);
}
.ec-section__badge svg {
  width: 14px;
  height: 14px;
}
.ec-section--dark .ec-section__badge {
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.25);
}
.ec-section__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a0a2e;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.ec-section--dark .ec-section__title {
  color: #fff;
}
.ec-section__title span {
  color: var(--clr-primary, #542187);
}
.ec-section--dark .ec-section__title span {
  color: #d8b4fe;
}
.ec-section__accent {
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--clr-accent, #a855f7),
    var(--clr-primary-light, #7c3aed)
  );
  border-radius: 2px;
  margin: 0 auto 0.9rem;
}
.ec-section__sub {
  font-size: 0.97rem;
  color: #64748b;
  line-height: 1.85;
}
.ec-section--dark .ec-section__sub {
  color: rgba(255, 255, 255, 0.65);
}

/* ── Features Grid ────────────────────────────────── */
.ec-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ec-feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(84, 33, 135, 0.06);
  box-shadow: 0 4px 24px rgba(84, 33, 135, 0.05);
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  text-align: center;
}
.ec-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(84, 33, 135, 0.1);
  border-color: rgba(168, 85, 247, 0.15);
}
.ec-feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f3e8ff, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary, #542187);
  margin: 0 auto 1.2rem;
  transition:
    background 0.35s,
    transform 0.35s,
    box-shadow 0.35s;
}
.ec-feature-card:hover .ec-feature-card__icon {
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(84, 33, 135, 0.25);
}
.ec-feature-card__icon svg {
  width: 28px;
  height: 28px;
}
.ec-feature-card__title {
  font-family: var(--ff-ar-bold);
  font-size: 1.05rem;
  color: #1a0a2e;
  margin-bottom: 0.5rem;
}
.ec-feature-card__desc {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.8;
}

/* ── Platforms ────────────────────────────────────── */
.ec-platforms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ec-platform-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1.5px solid rgba(84, 33, 135, 0.08);
  box-shadow: 0 4px 20px rgba(84, 33, 135, 0.05);
  text-align: center;
  transition:
    transform 0.35s,
    box-shadow 0.35s,
    border-color 0.35s;
  cursor: pointer;
}
.ec-platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(84, 33, 135, 0.12);
  border-color: rgba(168, 85, 247, 0.2);
}
.ec-platform-card--featured {
  border-color: var(--clr-primary, #542187);
  border-width: 2px;
}
.ec-platform-card__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ar-bold);
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.ec-platform-card__name {
  font-family: var(--ff-ar-bold);
  font-size: 1rem;
  color: #1a0a2e;
  margin-bottom: 0.4rem;
}
.ec-platform-card__desc {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.7;
}

/* ── Process ──────────────────────────────────────── */
.ec-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.ec-process__track::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 10%;
  left: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  z-index: 0;
  opacity: 0.3;
}
.ec-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.5rem;
}
.ec-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  color: #fff;
  font-family: var(--ff-ar-bold);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 24px rgba(84, 33, 135, 0.3);
  position: relative;
}
.ec-step__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(168, 85, 247, 0.3);
  animation: ecSpin 12s linear infinite;
}
@keyframes ecSpin {
  to {
    transform: rotate(360deg);
  }
}
.ec-step__icon {
  position: absolute;
  bottom: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--clr-primary, #542187);
}
.ec-step__icon svg {
  width: 12px;
  height: 12px;
}
.ec-step__title {
  font-family: var(--ff-ar-bold);
  font-size: 0.95rem;
  color: #1a0a2e;
  margin-bottom: 0.4rem;
}
.ec-section--dark .ec-step__title {
  color: #fff;
}
.ec-step__desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.7;
}
.ec-section--dark .ec-step__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ── Stats ────────────────────────────────────────── */
.ec-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.ec-stats__item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.35s;
}
.ec-stats__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.ec-stats__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #d8b4fe;
}
.ec-stats__icon svg {
  width: 24px;
  height: 24px;
}
.ec-stats__num {
  font-family: var(--ff-ar-bold);
  font-size: 2.8rem;
  background: linear-gradient(135deg, #fff 30%, #d8b4fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ec-stats__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Packages ─────────────────────────────────────── */
.ec-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.ec-pkg {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid rgba(84, 33, 135, 0.08);
  box-shadow: 0 4px 24px rgba(84, 33, 135, 0.05);
  overflow: hidden;
  transition:
    transform 0.35s,
    box-shadow 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.ec-pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(84, 33, 135, 0.12);
}
.ec-pkg--featured {
  border-color: var(--clr-primary, #542187);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(84, 33, 135, 0.15);
}
.ec-pkg__ribbon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 0.72rem;
  font-family: var(--ff-ar-bold);
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
html[dir="ltr"] .ec-pkg__ribbon {
  left: auto;
  right: 1.2rem;
}
.ec-pkg__head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(84, 33, 135, 0.07);
  text-align: center;
}
.ec-pkg--featured .ec-pkg__head {
  background: linear-gradient(
    135deg,
    rgba(84, 33, 135, 0.05),
    rgba(168, 85, 247, 0.06)
  );
}
.ec-pkg__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(84, 33, 135, 0.1),
    rgba(168, 85, 247, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--clr-primary, #542187);
}
.ec-pkg--featured .ec-pkg__icon {
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  color: #fff;
}
.ec-pkg__icon svg {
  width: 26px;
  height: 26px;
}
.ec-pkg__name {
  font-family: var(--ff-ar-bold);
  font-size: 1.15rem;
  color: #1a0a2e;
  margin-bottom: 0.3rem;
}
.ec-pkg__tagline {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
}
.ec-pkg__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}
.ec-pkg__amount {
  font-family: var(--ff-ar-bold);
  font-size: 2.4rem;
  color: var(--clr-primary, #542187);
  line-height: 1;
}
.ec-pkg__currency {
  font-size: 0.9rem;
  color: #64748b;
}
.ec-pkg__period {
  font-size: 0.78rem;
  color: #94a3b8;
  display: block;
  margin-top: 0.3rem;
}
.ec-pkg__body {
  padding: 1.8rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ec-pkg__features {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  flex: 1;
}
.ec-pkg__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #475569;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(84, 33, 135, 0.05);
}
.ec-pkg__features li:last-child {
  border-bottom: none;
}
.ec-pkg__features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ec-pkg__features li.has {
  color: #1e293b;
}
.ec-pkg__features li.has svg {
  color: #22c55e;
}
.ec-pkg__features li.no {
  opacity: 0.45;
}
.ec-pkg__features li.no svg {
  color: #94a3b8;
}
.ec-pkg__btn {
  display: block;
  text-align: center;
  padding: 0.9rem;
  border-radius: 12px;
  font-family: var(--ff-ar-medium);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ec-pkg__btn--outline {
  border: 1.5px solid rgba(84, 33, 135, 0.25);
  color: var(--clr-primary, #542187);
}
.ec-pkg__btn--outline:hover {
  background: rgba(84, 33, 135, 0.06);
  border-color: var(--clr-primary, #542187);
}
.ec-pkg__btn--fill {
  background: linear-gradient(
    135deg,
    var(--clr-primary, #542187),
    var(--clr-accent, #a855f7)
  );
  color: #fff;
  box-shadow: 0 6px 22px rgba(84, 33, 135, 0.3);
}
.ec-pkg__btn--fill:hover {
  box-shadow: 0 10px 30px rgba(84, 33, 135, 0.4);
  transform: translateY(-2px);
}

/* ── FAQ ──────────────────────────────────────────── */
.ec-faq__list {
  max-width: 780px;
  margin: 0 auto;
}
.ec-faq__item {
  border: 1px solid rgba(84, 33, 135, 0.1);
  border-radius: 14px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.ec-faq__item.is-open {
  box-shadow: 0 6px 28px rgba(84, 33, 135, 0.09);
  border-color: rgba(168, 85, 247, 0.25);
}
.ec-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: right;
  font-family: var(--ff-ar-medium);
  font-size: 0.95rem;
  color: #1a0a2e;
  transition: background 0.3s;
}
html[dir="ltr"] .ec-faq__q {
  text-align: left;
}
.ec-faq__item.is-open .ec-faq__q,
.ec-faq__q:hover {
  background: rgba(84, 33, 135, 0.03);
}
.ec-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(84, 33, 135, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary, #542187);
  transition:
    background 0.3s,
    transform 0.4s;
}
.ec-faq__icon svg {
  width: 14px;
  height: 14px;
}
.ec-faq__item.is-open .ec-faq__icon {
  background: var(--clr-primary, #542187);
  color: #fff;
  transform: rotate(180deg);
}
.ec-faq__a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.3s;
  background: #fff;
}
.ec-faq__item.is-open .ec-faq__a {
  max-height: 400px;
}
.ec-faq__a-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.85;
}

/* ── Bottom CTA ───────────────────────────────────── */
.ec-cta {
  background: linear-gradient(135deg, #1d0a32 0%, #3b1260 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ec-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.ec-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.ec-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.ec-cta__badge svg {
  width: 14px;
  height: 14px;
}
.ec-cta__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.35;
}
.ec-cta__desc {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 2.2rem;
}
.ec-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.ec-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-ar-medium);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.ec-cta__btn--primary {
  background: linear-gradient(135deg, var(--clr-accent, #a855f7), #7c3aed);
  color: #fff;
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.35);
}
.ec-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.45);
}
.ec-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.ec-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}
.ec-cta__btn svg {
  width: 18px;
  height: 18px;
}

/* ── Animations ───────────────────────────────────── */
.ec-animate {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.ec-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ec-animate[data-delay="1"] {
  transition-delay: 0.1s;
}
.ec-animate[data-delay="2"] {
  transition-delay: 0.2s;
}
.ec-animate[data-delay="3"] {
  transition-delay: 0.3s;
}
.ec-animate[data-delay="4"] {
  transition-delay: 0.4s;
}
.ec-animate[data-delay="5"] {
  transition-delay: 0.5s;
}
.ec-animate[data-delay="6"] {
  transition-delay: 0.6s;
}

/* ── Focus ────────────────────────────────────────── */
.ec-hero__cta:focus-visible,
.ec-pkg__btn:focus-visible,
.ec-cta__btn:focus-visible,
.ec-faq__q:focus-visible {
  outline: 2px solid var(--clr-accent, #a855f7);
  outline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .ec-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-platforms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-process__track {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .ec-process__track::before {
    display: none;
  }
  .ec-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-pkg--featured {
    grid-column: span 2;
    max-width: 440px;
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .ec-section {
    padding: 4rem 0;
  }
  .ec-hero__content {
    padding: calc(var(--nav-h, 72px) + 2.5rem) 0 3rem;
  }
  .ec-hero__stat-sep {
    display: none;
  }
  .ec-features__grid {
    grid-template-columns: 1fr;
  }
  .ec-platforms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-process__track {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ec-packages__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .ec-pkg--featured {
    grid-column: span 1;
  }
}
@media (max-width: 480px) {
  .ec-hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .ec-hero__cta {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .ec-process__track {
    grid-template-columns: 1fr;
  }
  .ec-stats__grid {
    grid-template-columns: 1fr;
  }
  .ec-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .ec-cta__btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ec-animate {
    transition: none !important;
    animation: none !important;
  }
  .ec-hero__bg img {
    animation: none !important;
  }
  .ec-step__num::after {
    animation: none !important;
  }
}
