/* ============================================================
   Royal Invitation — Pricing
   Modern, trendy, layered. Bilingual EN / AR.
============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream:    #FAF6F1;
  --cream-2:  #F2EAE0;
  --blush:    #F4DCD3;
  --blush-2:  #EBC8BC;
  --plum:     #6B0F1A;   /* burgundy — matches logo */
  --plum-2:   #4A0810;
  --rose:     #B05A60;
  --rose-2:   #8E3D45;
  --gold:     #C9A961;
  --gold-2:   #B5934C;
  --ink:      #2A1418;
  --muted:    #7B5E63;
  --line:     rgba(107, 15, 26, 0.10);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 32px;

  --shadow-sm: 0 6px 18px rgba(42, 27, 45, 0.06);
  --shadow:    0 18px 40px rgba(42, 27, 45, 0.10);
  --shadow-lg: 0 30px 70px rgba(42, 27, 45, 0.18);

  --font:     'Montserrat', 'Cairo', system-ui, sans-serif;
  --ease:     cubic-bezier(.22, .61, .36, 1);
  --t-fast:   .25s;
  --t:        .5s;
  --t-slow:   .9s;

  --max:      1180px;
}

html[lang="ar"] { --font: 'Cairo', 'Montserrat', system-ui, sans-serif; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: clamp(15px, 1vw + 0.5rem, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Eyebrow / shared ---------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}
html[lang="ar"] .eyebrow { letter-spacing: 0.05em; }

.section { padding-block: clamp(60px, 7vw, 100px); position: relative; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto clamp(36px, 4.5vw, 56px); }
.section__title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--plum);
  margin-bottom: 10px;
}
.section__desc { color: var(--muted); font-size: 0.98rem; margin: 0; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
}

.hero__bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 80% 20%, rgba(201, 169, 97, 0.15), transparent 60%),
    radial-gradient(50% 60% at 10% 80%, rgba(201, 123, 123, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.65), rgba(250, 246, 241, 0.95));
}
/* ---------- Hero decorative ornaments ---------- */
.hero__ornament {
  position: absolute;
  color: var(--gold);
  opacity: 0.35;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.hero__ornament--a {
  width: clamp(280px, 35vw, 480px);
  height: clamp(280px, 35vw, 480px);
  inset-inline-end: -80px;
  top: -60px;
}
.hero__ornament--b {
  width: clamp(160px, 20vw, 260px);
  height: clamp(160px, 20vw, 260px);
  inset-inline-start: -40px;
  bottom: 40px;
  color: var(--rose);
  opacity: 0.28;
  animation-delay: -3s;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px clamp(20px, 4vw, 40px);
}

.brand { display: inline-flex; align-items: center; }
.brand__logo {
  height: clamp(44px, 4vw, 58px);
  width: auto;
  max-width: 220px;
  display: block;
  border-radius: 0;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 6px rgba(107, 15, 26, 0.12));
}
.brand__name { display: none; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--plum);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.lang-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.lang-toggle__opt {
  padding: 2px 6px;
  border-radius: 999px;
  transition: color var(--t-fast), background var(--t-fast);
}
.lang-toggle__opt.is-active {
  color: #fff;
  background: var(--plum);
}
.lang-toggle__divider { color: var(--line); }

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(40px, 8vw, 90px) clamp(20px, 4vw, 40px);
  max-width: 760px;
  margin-inline-start: clamp(20px, 6vw, 80px);
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--plum);
  margin-bottom: 14px;
}
.hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 16px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
}
.hero__subtitle {
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 420px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 0.95rem;
  border-radius: 999px;
  background: var(--plum);
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
}
.hero__cta:hover {
  transform: translateY(-3px);
  background: var(--plum-2);
  box-shadow: 0 20px 40px rgba(42, 27, 45, 0.25), 0 0 0 6px rgba(201, 123, 123, 0.18);
}
.hero__cta svg { transition: transform var(--t-fast) var(--ease); }
html[dir="rtl"] .hero__cta svg { transform: scaleX(-1); }
.hero__cta:hover svg { transform: translateX(4px); }
html[dir="rtl"] .hero__cta:hover svg { transform: scaleX(-1) translateX(4px); }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 2px solid var(--plum);
  border-radius: 12px;
  opacity: 0.6;
}
.scroll-cue span {
  display: block;
  width: 3px; height: 8px;
  background: var(--plum);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.6s var(--ease) infinite;
}

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}
@media (max-width: 760px) {
  .services__grid { grid-template-columns: 1fr; }
}

