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

/* ── Hero ─────────────────────────────────────────── */
.seo-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.seo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.seo-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: seoHeroZoom 30s ease-out forwards;
  will-change: transform;
}
@keyframes seoHeroZoom {
  0%   { transform: scale(1.15) translateY(-1%); }
  100% { transform: scale(1)    translateY(0);   }
}
.seo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(29,10,50,.22)  0%,
    rgba(45,17,73,.42) 25%,
    rgba(45,17,73,.68) 55%,
    rgba(29,10,50,.9)  85%,
    rgba(20,5,40,.97) 100%
  );
  z-index: 1;
}
.seo-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,.12) 0%, transparent 70%);
  pointer-events: none;
}
.seo-hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h, 72px) + 4.5rem) 0 5rem;
  max-width: 760px;
  margin: 0 auto;
}
.seo-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.8rem;
}
.seo-hero__breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .3s;
}
.seo-hero__breadcrumb a:hover { color: #fff; }
.seo-hero__breadcrumb svg { width: 13px; height: 13px; opacity: .5; }
.seo-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: #d8b4fe;
  background: rgba(168,85,247,.1);
  border: 1px solid rgba(168,85,247,.22);
  padding: .42rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(6px);
}
.seo-hero__badge svg { width: 15px; height: 15px; opacity: .85; }
.seo-hero__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: #fff;
  line-height: 1.25;
  margin-bottom: .9rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.2);
}
.seo-hero__title span {
  background: linear-gradient(90deg, var(--clr-accent, #a855f7), #f0abfc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-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;
}
.seo-hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.seo-hero__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem 1.5rem;
  margin-bottom: 2.5rem;
}
.seo-hero__perk {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
}
.seo-hero__perk svg { width: 15px; height: 15px; color: #86efac; flex-shrink: 0; }
.seo-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
  margin-bottom: 3.5rem;
}
.seo-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-ar-medium);
  font-size: .95rem;
  text-decoration: none;
  transition: transform .3s, box-shadow .3s, opacity .3s;
}
.seo-hero__cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.seo-hero__cta:hover { transform: translateY(-3px); }
.seo-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,.35);
}
.seo-hero__cta--primary:hover { box-shadow: 0 12px 36px rgba(168,85,247,.45); }
.seo-hero__cta--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(6px);
}
.seo-hero__cta--ghost:hover { background: rgba(255,255,255,.14); }
.seo-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,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 680px;
  margin: 0 auto;
}
.seo-hero__stat { text-align: center; }
.seo-hero__stat-num {
  display: block;
  font-family: var(--ff-ar-bold);
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.seo-hero__stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
}
.seo-hero__stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* ── Ranking Visual ───────────────────────────────── */
.seo-ranking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.seo-ranking__visual {
  position: relative;
}
.seo-ranking__screen {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(84,33,135,.08);
  box-shadow: 0 8px 40px rgba(84,33,135,.08);
}
.seo-ranking__bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.seo-ranking__bar-row:last-child { margin-bottom: 0; }
.seo-ranking__pos {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ar-bold);
  font-size: .85rem;
  flex-shrink: 0;
  background: rgba(84,33,135,.06);
  color: #64748b;
}
.seo-ranking__pos--1 {
  background: linear-gradient(135deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  color: #fff;
  box-shadow: 0 4px 16px rgba(84,33,135,.3);
}
.seo-ranking__pos--2 { background: rgba(84,33,135,.1); color: var(--clr-primary, #542187); }
.seo-ranking__pos--3 { background: rgba(84,33,135,.07); color: #64748b; }
.seo-ranking__bar-wrap { flex: 1; }
.seo-ranking__bar-label {
  font-size: .78rem;
  color: #475569;
  margin-bottom: .4rem;
  font-family: var(--ff-ar-medium);
}
.seo-ranking__bar-track {
  height: 10px;
  background: rgba(84,33,135,.06);
  border-radius: 100px;
  overflow: hidden;
}
.seo-ranking__bar-fill {
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.seo-ranking__bar-row:nth-child(2) .seo-ranking__bar-fill { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.seo-ranking__bar-row:nth-child(3) .seo-ranking__bar-fill { background: linear-gradient(90deg, #94a3b8, #cbd5e1); }
.seo-ranking__bar-row:nth-child(4) .seo-ranking__bar-fill { background: linear-gradient(90deg, #cbd5e1, #e2e8f0); }
.seo-ranking__bar-row:nth-child(5) .seo-ranking__bar-fill { background: linear-gradient(90deg, #fca5a5, #f87171); }
.seo-ranking__badge {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  color: #fff;
  font-family: var(--ff-ar-bold);
  font-size: .78rem;
  padding: .45rem 1.4rem;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(84,33,135,.3);
  white-space: nowrap;
}
.seo-ranking__content h2 {
  font-family: var(--ff-ar-bold);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #1a0a2e;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.seo-ranking__content h2 span { color: var(--clr-primary, #542187); }
.seo-ranking__content p {
  font-size: .95rem;
  color: #64748b;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.seo-ranking__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.seo-ranking__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: #334155;
  padding: .5rem 0;
  line-height: 1.6;
}
.seo-ranking__list li svg { width: 18px; height: 18px; color: #22c55e; flex-shrink: 0; margin-top: 2px; }
.seo-ranking__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  color: #fff;
  font-family: var(--ff-ar-medium);
  font-size: .95rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(168,85,247,.35);
  transition: transform .3s, box-shadow .3s;
}
.seo-ranking__btn:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(168,85,247,.45); }
.seo-ranking__btn svg { width: 18px; height: 18px; }

/* ── Section shared ───────────────────────────────── */
.seo-section { padding: 6rem 0; }
.seo-section--alt { background: #faf8fd; }
.seo-section--dark {
  background: linear-gradient(135deg, #1d0a32 0%, #2d1149 100%);
  color: #fff;
}
.seo-section__head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}
.seo-section__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--clr-primary, #542187);
  background: rgba(84,33,135,.07);
  border: 1px solid rgba(84,33,135,.15);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  font-family: var(--ff-ar-medium);
}
.seo-section__badge svg { width: 14px; height: 14px; }
.seo-section--dark .seo-section__badge {
  color: #d8b4fe;
  background: rgba(168,85,247,.12);
  border-color: rgba(168,85,247,.25);
}
.seo-section__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #1a0a2e;
  margin-bottom: .8rem;
  line-height: 1.3;
}
.seo-section--dark .seo-section__title { color: #fff; }
.seo-section__title span {
  color: var(--clr-primary, #542187);
}
.seo-section--dark .seo-section__title span { color: #d8b4fe; }
.seo-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 .9rem;
}
.seo-section__sub {
  font-size: .97rem;
  color: #64748b;
  line-height: 1.85;
}
.seo-section--dark .seo-section__sub { color: rgba(255,255,255,.65); }

/* ── Why Us Cards ─────────────────────────────────── */
.seo-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.seo-why__card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(84,33,135,.06);
  box-shadow: 0 4px 24px rgba(84,33,135,.05);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform .35s, box-shadow .35s;
}
.seo-why__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(84,33,135,.1);
  border-color: rgba(168,85,247,.15);
}
.seo-why__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(84,33,135,.1), rgba(168,85,247,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary, #542187);
}
.seo-why__icon svg { width: 24px; height: 24px; }
.seo-why__body h3 {
  font-family: var(--ff-ar-bold);
  font-size: 1.05rem;
  color: #1a0a2e;
  margin-bottom: .45rem;
}
.seo-why__body p {
  font-size: .88rem;
  color: #64748b;
  line-height: 1.75;
}

/* ── Services Grid ───────────────────────────────── */
.seo-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.seo-service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(84,33,135,.08);
  box-shadow: 0 4px 24px rgba(84,33,135,.05);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s, border-color .4s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.seo-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7), #7c3aed);
  opacity: 0;
  transition: opacity .35s;
}
.seo-service-card:hover::before { opacity: 1; }
.seo-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(84,33,135,.14);
  border-color: rgba(168,85,247,.18);
}
.seo-service-card__body {
  padding: 2rem 1.8rem 1.2rem;
  flex: 1;
}
.seo-service-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f3e8ff, #ede9fe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary, #542187);
  margin-bottom: 1.2rem;
  transition: background .35s, transform .35s, box-shadow .35s;
  position: relative;
}
.seo-service-card__icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  border: 2px dashed rgba(168,85,247,.15);
  opacity: 0;
  transition: opacity .35s;
}
.seo-service-card:hover .seo-service-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,.25);
}
.seo-service-card:hover .seo-service-card__icon::after { opacity: 1; }
.seo-service-card__icon svg { width: 26px; height: 26px; }
.seo-service-card__title {
  font-family: var(--ff-ar-bold);
  font-size: 1.1rem;
  color: #1a0a2e;
  margin-bottom: .55rem;
}
.seo-service-card__desc {
  font-size: .87rem;
  color: #64748b;
  line-height: 1.8;
}
.seo-service-card__footer {
  padding: 1rem 1.8rem 1.8rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  color: var(--clr-primary, #542187);
  font-family: var(--ff-ar-medium);
  text-decoration: none;
  transition: gap .3s, color .3s;
}
.seo-service-card__footer svg { width: 15px; height: 15px; transition: transform .3s; }
.seo-service-card:hover .seo-service-card__footer { gap: .7rem; color: var(--clr-accent, #a855f7); }
.seo-service-card:hover .seo-service-card__footer svg { transform: translateX(-3px); }
html[dir="ltr"] .seo-service-card:hover .seo-service-card__footer svg { transform: translateX(3px); }

/* ── Process ──────────────────────────────────────── */
.seo-process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.seo-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: .3;
}
.seo-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 .5rem;
}
.seo-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,.3);
  position: relative;
}
.seo-step__num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(168,85,247,.3);
  animation: seoSpin 12s linear infinite;
}
@keyframes seoSpin { to { transform: rotate(360deg); } }
.seo-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,.15);
  color: var(--clr-primary, #542187);
}
.seo-step__icon svg { width: 12px; height: 12px; }
.seo-step__title {
  font-family: var(--ff-ar-bold);
  font-size: .95rem;
  color: #1a0a2e;
  margin-bottom: .4rem;
}
.seo-section--dark .seo-step__title { color: #fff; }
.seo-step__desc {
  font-size: .8rem;
  color: #64748b;
  line-height: 1.7;
}
.seo-section--dark .seo-step__desc { color: rgba(255,255,255,.6); }

/* ── Stats Counter ────────────────────────────────── */
.seo-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.seo-stats__item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: background .35s;
}
.seo-stats__item:hover { background: rgba(255,255,255,.1); }
.seo-stats__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(168,85,247,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #d8b4fe;
}
.seo-stats__icon svg { width: 24px; height: 24px; }
.seo-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: .3rem;
}
.seo-stats__label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ── Packages ─────────────────────────────────────── */
.seo-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.seo-pkg {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid rgba(84,33,135,.08);
  box-shadow: 0 4px 24px rgba(84,33,135,.05);
  overflow: hidden;
  transition: transform .35s, box-shadow .35s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.seo-pkg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(84,33,135,.12);
}
.seo-pkg--featured {
  border-color: var(--clr-primary, #542187);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(84,33,135,.15);
}
.seo-pkg--featured:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(84,33,135,.2); }
.seo-pkg__ribbon {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: .72rem;
  font-family: var(--ff-ar-bold);
  color: #fff;
  background: linear-gradient(135deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  padding: .3rem .9rem;
  border-radius: 100px;
}
html[dir="ltr"] .seo-pkg__ribbon { left: auto; right: 1.2rem; }
.seo-pkg__head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(84,33,135,.07);
  text-align: center;
}
.seo-pkg--featured .seo-pkg__head {
  background: linear-gradient(135deg, rgba(84,33,135,.05), rgba(168,85,247,.06));
}
.seo-pkg__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(84,33,135,.1), rgba(168,85,247,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--clr-primary, #542187);
}
.seo-pkg--featured .seo-pkg__icon {
  background: linear-gradient(135deg, var(--clr-primary, #542187), var(--clr-accent, #a855f7));
  color: #fff;
}
.seo-pkg__icon svg { width: 26px; height: 26px; }
.seo-pkg__name {
  font-family: var(--ff-ar-bold);
  font-size: 1.15rem;
  color: #1a0a2e;
  margin-bottom: .3rem;
}
.seo-pkg__tagline {
  font-size: .8rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
}
.seo-pkg__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .3rem;
}
.seo-pkg__amount {
  font-family: var(--ff-ar-bold);
  font-size: 2.4rem;
  color: var(--clr-primary, #542187);
  line-height: 1;
}
.seo-pkg__currency {
  font-size: .9rem;
  color: #64748b;
}
.seo-pkg__period {
  font-size: .78rem;
  color: #94a3b8;
  display: block;
  margin-top: .3rem;
}
.seo-pkg__body { padding: 1.8rem 2rem; flex: 1; display: flex; flex-direction: column; }
.seo-pkg__features { list-style: none; margin: 0 0 1.8rem; padding: 0; flex: 1; }
.seo-pkg__features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: #475569;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(84,33,135,.05);
}
.seo-pkg__features li:last-child { border-bottom: none; }
.seo-pkg__features li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
.seo-pkg__features li.has { color: #1e293b; }
.seo-pkg__features li.has svg { color: #22c55e; }
.seo-pkg__features li.no { opacity: .45; }
.seo-pkg__features li.no svg { color: #94a3b8; }
.seo-pkg__btn {
  display: block;
  text-align: center;
  padding: .9rem;
  border-radius: 12px;
  font-family: var(--ff-ar-medium);
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s;
}
.seo-pkg__btn--outline {
  border: 1.5px solid rgba(84,33,135,.25);
  color: var(--clr-primary, #542187);
}
.seo-pkg__btn--outline:hover {
  background: rgba(84,33,135,.06);
  border-color: var(--clr-primary, #542187);
}
.seo-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,.3);
}
.seo-pkg__btn--fill:hover {
  box-shadow: 0 10px 30px rgba(84,33,135,.4);
  transform: translateY(-2px);
}

/* ── Platforms ────────────────────────────────────── */
.seo-platforms__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.seo-platform-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.4rem;
  background: #fff;
  border: 1px solid rgba(84,33,135,.09);
  border-radius: 50px;
  font-family: var(--ff-ar-medium);
  font-size: .85rem;
  color: #1a0a2e;
  box-shadow: 0 2px 12px rgba(84,33,135,.05);
  transition: transform .3s, box-shadow .3s;
}
.seo-platform-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(84,33,135,.1);
}
.seo-platform-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot-color, var(--clr-primary, #542187));
  flex-shrink: 0;
}

/* ── Testimonials ─────────────────────────────────── */
.seo-testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.seo-testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(84,33,135,.07);
  box-shadow: 0 4px 20px rgba(84,33,135,.05);
  transition: transform .35s, box-shadow .35s;
  display: flex;
  flex-direction: column;
}
.seo-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(84,33,135,.1);
}
.seo-testi-card__stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: #f59e0b;
}
.seo-testi-card__stars svg { width: 16px; height: 16px; }
.seo-testi-card__text {
  font-size: .9rem;
  color: #475569;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  flex: 1;
}
.seo-testi-card__text::before { content: '\201C'; }
.seo-testi-card__text::after  { content: '\201D'; }
.seo-testi-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(84,33,135,.06);
}
.seo-testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(84,33,135,.15), rgba(168,85,247,.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary, #542187);
  flex-shrink: 0;
  font-family: var(--ff-ar-bold);
  font-size: 1rem;
}
.seo-testi-card__name {
  font-family: var(--ff-ar-bold);
  font-size: .9rem;
  color: #1a0a2e;
}
.seo-testi-card__role {
  font-size: .78rem;
  color: #94a3b8;
}

