/* ============================================================
   eCom Arabia + — /ecom landing (blue theme, same system as /ai) (standalone, no site chrome)
   Self-hosted fonts only (reuses /assets/fonts), no CDNs.
   ============================================================ */

/* ---------- Fonts (absolute paths — pages live in /ai/…) ---------- */
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/assets/fonts/montserrat-400-latin.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 500; font-display: swap;
  src: url(/assets/fonts/montserrat-500-latin.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 600; font-display: swap;
  src: url(/assets/fonts/montserrat-600-latin.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 700; font-display: swap;
  src: url(/assets/fonts/montserrat-700-latin.woff2) format("woff2"); }
@font-face { font-family: "Montserrat"; font-style: normal; font-weight: 800; font-display: swap;
  src: url(/assets/fonts/montserrat-800-latin.woff2) format("woff2"); }
@font-face { font-family: "Cairo"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/assets/fonts/cairo-400-arabic.woff2) format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC; }
@font-face { font-family: "Cairo"; font-style: normal; font-weight: 600; font-display: swap;
  src: url(/assets/fonts/cairo-600-arabic.woff2) format("woff2");
  unicode-range: U+0600-06FF, U+0750-077F, U+FB50-FDFF, U+FE70-FEFC; }
@font-face { font-family: "Script"; font-style: normal; font-weight: 400; font-display: swap;
  src: url(/assets/fonts/tt-kaushan.woff2) format("woff2"); }

/* ---------- Tokens ---------- */
:root {
  --bg: #FBFCFE;
  --ink: #0F1418;
  --ink-2: #4E5B66;
  --line: #E2E8EE;
  --card: #FFFFFF;
  --acc: #2E9AD6;        /* brand lime — fills, badges, dark-section accents */
  --acc-2: #2489C4;      /* gradient partner */
  --acc-deep: #1E6E9E;   /* readable lime-olive for accent text on light bg */
  --dark: #0A0D10;
  --dark-2: #10151B;
  --dark-ink: #EAF2F8;
  --dark-mut: #8FA3B3;
  --r: 18px;
  --maxw: 1140px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: "Montserrat", "Cairo", system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.65; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Type ---------- */
h1, h2, h3 { font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: 1.15rem; }
.accent { color: var(--acc-deep); }
.on-dark .accent, .dark .accent { color: var(--acc); }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--acc-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--acc-deep); }
.dark .eyebrow { color: var(--acc); }
.dark .eyebrow::before { background: var(--acc); }
.lead { color: var(--ink-2); max-width: 560px; }
.dark .lead { color: var(--dark-mut); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: .95rem; line-height: 1;
  padding: 16px 28px; border-radius: 999px; border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--acc), var(--acc-2));
  color: #06121B; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 6px 20px rgba(46, 154, 214, .35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(46, 154, 214, .45); }
.btn .arr { transition: transform .15s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn-sm { padding: 12px 22px; font-size: .88rem; }
.btn-ghost {
  background: none; box-shadow: none; color: var(--ink);
  border: 1.5px solid var(--line); font-weight: 600;
}
.btn-ghost:hover { border-color: var(--ink); box-shadow: none; }

/* ---------- Header (dark liquid-glass floating pill) ---------- */
.nav {
  position: sticky; top: 14px; z-index: 50;
  background: none; border: 0; padding: 0 14px;
}
.nav .wrap {
  height: 64px; display: flex; align-items: center; gap: 28px;
  max-width: 1240px; margin: 0 auto;
  background: rgba(10, 13, 16, .68);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
  backdrop-filter: blur(22px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .08);
  padding-inline: 24px 10px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 26px; margin-inline-start: auto; align-items: center; }
.nav-links a {
  font-size: .9rem; font-weight: 600; color: var(--dark-ink);
  position: relative; transition: color .15s;
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--acc); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform .2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav .btn { margin-inline-start: 4px; color: #06121B; }
.nav .lang-btn { border-color: #2F3E4C; color: var(--dark-ink); }
.nav .lang-btn:hover { border-color: var(--acc); color: var(--acc); }
.nav-burger {
  display: none; margin-inline-start: auto; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 10px;
}
.nav-burger span { display: block; height: 2px; background: var(--dark-ink); margin: 5px 8px; border-radius: 2px; transition: .2s; }

@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: calc(100% + 10px); left: 14px; right: 14px;
    background: rgba(10, 13, 16, .92);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, .10); border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
    flex-direction: column; padding: 20px 26px 26px; gap: 18px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .nav-burger { display: block; }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; max-width: 1240px; }
.hero-copy .lead { margin-top: 26px; }
.hero-cta { margin-top: 32px; }
.hero-note { margin-top: 18px; font-size: .84rem; color: var(--ink-2); }
.hero-note b { color: var(--ink); }
.hero-script {
  font-family: "Script", cursive; font-size: 1.5rem; color: var(--acc-deep);
  margin-top: 20px; transform: rotate(-3deg); display: inline-block;
}

/* hero masonry */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hg-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: #E3EAF0; box-shadow: 0 10px 30px rgba(15, 20, 24, .10);
}
.hg-card img, .hg-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.masonry .hg-card video { aspect-ratio: 9 / 16; }
.hg-tall { grid-row: span 2; }
.hg-wide { grid-column: span 2; aspect-ratio: 21 / 9; }
.hg-card:not(.hg-wide):not(.hg-tall) { aspect-ratio: 3 / 4; }
.hg-tall { aspect-ratio: auto; }
.hg-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--acc); color: #06121B; padding: 4px 9px; border-radius: 999px;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 40px 0 60px; }
}