.service-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-group--offset { margin-top: 0; }

.service-group__head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
  margin-bottom: 4px;
}
.service-group__head h3 {
  font-size: 16px;
  color: var(--plum);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.service-group__icon { width: 22px; height: 22px; color: var(--rose); }

.service-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.service-card:nth-child(odd) { transform: translateX(-4px); }
html[dir="rtl"] .service-card:nth-child(odd) { transform: translateX(4px); }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card__media {
  width: 84px; height: 84px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
}
.icon-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blush), var(--cream-2));
  color: var(--plum);
  overflow: hidden;
}
.icon-badge::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  border-radius: 8px;
  pointer-events: none;
}
.icon-badge svg { width: 34px; height: 34px; color: var(--plum); }
.icon-badge--rose {
  background: linear-gradient(135deg, #F4DCD3, #EBC8BC);
}
.icon-badge--rose svg { color: var(--rose-2); }
.service-card__body { display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.service-card__body h4 { font-size: 1rem; color: var(--plum); }
.service-card__body p { margin: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.45; }
.price__amount { font-size: 1.15rem; }

.price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
  font-weight: 700;
  color: var(--rose-2);
}
.price__amount { font-size: 1.3rem; }
.price__cur { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }

/* ============================================================
   PACKAGES
============================================================ */
.packages {
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 60%, var(--cream) 100%);
  position: relative;
}

.packages__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}
@media (max-width: 1280px) { .packages__row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .packages__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .packages__row { grid-template-columns: 1fr; } }

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  min-width: 0;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg--basic    { transform: rotate(-0.8deg); }
.pkg--standard { transform: rotate(0.4deg);  }
.pkg--vip      { transform: rotate(0.6deg);  }
.pkg--web      { transform: rotate(-0.4deg); }
.pkg--basic:hover    { transform: translateY(-6px) rotate(-0.8deg); }
.pkg--standard:hover { transform: translateY(-6px) rotate(0.4deg); }
.pkg--vip:hover      { transform: translateY(-6px) rotate(0.6deg); }
.pkg--web:hover      { transform: translateY(-6px) rotate(-0.4deg); }

.pkg--web {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(176, 90, 96, 0.12), transparent 70%),
    linear-gradient(180deg, #FFFCF7, #F8EDE5);
  border: 1px solid rgba(176, 90, 96, 0.3);
}

.pkg__chip {
  position: absolute;
  top: -10px;
  inset-inline-end: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--rose-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(176, 90, 96, 0.28);
  z-index: 3;
}

/* Premium hero card */
.pkg--premium {
  z-index: 2;
  transform: scale(1.04);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(201, 169, 97, 0.18), transparent 70%),
    radial-gradient(60% 50% at 50% 100%, rgba(201, 123, 123, 0.14), transparent 70%),
    linear-gradient(180deg, #FFFCF7, #F8EDE5);
  border: 2px solid var(--gold);
  box-shadow: 0 30px 60px rgba(201, 169, 97, 0.25), var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.pkg--premium::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23C9A961' stroke-width='0.8' opacity='0.18'><circle cx='40' cy='40' r='18'/><path d='M22 40c6-10 30-10 36 0M22 40c6 10 30 10 36 0'/></g></svg>");
  background-size: 100px 100px;
  pointer-events: none;
  opacity: 0.7;
}
.pkg--premium > * { position: relative; z-index: 1; }
.pkg--premium:hover { transform: scale(1.04) translateY(-6px); }
@media (max-width: 1100px) { .pkg--premium { transform: scale(1); } .pkg--premium:hover { transform: scale(1) translateY(-6px); } }