/* ── FAQ ──────────────────────────────────────────── */
.seo-faq__list { max-width: 780px; margin: 0 auto; }
.seo-faq__item {
  border: 1px solid rgba(84,33,135,.1);
  border-radius: 14px;
  margin-bottom: .85rem;
  overflow: hidden;
  transition: box-shadow .3s;
}
.seo-faq__item.is-open {
  box-shadow: 0 6px 28px rgba(84,33,135,.09);
  border-color: rgba(168,85,247,.25);
}
.seo-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: .95rem;
  color: #1a0a2e;
  transition: background .3s;
}
html[dir="ltr"] .seo-faq__q { text-align: left; }
.seo-faq__item.is-open .seo-faq__q { background: rgba(84,33,135,.03); }
.seo-faq__q:hover { background: rgba(84,33,135,.03); }
.seo-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(84,33,135,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary, #542187);
  transition: background .3s, transform .4s;
}
.seo-faq__icon svg { width: 14px; height: 14px; }
.seo-faq__item.is-open .seo-faq__icon {
  background: var(--clr-primary, #542187);
  color: #fff;
  transform: rotate(180deg);
}
.seo-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22,1,.36,1), padding .3s;
  background: #fff;
}
.seo-faq__item.is-open .seo-faq__a { max-height: 400px; }
.seo-faq__a-inner {
  padding: 0 1.5rem 1.3rem;
  font-size: .88rem;
  color: #64748b;
  line-height: 1.85;
}