/* ---------- Stats bar ---------- */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 34px 0; }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; padding: 6px 10px; }
.stat b { display: block; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; }
.stat span { font-size: .8rem; color: var(--ink-2); }
@media (max-width: 720px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
.dark { background: var(--dark); color: var(--dark-ink); }

/* community */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
.split .lead { margin-top: 20px; }
.rank-note { margin-top: 26px; font-size: .86rem; font-weight: 700; color: var(--acc-deep); }
.comm-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; box-shadow: 0 14px 40px rgba(15, 20, 24, .07);
}
.comm-card ul { display: grid; gap: 14px; margin-top: 16px; }
.comm-card li { display: flex; gap: 12px; align-items: flex-start; font-size: .93rem; color: var(--ink-2); }
.comm-card li::before { content: "✓"; color: var(--acc-deep); font-weight: 800; margin-top: 1px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* personas (dark grid) */
.personas { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border: 1px solid rgba(214, 246, 43, .25); border-radius: var(--r); overflow: hidden; }
.persona { padding: 34px 30px; border: 1px solid rgba(240, 244, 228, .07); }
.persona i { font-style: normal; font-size: .72rem; font-weight: 700; color: var(--acc); letter-spacing: .12em; }
.persona h3 { margin: 10px 0 12px; color: #fff; }
.persona p { font-size: .89rem; color: var(--dark-mut); }
@media (max-width: 960px) { .personas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .personas { grid-template-columns: 1fr; } }

/* CTA band */
.cta-band { text-align: center; padding: 74px 0; }
.cta-band .price-line { font-size: 1.05rem; margin-bottom: 24px; }
.cta-band .price-line b { font-size: 1.6rem; font-weight: 800; }
.cta-band .sub { margin-top: 16px; font-size: .84rem; color: var(--ink-2); }
.dark.cta-band .sub { color: var(--dark-mut); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px; position: relative;
}
.step i {
  font-style: normal; position: absolute; top: 22px; inset-inline-end: 24px;
  font-weight: 800; font-size: 2rem; color: var(--line);
  z-index: 0; pointer-events: none; transition: color .2s ease, transform .2s ease;
}
.step h3, .step p { position: relative; z-index: 1; }
.step { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.step:hover { transform: translateY(-4px); border-color: var(--acc-2); box-shadow: 0 14px 30px rgba(15, 20, 24, .08); }
.step:hover i { color: var(--acc); transform: scale(1.15); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--ink-2); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* transformation before/after */
.ba { display: grid; grid-template-columns: 1fr 1.05fr; gap: 26px; margin-top: 52px; align-items: stretch; }
.ba-col { border-radius: var(--r); padding: 30px 28px; }
.ba-before { background: var(--card); border: 1px solid var(--line); }
.ba-after { background: var(--dark); color: var(--dark-ink); }
.ba-col h4 { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.ba-before h4 { color: var(--ink-2); }
.ba-after h4 { color: var(--acc); }
.ba-col ul { display: grid; gap: 14px; }
.ba-col li { display: flex; gap: 12px; font-size: .91rem; }
.ba-before li { color: var(--ink-2); }
.ba-before li::before { content: "✕"; color: #C05555; font-weight: 700; }
.ba-after li::before { content: "✓"; color: var(--acc); font-weight: 800; }
@media (max-width: 820px) { .ba { grid-template-columns: 1fr; } }

/* curriculum */
.curr { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
.curr-item {
  display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r); padding: 24px 26px; align-items: flex-start;
}
.curr-item b.num { color: var(--acc-deep); font-weight: 800; font-size: 1.05rem; margin-top: 2px; }
.curr-item h3 { font-size: 1.02rem; margin-bottom: 6px; }
.curr-item p { font-size: .87rem; color: var(--ink-2); }
@media (max-width: 760px) { .curr { grid-template-columns: 1fr; } }

/* showcase masonry */
.masonry { columns: 3 260px; column-gap: 16px; margin-top: 52px; }
.masonry .hg-card { margin-bottom: 16px; break-inside: avoid; }
.masonry .hg-card img { aspect-ratio: auto; }
/* student-results grid keeps each video's native orientation */
.masonry.sr .hg-card { aspect-ratio: auto; }
.masonry.sr .hg-card video { aspect-ratio: auto; height: auto; }

/* blog preview + listing */
.posts { margin-top: 48px; border-top: 1px solid var(--line); }
.post-row {
  display: flex; gap: 22px; align-items: center; padding: 26px 6px;
  border-bottom: 1px solid var(--line); transition: background .15s;
}
.post-row:hover { background: rgba(214, 246, 43, .08); }
.post-thumb {
  flex: 0 0 84px; height: 84px; border-radius: 14px; overflow: hidden;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
}
.post-thumb svg { width: 38px; height: 38px; stroke: var(--acc); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.post-body { flex: 1; min-width: 0; }
.post-cat { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--acc-deep); }
.post-body h3 { margin: 5px 0 6px; font-size: 1.06rem; }
.post-body p { font-size: .88rem; color: var(--ink-2); }
.post-date { font-size: .78rem; color: var(--ink-2); margin-top: 8px; }
.post-arr { color: var(--ink-2); font-size: 1.2rem; }
.posts-more { text-align: center; margin-top: 36px; }

/* mentor */
.mentor { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; margin-top: 52px; }
.mentor-photo { border-radius: 50%; overflow: hidden; width: 280px; height: 280px; margin: 0 auto; border: 4px solid var(--acc); }
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; }
.mentor h3 { font-size: 1.5rem; }
.mentor .role { color: var(--acc); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin: 8px 0 18px; }
.mentor p { color: var(--dark-mut); font-size: .95rem; margin-bottom: 14px; }
.mentor .creds { margin-top: 18px; display: grid; gap: 8px; }
.mentor .creds li { font-weight: 700; color: var(--dark-ink); font-size: .95rem; }
.mentor .creds li::before { content: "— "; color: var(--acc); }
@media (max-width: 860px) { .mentor { grid-template-columns: 1fr; text-align: center; } .mentor .creds li { text-align: start; } }

/* FAQ */
.faq { max-width: 720px; margin: 52px auto 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 4px; font-weight: 700; font-size: 1rem; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-weight: 400; font-size: 1.4rem; color: var(--ink-2); flex: 0 0 auto; }
.faq details[open] summary { color: var(--acc-deep); }
.faq details[open] summary::after { content: "×"; color: var(--acc-deep); }
.faq .a { padding: 0 4px 24px; color: var(--ink-2); font-size: .92rem; max-width: 62ch; }

/* ---------- Reviews (results page) ---------- */
.reviews { columns: 3 300px; column-gap: 18px; margin-top: 52px; }
.review {
  break-inside: avoid; margin-bottom: 18px;
  background: var(--dark-2); border: 1px solid rgba(240, 244, 228, .09);
  border-radius: 16px; padding: 22px;
  color: var(--dark-ink);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
a.review-head:hover b { text-decoration: underline; color: var(--acc); }
.review-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-head b { display: block; font-size: .92rem; line-height: 1.25; }
.review-head span { font-size: .78rem; color: var(--dark-mut); }
.review p { font-size: .88rem; color: #D6DCC6; }
.review p[lang="ar"] { direction: rtl; text-align: right; font-family: "Cairo", "Montserrat", sans-serif; }
.review-foot { display: flex; gap: 16px; margin-top: 14px; font-size: .76rem; color: var(--dark-mut); }

/* ---------- Article pages ---------- */
.article { max-width: 720px; margin: 0 auto; padding: 60px 24px 80px; }
.article .post-cat { font-size: .72rem; }
.article h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 14px; }
.article .meta { font-size: .84rem; color: var(--ink-2); margin-bottom: 40px; }
.article h2 { font-size: 1.4rem; margin: 42px 0 14px; }
.article p, .article li { color: #3A4032; font-size: 1rem; }
.article p { margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 8px; }
.article blockquote {
  border-inline-start: 3px solid var(--acc); padding: 4px 20px; margin: 26px 0;
  color: var(--ink); font-weight: 600; background: rgba(214, 246, 43, .10); border-radius: 0 12px 12px 0;
}
.article .back { font-size: .85rem; font-weight: 600; color: var(--acc-deep); }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: var(--dark-mut); padding: 44px 0; font-size: .84rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 18px 30px; align-items: center; justify-content: space-between; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer a:hover { color: var(--acc); }

/* ---------- Cookie bar ---------- */
#cookieBar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  background: var(--dark); color: var(--dark-ink);
  padding: 16px 24px; display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: center; font-size: .85rem;
}
#cookieBar[hidden] { display: none; }
#cookieBar button {
  background: var(--acc); border: 0; border-radius: 999px; padding: 10px 22px;
  font-weight: 700; cursor: pointer; font-family: inherit;
}

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .rv.in { opacity: 1; transform: none; }
}

/* ---------- Language toggle ---------- */
.lang-btn {
  border: 1.5px solid var(--line); background: none; cursor: pointer;
  border-radius: 999px; padding: 9px 16px; font-family: inherit;
  font-weight: 700; font-size: .85rem; color: var(--ink); transition: border-color .15s;
}
.lang-btn:hover { border-color: var(--ink); }

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] body, [dir="rtl"] button, [dir="rtl"] input { font-family: "Cairo", "Montserrat", system-ui, sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 { letter-spacing: 0; line-height: 1.3; }
[dir="rtl"] .hero-script { transform: rotate(3deg); font-family: "Cairo", sans-serif; font-weight: 600; font-size: 1.15rem; }
[dir="rtl"] .post-arr, [dir="rtl"] .btn .arr { transform: scaleX(-1); display: inline-block; }
[dir="rtl"] .eyebrow { letter-spacing: 0; }
/* Arabic is cursive — tracking breaks letter joins on labels */
[dir="rtl"] .ba-col h4, [dir="rtl"] .mentor .role,
[dir="rtl"] .persona i, [dir="rtl"] .post-cat { letter-spacing: 0; }
[dir="rtl"] .article blockquote { border-radius: 12px 0 0 12px; }

/* ---------- Bilingual article bodies ---------- */
html[lang="ar"] .art-en { display: none; }
html[lang="en"] .art-ar { display: none; }
/* wide hero card: cola ad on desktop, villa video on mobile */
.hg-card video.vid-mobile { display: none; }

/* ---------- Mobile: hero videos keep their native orientation ---------- */
@media (max-width: 700px) {
  .hg-card video.vid-desktop { display: none; }
  .hg-card video.vid-mobile { display: block; }
  .hero-grid { display: block; columns: 2; column-gap: 14px; }
  .hero-grid .hg-card { margin-bottom: 14px; break-inside: avoid; }
  .hero-grid .hg-card:not(.hg-wide):not(.hg-tall),
  .hero-grid .hg-wide,
  .hero-grid .hg-tall { aspect-ratio: auto; }
  .hero-grid .hg-card video { height: auto; }
}

/* ---------- Micro-interactions (hover states) ---------- */
@media (hover: hover) {
  .hg-card { transition: transform .25s ease, box-shadow .25s ease; }
  .hg-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(15, 20, 24, .18); }
  .hg-card img, .hg-card video { transition: transform .4s ease; }
  .hg-card:hover img, .hg-card:hover video { transform: scale(1.04); }
  .hg-card .hg-badge { transition: background .2s ease, transform .2s ease; }
  .hg-card:hover .hg-badge { transform: translateY(-1px); }

  .review { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .review:hover { transform: translateY(-4px); border-color: var(--acc-2); box-shadow: 0 14px 32px rgba(15, 20, 24, .10); }
  .review-head img { transition: transform .2s ease; }
  .review:hover .review-head img { transform: scale(1.08) rotate(-2deg); }

  .post-row { transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
  .post-row:hover { transform: translateY(-3px); border-color: var(--acc-2); box-shadow: 0 12px 28px rgba(15, 20, 24, .08); }
  .post-row .post-arr { transition: transform .2s ease, color .2s ease; }
  .post-row:hover .post-arr { transform: translateX(4px); color: var(--acc-deep); }
  [dir="rtl"] .post-row:hover .post-arr { transform: translateX(-4px); }

  .stat { transition: transform .2s ease; }
  .stat:hover { transform: translateY(-3px); }
  .stat b { transition: color .2s ease; }
  .stat:hover b { color: var(--acc-deep); }
}
@media (prefers-reduced-motion: reduce) {
  .hg-card, .hg-card img, .hg-card video, .review, .post-row, .step, .stat { transition: none !important; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 14px 32px rgba(0, 0, 0, .32); }
.wa-fab svg { width: 30px; height: 30px; fill: #fff; display: block; }


/* ---------- eCom nav logo lockup (official mark in a white chip) ---------- */
.nav-logo { gap: 12px; }
.ec-chip {
  width: 44px; height: 44px; border-radius: 12px; background: #fff;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
}
.ec-chip img { width: 32px; height: 32px; display: block; border-radius: 8px; }
.ec-word { font-weight: 800; font-size: 1.05rem; color: var(--dark-ink); }
.ec-word b { color: var(--acc); }