.pkg__badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(201, 169, 97, 0.35);
  z-index: 3;
}
html[dir="rtl"] .pkg__badge { transform: translateX(50%); }

.pkg__name {
  font-size: 1.05rem;
  color: var(--plum);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: nowrap;
}
.pkg__price .price__amount {
  font-size: clamp(1.4rem, 1.8vw, 1.9rem);
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pkg__price .price__cur { font-size: 0.72rem; color: var(--muted); font-weight: 600; }

.pkg__features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pkg__features li {
  position: relative;
  padding-inline-start: 20px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.45;
}
.pkg__features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 5px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--blush);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232A1B2D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.pkg--premium .pkg__features li::before { background-color: var(--gold); }

.pkg__btn {
  margin-top: 8px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 14px;
  font-size: 0.78rem;
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.pkg__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--plum);
  transform: translateY(101%);
  transition: transform var(--t) var(--ease);
  z-index: -1;
}
.pkg__btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(107, 15, 26, 0.25); }
.pkg__btn:hover::before { transform: translateY(0); }
.pkg__btn::after {
  content: "→";
  font-family: system-ui;
  transition: transform var(--t-fast) var(--ease);
}
html[dir="rtl"] .pkg__btn::after { content: "←"; }
.pkg__btn:hover::after { transform: translateX(3px); }
html[dir="rtl"] .pkg__btn:hover::after { transform: translateX(-3px); }

.pkg__btn--primary {
  background: linear-gradient(90deg, var(--plum), var(--rose));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(107, 15, 26, 0.28);
}
.pkg__btn--primary::before {
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: translateY(0);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.pkg__btn--primary:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(201, 123, 123, 0.35), 0 0 0 6px rgba(201, 169, 97, 0.18);
}
.pkg__btn--primary:hover::before { opacity: 1; }

/* ============================================================
   ABOUT
============================================================ */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, #FFFCF7 100%);
  position: relative;
}
.about__inner { max-width: 980px; }
.about__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(36px, 5vw, 60px);
}
.about__lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 14px 0 0;
}
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 980px) { .about__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .about__grid { grid-template-columns: 1fr; } }

.about__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.about__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--plum);
  margin-bottom: 4px;
}
.about__icon svg { width: 22px; height: 22px; }
.about__title {
  font-size: 1rem;
  color: var(--plum);
  margin: 0;
}
.about__item p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   WEB INVITATION PLANS
============================================================ */
.webplans {
  background: linear-gradient(180deg, var(--cream) 0%, #FFFCF7 50%, var(--cream) 100%);
  position: relative;
}
.webplans__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  align-items: stretch;
}
@media (max-width: 1080px) { .webplans__row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .webplans__row { grid-template-columns: 1fr; } }

.webplan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
  min-width: 0;
}
.webplan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.webplan__dot {
  font-size: 22px;
  line-height: 1;
}
.webplan__name {
  font-size: 1.3rem;
  color: var(--plum);
  margin: 0;
}
.webplan__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.webplan__price .price__amount {
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.webplan__price .price__cur {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.webplan__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin: 0;
}
.webplan__features li {
  position: relative;
  padding-inline-start: 22px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.5;
}
.webplan__features li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blush);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B0F1A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 10px 10px;
  background-position: center;
  background-repeat: no-repeat;
}
.webplan__features li.webplan__no {
  color: var(--muted);
  font-style: italic;
  font-size: 0.8rem;
}
.webplan__features li.webplan__no::before {
  background: #EFE7E0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237B5E63' stroke-width='3' stroke-linecap='round'><line x1='6' y1='6' x2='18' y2='18'/><line x1='18' y1='6' x2='6' y2='18'/></svg>");
}