/* ── Bottom CTA ───────────────────────────────────── */
.seo-cta {
  background: linear-gradient(135deg, #1d0a32 0%, #3b1260 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-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,.12) 0%, transparent 70%);
  pointer-events: none;
}
.seo-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.seo-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: #d8b4fe;
  background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.25);
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.seo-cta__badge svg { width: 14px; height: 14px; }
.seo-cta__title {
  font-family: var(--ff-ar-bold);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: #fff;
  margin-bottom: .8rem;
  line-height: 1.35;
}
.seo-cta__desc {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.85;
  margin-bottom: 2.2rem;
}
.seo-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}
.seo-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-ar-medium);
  font-size: .95rem;
  text-decoration: none;
  transition: all .3s;
}
.seo-cta__btn--primary {
  background: linear-gradient(135deg, var(--clr-accent, #a855f7), #7c3aed);
  color: #fff;
  box-shadow: 0 8px 28px rgba(168,85,247,.35);
}
.seo-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(168,85,247,.45);
}
.seo-cta__btn--ghost {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}
.seo-cta__btn--ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.seo-cta__btn svg { width: 18px; height: 18px; }

/* ── Smooth scroll ───────────────────────────────── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .seo-animate { transition: none !important; animation: none !important; }
  .seo-hero__bg img { animation: none !important; }
  .seo-step__num::after { animation: none !important; }
}

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

/* ── Scroll animations ────────────────────────────── */
.seo-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.seo-animate.is-visible { opacity: 1; transform: translateY(0); }
.seo-animate[data-delay="1"] { transition-delay: .1s; }
.seo-animate[data-delay="2"] { transition-delay: .2s; }
.seo-animate[data-delay="3"] { transition-delay: .3s; }
.seo-animate[data-delay="4"] { transition-delay: .4s; }
.seo-animate[data-delay="5"] { transition-delay: .5s; }
.seo-animate[data-delay="6"] { transition-delay: .6s; }
.seo-animate[data-delay="7"] { transition-delay: .7s; }
.seo-animate[data-delay="8"] { transition-delay: .8s; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .seo-ranking__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .seo-ranking__visual { max-width: 500px; margin: 0 auto; }
  .seo-services__grid { grid-template-columns: repeat(2, 1fr); }
  .seo-process__track { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .seo-process__track::before { display: none; }
  .seo-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .seo-packages__grid { grid-template-columns: repeat(2, 1fr); }
  .seo-pkg--featured { grid-column: span 2; max-width: 440px; justify-self: center; }
  .seo-testi__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .seo-section { padding: 4rem 0; }
  .seo-hero__content { padding: calc(var(--nav-h, 72px) + 2.5rem) 0 3rem; }
  .seo-hero__desc { font-size: clamp(0.88rem, 2.5vw, 1.05rem); }
  .seo-hero__perks { gap: 0.4rem 1rem; margin-bottom: 2rem; }
  .seo-hero__ctas { gap: 0.7rem; margin-bottom: 2.5rem; }
  .seo-hero__cta { padding: 0.75rem 1.6rem; font-size: 0.88rem; }
  .seo-hero__stat-sep { display: none; }
  .seo-hero__stats { gap: 0.8rem; padding: 1.2rem 1.2rem; }
  .seo-hero__stat-num { font-size: 1.5rem; }
  .seo-ranking__grid { gap: 2rem; }
  .seo-ranking__screen { padding: 1.5rem; }
  .seo-ranking__content h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
  .seo-why__grid { grid-template-columns: 1fr; }
  .seo-services__grid { grid-template-columns: 1fr; }
  .seo-process__track { grid-template-columns: repeat(2, 1fr); }
  .seo-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .seo-testi__grid { grid-template-columns: 1fr; }
  .seo-packages__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .seo-pkg--featured { grid-column: span 1; }
  .seo-cta__title { font-size: clamp(1.4rem, 3vw, 2rem); }
  .seo-cta__desc { font-size: 0.88rem; }
  .seo-cta__actions { gap: 0.6rem; }
  .seo-cta__btn { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
  .seo-hero__overlay::after { width: 400px; height: 250px; }
}
@media (max-width: 480px) {
  .seo-hero { min-height: auto; }
  .seo-hero__content { padding: calc(var(--nav-h, 72px) + 1.5rem) 0 2rem; }
  .seo-hero__breadcrumb { font-size: 0.72rem; margin-bottom: 1.2rem; }
  .seo-hero__badge { font-size: 0.72rem; padding: 0.35rem 0.9rem; margin-bottom: 0.8rem; }
  .seo-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .seo-hero__desc { font-size: 0.85rem; line-height: 1.75; }
  .seo-hero__perks { gap: 0.3rem 0.8rem; font-size: 0.78rem; }
  .seo-hero__ctas { flex-direction: column; align-items: center; }
  .seo-hero__cta { width: 100%; max-width: 280px; justify-content: center; }
  .seo-hero__stats { padding: 0.8rem; gap: 0.6rem; border-radius: 12px; }
  .seo-hero__stat-num { font-size: 1.2rem; }
  .seo-hero__stat-label { font-size: 0.68rem; }
  .seo-ranking__pos { width: 30px; height: 30px; font-size: .75rem; }
  .seo-ranking__bar-label { font-size: .72rem; }
  .seo-ranking__badge { font-size: .72rem; padding: .35rem 1rem; }
  .seo-process__track { grid-template-columns: 1fr; }
  .seo-stats__grid { grid-template-columns: 1fr; }
  .seo-cta__actions { flex-direction: column; align-items: center; }
  .seo-cta__btn { width: 100%; max-width: 280px; justify-content: center; }
  .seo-hero__overlay::after { width: 280px; height: 180px; }
}
