/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --bg: #f5f7ff;
  --bg2: #eef1fb;
  --surface: #ffffff;
  --surface2: #f0f3ff;
  --border: rgba(99,102,241,.15);
  --text: #111827;
  --text2: #4b5563;
  --text3: #9ca3af;

  --primary: hsl(245,80%,58%);
  --primary-dark: hsl(245,80%,48%);
  --primary-glow: hsl(245,80%,68%);

  --chatgpt: hsl(160,64%,40%);
  --chatgpt-dark: hsl(160,64%,32%);
  --chatgpt-glow: hsla(160,64%,40%,.35);
  --chatgpt-gradient: linear-gradient(135deg, hsl(160,64%,40%), hsl(190,72%,35%));

  --gemini: hsl(245,80%,58%);
  --gemini-dark: hsl(245,80%,46%);
  --gemini-glow: hsla(245,80%,58%,.35);
  --gemini-gradient: linear-gradient(135deg, hsl(245,80%,58%), hsl(290,72%,55%));

  --whatsapp: hsl(142,70%,38%);
  --whatsapp-dark: hsl(142,70%,30%);
  --whatsapp-glow: hsla(142,70%,38%,.35);
  --whatsapp-gradient: linear-gradient(135deg, hsl(142,70%,38%), hsl(155,72%,32%));

  --accent: hsl(38,100%,50%);
  --accent-surface: hsla(38,100%,50%,.12);
  --danger: hsl(0,78%,56%);
  --success: hsl(142,70%,42%);
  --warn: hsl(38,100%,45%);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 56px rgba(99,102,241,.18);
  --shadow-card: 0 8px 40px rgba(0,0,0,.10);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

[data-theme="dark"] {
  --bg: #0b0d1a;
  --bg2: #10132a;
  --surface: #141729;
  --surface2: #1c2040;
  --border: rgba(129,140,248,.15);
  --text: #f1f5f9;
  --text2: #a5b4fc;
  --text3: #6b7280;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 56px rgba(99,102,241,.28);
  --shadow-card: 0 8px 40px rgba(0,0,0,.4);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

html[lang="ar"] body { font-family: 'Cairo', sans-serif; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ═══════════════════════════════════════════
   RTL GLOBAL FIX
═══════════════════════════════════════════ */
html[dir="rtl"] body { text-align: right; }

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] label,
html[dir="rtl"] .card-title,
html[dir="rtl"] .card-duration,
html[dir="rtl"] .footer-tagline { text-align: right; }

/* Keep centered blocks centered */
html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-header,
html[dir="rtl"] .hero-title,
html[dir="rtl"] .hero-subtitle,
html[dir="rtl"] .hero-badge { text-align: center; }

html[dir="rtl"] .footer-bottom p { text-align: center; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════ */
.gradient-text {
  background: var(--gemini-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gemini-gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--gemini-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--gemini-glow); }

.btn-ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--surface); transform: translateY(-2px); }

.btn-chatgpt {
  background: var(--whatsapp-gradient);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}
.btn-chatgpt:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--whatsapp-glow); }

.btn-gemini {
  background: var(--whatsapp-gradient);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 20px var(--whatsapp-glow);
}
.btn-gemini:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--whatsapp-glow); }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(245,247,255,.88);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
[data-theme="dark"] .site-header { background: rgba(20,23,41,.88); }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo-icon-only {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--gemini-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo-icon-only:hover { opacity: .85; }

.nav-controls { display: flex; align-items: center; gap: .75rem; }

.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active { background: var(--primary); color: #fff; box-shadow: 0 2px 8px var(--gemini-glow); }
.lang-btn:not(.active):hover { background: var(--border); color: var(--text); }

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--surface); transform: rotate(20deg); }
#themeIconSun { display: none; }
#themeIconMoon { display: block; }
[data-theme="dark"] #themeIconSun { display: block; }
[data-theme="dark"] #themeIconMoon { display: none; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .35;
}
.hero::before { width: 600px; height: 600px; background: var(--primary); top: -120px; left: -100px; }
.hero::after  { width: 500px; height: 500px; background: hsl(290,72%,55%); bottom: -80px; right: -100px; }

.hero-bg-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: .12;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1); opacity: .12; }
  100% { transform: translateY(-120vh) scale(.5); opacity: 0; }
}

.hero-content { position: relative; z-index: 1; max-width: 760px; }