.webplan__btn {
  margin-top: 10px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.webplan__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--plum);
  transform: translateY(101%);
  transition: transform var(--t) var(--ease);
  z-index: -1;
}
.webplan__btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(107, 15, 26, 0.25);
}
.webplan__btn:hover::before { transform: translateY(0); }
.webplan__btn::after {
  content: "→";
  font-family: system-ui;
  transition: transform var(--t-fast) var(--ease);
}
html[dir="rtl"] .webplan__btn::after { content: "←"; }
.webplan__btn:hover::after { transform: translateX(3px); }
html[dir="rtl"] .webplan__btn:hover::after { transform: translateX(-3px); }

.webplan__btn--primary {
  background: linear-gradient(90deg, var(--plum), var(--rose));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(107, 15, 26, 0.28);
}
.webplan__btn--primary::before {
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transform: translateY(0);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.webplan__btn--primary:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(201, 123, 123, 0.35), 0 0 0 6px rgba(201, 169, 97, 0.18);
}
.webplan__btn--primary:hover::before { opacity: 1; }

/* tier accents */
.webplan--basic    { border-color: rgba(125, 175, 130, 0.25); }
.webplan--standard { border-color: rgba(95, 135, 195, 0.25); }
.webplan--premium {
  border-color: var(--gold);
  background:
    radial-gradient(70% 50% at 50% 0%, rgba(201, 169, 97, 0.12), transparent 70%),
    linear-gradient(180deg, #FFFCF7, #F8EDE5);
  box-shadow: 0 22px 50px rgba(201, 169, 97, 0.22), var(--shadow);
}
.webplan--luxury {
  border-color: var(--plum);
  background: linear-gradient(180deg, #FFFCF7, #F2EAE0);
}

.webplan__badge {
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(201, 169, 97, 0.35);
  z-index: 3;
}
html[dir="rtl"] .webplan__badge { transform: translateX(50%); }

/* ============================================================
   ADD-ONS
============================================================ */
.addons { background: var(--cream); }
.addons__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.addon {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast), transform var(--t-fast) var(--ease);
}
.addon:last-child { border-bottom: 0; }
.addon:hover { background: var(--cream-2); transform: translateX(4px); }
html[dir="rtl"] .addon:hover { transform: translateX(-4px); }
.addon__icon {
  width: 30px; height: 30px;
  padding: 6px;
  background: var(--blush);
  color: var(--plum);
  border-radius: 10px;
}
.addon__label { font-weight: 600; color: var(--plum); font-size: 0.92rem; }
.addon__price {
  font-weight: 700;
  color: var(--rose-2);
  background: var(--blush);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* ============================================================
   CTA
============================================================ */
.cta {
  position: relative;
  padding-block: clamp(70px, 9vw, 120px);
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 70% at 50% 0%, rgba(201, 169, 97, 0.18), transparent 70%),
    linear-gradient(160deg, #FFFCF7 0%, var(--blush) 45%, var(--blush-2) 100%);
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--rose) 50%, var(--gold) 70%, transparent);
  opacity: 0.5;
}
.cta__inner { text-align: center; color: var(--plum); max-width: 760px; }
.cta__title {
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  margin-bottom: 14px;
  color: var(--plum);
}
.cta__sub { font-size: 1rem; color: var(--muted); margin: 0 0 28px; }
.cta__btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(107, 15, 26, 0.25);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
}
.cta__btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, var(--plum), var(--rose));
  box-shadow: 0 22px 44px rgba(107, 15, 26, 0.35), 0 0 0 6px rgba(201, 169, 97, 0.18);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 22px 16px;
  text-align: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.footer__by {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
}
html[lang="ar"] .footer__by { letter-spacing: 0.04em; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0)); }
  50%      { transform: translateY(-12px) rotate(var(--rot, 0)); }
}
.inv-card--a { --rot: 6deg; }
.inv-card--b { --rot: -8deg; }
.inv-card--c { --rot: -4deg; }

@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0.9; }
  60%  { transform: translateY(10px); opacity: 0.2; }
  100% { transform: translateY(0); opacity: 0.9; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