.hero-badge {
  display: inline-block;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--accent-surface);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInDown .6s ease both;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeInDown .7s .1s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text2);
  max-width: 560px;
  margin: 0 auto 2rem;
  animation: fadeInDown .7s .2s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInDown .7s .3s ease both;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInDown .7s .4s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
}
.trust-item i { color: var(--primary); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text3);
  font-size: .9rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--surface2);
  border: 1px solid var(--border);
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .85rem;
}
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: .6rem; }
.section-subtitle { color: var(--text2); font-size: 1rem; }

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-section { padding: 5rem 0; background: var(--bg2); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--chatgpt-gradient);
}
.card-featured::before { background: var(--gemini-gradient); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-featured { border-color: hsla(245,80%,58%,.4); box-shadow: 0 8px 48px hsla(245,80%,58%,.12); }

.card-badges { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.badge {
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 700;
}
.badge-hot { background: hsla(0,78%,56%,.12); color: hsl(0,78%,50%); border: 1px solid hsl(0,78%,50%); }
.badge-new { background: hsla(245,80%,58%,.12); color: var(--primary); border: 1px solid var(--primary); }

.card-header-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.1rem;
}
.card-title-col {
  display: flex;
  flex-direction: column;
  gap: .18rem;
}
.card-title-col .badge { width: fit-content; margin-bottom: .1rem; }

.card-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chatgpt-icon { background: hsla(160,64%,40%,.1); }
.gemini-icon  { background: hsla(245,80%,58%,.08); }

.card-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0; line-height: 1.2; }
.card-duration { color: var(--text3); font-size: .78rem; margin-bottom: 0; }

/* ─── Big Promise ─── */
.big-promise {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, hsla(245,80%,58%,.1), hsla(290,72%,55%,.07));
  border: 1.5px solid hsla(245,80%,58%,.28);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--primary);
  line-height: 1.45;
}
.big-promise i { flex-shrink: 0; font-size: .95rem; margin-top: .15rem; color: var(--primary); }
.big-promise-gemini {
  background: linear-gradient(135deg, hsla(245,80%,58%,.11), hsla(245,80%,58%,.05));
  border-color: hsla(245,80%,58%,.3);
}

/* ─── Privacy bar ─── */
.privacy-bar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .38rem .7rem;
  background: hsla(142,70%,42%,.08);
  border: 1px solid hsla(142,70%,42%,.2);
  border-radius: var(--radius-pill);
  font-size: .76rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 1rem;
  width: fit-content;
}
.privacy-bar i { font-size: .75rem; flex-shrink: 0; }

/* ─── Card Trust bar ─── */
.card-trust-bar {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .55rem .75rem;
  background: hsla(38,100%,50%,.07);
  border: 1px solid hsla(38,100%,50%,.22);
  border-radius: var(--radius-sm);
  font-size: .78rem;
  font-weight: 600;
  color: hsl(38,80%,38%);
  margin-bottom: .55rem;
  line-height: 1.4;
}
.card-trust-bar i { flex-shrink: 0; font-size: .82rem; margin-top: .12rem; }
[data-theme="dark"] .card-trust-bar { color: hsl(38,90%,60%); }

/* ─── Account condition ─── */
.account-condition {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  font-size: .74rem;
  color: var(--warn);
  font-weight: 600;
  margin-bottom: .2rem;
  line-height: 1.35;
}
.account-condition i { flex-shrink: 0; font-size: .78rem; margin-top: .1rem; }

/* ─── Price section (bottom) ─── */
.price-section {
  border-top: 1px dashed var(--border);
  padding-top: .9rem;
  margin: .85rem 0 .85rem;
}
.price-section .price-block { margin-bottom: 0; }

.price-block { margin-bottom: 1.25rem; }
.price-original { display: block; color: var(--text3); font-size: .9rem; text-decoration: line-through; margin-bottom: .15rem; direction: ltr; }
.price-current-wrap { display: flex; align-items: center; gap: .65rem; direction: ltr; }
.price-current { font-size: 2.2rem; font-weight: 900; color: var(--text); line-height: 1; direction: ltr; unicode-bidi: isolate; }
.price-current small { font-size: .95rem; font-weight: 600; }
.price-discount-badge {
  padding: .28rem .6rem;
  background: hsla(142,70%,42%,.15);
  color: var(--success);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 700;
  transition: transform .3s ease;
}

/* ─── Shared Attributes (kept for fallback) ─── */
.shared-attrs {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.attr-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .82rem;
  color: var(--text2);
}
.attr-yes  { color: var(--success); flex-shrink: 0; margin-top: .15rem; font-size: .8rem; }
.attr-warn { color: var(--warn);    flex-shrink: 0; margin-top: .15rem; font-size: .8rem; }
.attr-warning span { color: hsl(38,90%,48%); font-weight: 600; }

/* RTL: natural flex RTL puts icon (first child) on the right — no row-reverse needed */
html[dir="rtl"] .attr-item { text-align: right; }
html[dir="rtl"] .attr-item i { order: 2; }
html[dir="rtl"] .attr-item span { order: 1; }

/* ─── Features ─── */
.features-header {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text3);
  margin-bottom: .6rem;
}
.feature-list { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.feature-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--text); }
.feature-icon-brand { margin-top: .15rem; flex-shrink: 0; font-size: .85rem; }
.cg-color { color: hsl(160,64%,40%); }
.gm-color { color: hsl(245,80%,58%); }

html[dir="rtl"] .feature-list li { text-align: right; }
html[dir="rtl"] .feature-list li i { order: 2; }
html[dir="rtl"] .feature-list li span { order: 1; }

.card-cta { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-section { padding: 5rem 0; }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.step:hover { transform: translateY(-4px); }
.step-num { font-size: 2.2rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: .4rem; }
.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--whatsapp);
  margin: 0 auto .75rem;
}
.step:nth-child(3) .step-icon { color: var(--primary); }
.step:nth-child(5) .step-icon { color: var(--chatgpt); }
.step h4 { font-size: .95rem; font-weight: 700; margin-bottom: .3rem; }
.step p  { font-size: .83rem; color: var(--text2); margin-bottom: .75rem; }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  justify-content: center;
  margin-top: .5rem;
}
.pay-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .3rem .65rem;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
}

.step-connector {
  padding: 0 .5rem;
  color: var(--text3);
  font-size: 1.2rem;
  align-self: center;
  flex-shrink: 0;
}

html[dir="rtl"] .steps-grid  { flex-direction: row-reverse; }
html[dir="rtl"] .step-connector i { transform: scaleX(-1); }
html[dir="rtl"] .payment-methods { justify-content: flex-end; }

/* ═══════════════════════════════════════════
   REFUND POLICY
═══════════════════════════════════════════ */
.refund-section { padding: 5rem 0; background: var(--bg2); }

.refund-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.refund-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: transform var(--transition);
}
.refund-card:hover { transform: translateY(-4px); }

.refund-yes { border-color: hsla(142,70%,42%,.3); }
.refund-no  { border-color: hsla(0,78%,56%,.25); }

.refund-card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem;
}
.refund-yes .refund-card-icon { background: hsla(142,70%,42%,.12); color: var(--success); }
.refund-no  .refund-card-icon { background: hsla(0,78%,56%,.10); color: var(--danger); }

.refund-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.refund-card p  { font-size: .85rem; color: var(--text2); }

/* ─── RTL: new card elements ─── */
html[dir="rtl"] .card-header-row { flex-direction: row-reverse; }
html[dir="rtl"] .card-title-col { align-items: flex-end; }
html[dir="rtl"] .card-title-col .badge { margin-right: 0; }

html[dir="rtl"] .big-promise { text-align: right; }
html[dir="rtl"] .big-promise i { order: 2; }
html[dir="rtl"] .big-promise span { order: 1; }

html[dir="rtl"] .privacy-bar { width: auto; }
html[dir="rtl"] .privacy-bar i { order: 2; }
html[dir="rtl"] .privacy-bar span { order: 1; }

html[dir="rtl"] .card-trust-bar { text-align: right; }
html[dir="rtl"] .card-trust-bar i { order: 2; }
html[dir="rtl"] .card-trust-bar span { order: 1; }

html[dir="rtl"] .account-condition { text-align: right; }
html[dir="rtl"] .account-condition i { order: 2; }
html[dir="rtl"] .account-condition span { order: 1; }

/* ─── RTL: refund cards ─── */
html[dir="rtl"] .refund-card-icon { margin: 0 0 1.1rem auto; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo-icon-only {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gemini-gradient);
  align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: .6rem;
  transition: opacity var(--transition);
}
.footer-logo-icon-only:hover { opacity: .85; }

.footer-tagline { color: var(--text2); font-size: .88rem; margin-bottom: 1.1rem; }

.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--whatsapp-gradient);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 4px 16px var(--whatsapp-glow);
  transition: all var(--transition);
}
.footer-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--whatsapp-glow); }

.footer-links h5 { font-size: .88rem; font-weight: 700; margin-bottom: .85rem; }
.footer-links ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .83rem; color: var(--text2); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  display: flex; flex-direction: column; gap: .3rem;
}
.footer-bottom p { font-size: .8rem; color: var(--text3); }
.footer-disclaimer { font-style: italic; }

html[dir="rtl"] .footer-top { direction: rtl; }

/* ═══════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px var(--gemini-glow);
  font-size: .9rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover   { transform: translateY(-4px); }

html[dir="rtl"] .back-to-top { right: auto; left: 1.75rem; }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RTL NAV & MISC
   NOTE: We rely on the browser's natural RTL flex behaviour.
   dir="rtl" on <html> causes flex-direction:row to start from
   the RIGHT edge — no row-reverse needed.
═══════════════════════════════════════════ */
/* trust-item icon stays left of text visually (centered row, order doesn't matter) */
html[dir="rtl"] .trust-item { flex-direction: row-reverse; }
/* features-header right-aligned */
html[dir="rtl"] .features-header { text-align: right; }
/* price stays LTR regardless of page direction */
html[dir="rtl"] .price-block { text-align: right; }
html[dir="rtl"] .price-current-wrap { direction: ltr; justify-content: flex-start; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; gap: 1rem; }
  .step-connector { transform: rotate(90deg); padding: 0; }
  html[dir="rtl"] .steps-grid { flex-direction: column; }
  html[dir="rtl"] .step-connector i { transform: none; }
  .footer-top { grid-template-columns: 1fr; }
  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
  html[dir="rtl"] .back-to-top { right: auto; left: 1.25rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  html[dir="rtl"] .hero-cta-group { align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 5rem 1rem 3rem; }
  .card { padding: 1.4rem; }
  .price-current { font-size: 1.9rem; }
  .nav-container { height: 58px; }
}
