/* ═══════════════════════════════════════════════
   ATHAR — style.css  (UX enhanced)
   #1A2D6B · #F4C430 · #FAF6EC
═══════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:   #1A2D6B;
  --blue2:  #243d8f;
  --blue3:  #1a2d6b18;
  --gold:   #F4C430;
  --gold2:  #e8a800;
  --cream:  #FAF6EC;
  --dark:   #0d1a3f;
  --text:   #1e1e2e;
  --muted:  #6b7280;
  --white:  #ffffff;
  --success:#16a34a;
  --error:  #dc2626;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(26,45,107,.1);
  --shadow-lg: 0 16px 56px rgba(26,45,107,.16);
  --shadow-xl: 0 24px 72px rgba(26,45,107,.22);
  --font:    'Inter', -apple-system, sans-serif;
  --font-ar: 'Noto Kufi Arabic', 'Inter', sans-serif;
  --ease:    cubic-bezier(.25,.46,.45,.94);
  --spring:  cubic-bezier(.34,1.56,.64,1);
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(26,45,107,.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
::selection { background: rgba(244,196,48,.35); color: var(--blue); }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
[dir="rtl"] body, [lang="ar"] body { font-family: var(--font-ar); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ── */
h1 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -.015em; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
p  { color: var(--muted); font-size: 1rem; }

.highlight        { color: var(--gold); }
.highlight-outline {
  -webkit-text-stroke: 2.5px var(--blue);
  color: transparent;
  display: inline-block;
}
.highlight-light { color: var(--gold); }

.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold2);
  background: rgba(244,196,48,.1);
  border: 1px solid rgba(244,196,48,.28);
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 580px; margin: 0 auto 68px; }
.section-header h2 { margin-bottom: 14px; }
.section-header.light h2,
.section-header.light p { color: rgba(255,255,255,.9); }
.section-header.light .section-label {
  color: var(--gold); background: rgba(244,196,48,.12);
  border-color: rgba(244,196,48,.35);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 50px;
  font-weight: 700; font-size: .93rem;
  cursor: pointer; transition: all .25s var(--ease);
  border: none; white-space: nowrap; font-family: inherit;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:active::after { background: rgba(255,255,255,.15); }

.btn-primary { background: var(--gold); color: var(--blue); }
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(244,196,48,.45);
}
.btn-ghost { background: transparent; color: var(--blue); border: 2px solid rgba(26,45,107,.2); }
.btn-ghost:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); }
.btn-full { width: 100%; justify-content: center; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s var(--spring); }
.btn:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; padding: 16px 0;
  transition: background .35s var(--ease), box-shadow .35s, padding .35s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(26,45,107,.07), var(--shadow);
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 900; font-size: 1.2rem;
  transition: opacity .2s;
}
.logo:hover { opacity: .85; }
.logo-img { width: 38px; height: 38px; flex-shrink: 0; }
.logo-ar  { font-family: var(--font-ar); color: var(--blue); font-size: 1.3rem; }
.logo-sep { color: var(--gold); }
.logo-en  { color: var(--blue); }
.logo-light .logo-ar,
.logo-light .logo-en { color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links a {
  position: relative; padding: 8px 15px; border-radius: 50px;
  font-weight: 500; font-size: .88rem; color: var(--blue);
  transition: background .2s, color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold);
  border-radius: 2px; transition: width .25s var(--ease);
}
.nav-links a:hover { background: rgba(26,45,107,.06); }
.nav-links a.active::after { width: 20px; }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 700 !important; padding: 9px 20px !important;
  transition: transform .2s var(--ease), box-shadow .2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { opacity: .92; transform: translateY(-1px) !important; box-shadow: 0 6px 20px rgba(26,45,107,.25) !important; }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex; gap: 3px;
  background: rgba(26,45,107,.06); border-radius: 10px; padding: 3px;
}
.lang-btn {
  padding: 5px 10px; border-radius: 7px;
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  background: transparent; color: var(--blue);
  border: none; cursor: pointer; transition: all .18s; font-family: inherit;
}
.lang-btn.active {
  background: var(--blue); color: var(--white);
  box-shadow: 0 2px 8px rgba(26,45,107,.2);
}

/* ── Burger ── */
.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
  border-radius: 8px; transition: background .2s;
}
.burger:hover { background: rgba(26,45,107,.06); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all .3s var(--ease);
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(13,26,63,.4); backdrop-filter: blur(4px);
  z-index: 198;
}
.nav-overlay.show { display: block; }

/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--cream); position: relative; overflow: hidden;
  padding: 120px 0 72px;
}

/* Dot-grid background */
.hero-bg-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(26,45,107,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(1px); }
.shape-1 {
  width: 640px; height: 640px; opacity: .07;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  top: -160px; right: -160px;
}
.shape-2 {
  width: 380px; height: 380px; opacity: .1;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: -80px; left: -80px;
}

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.hero-text { max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,45,107,.07);
  border: 1px solid rgba(26,45,107,.12); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
  animation: badgePop .6s var(--spring) .1s both;
}
@keyframes badgePop { from{opacity:0;transform:translateY(-8px) scale(.95)} to{opacity:1;transform:none} }

.hero-title {
  color: var(--blue); margin-bottom: 14px;
  animation: slideUp .7s var(--ease) .2s both;
}
.hero-ar {
  font-family: var(--font-ar); font-size: 1.15rem; font-weight: 600;
  color: var(--blue); opacity: .6; margin-bottom: 18px; direction: rtl;
  animation: slideUp .7s var(--ease) .3s both;
}
.hero-sub {
  font-size: 1.03rem; color: var(--muted); margin-bottom: 34px; line-height: 1.78;
  animation: slideUp .7s var(--ease) .35s both;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; animation: slideUp .7s var(--ease) .4s both; }
.hero-stats   { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; animation: slideUp .7s var(--ease) .5s both; }
.stat strong  { display: block; font-size: 1.9rem; font-weight: 900; color: var(--blue); line-height: 1.1; }
.stat span    { font-size: .8rem; color: var(--muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(26,45,107,.12); }

@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

/* ════════════════════════════════════
   HERO VISUAL — redesigned
════════════════════════════════════ */
.hero-visual {
  position: relative; height: 460px;
  animation: heroVisualIn .9s var(--ease) .3s both;
}
@keyframes heroVisualIn { from{opacity:0;transform:translateX(32px)} to{opacity:1;transform:none} }

/* ── Browser shell ── */
.hv-browser {
  width: 100%; height: 368px; border-radius: 20px;
  background: var(--white); overflow: hidden;
  box-shadow: 0 32px 96px rgba(26,45,107,.2), 0 0 0 1px rgba(26,45,107,.07);
}

/* Chrome bar */
.hv-chrome {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; background: #f0f2f6;
  border-bottom: 1px solid #e5e7eb;
}
.hv-dots { display: flex; gap: 5px; }
.hvd { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hvd-r { background: #ff5f57; }
.hvd-y { background: #febc2e; }
.hvd-g { background: #28c840; }
.hv-url {
  flex: 1; background: var(--white); border-radius: 7px;
  padding: 5px 12px; font-size: .68rem; color: #888;
  font-weight: 500; display: flex; align-items: center; gap: 5px;
}
.url-lock { width: 9px; height: 10px; color: #888; flex-shrink: 0; }

/* Branded nav inside browser */
.hvs-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--blue);
}
.hvs-logo { display: flex; align-items: center; gap: 8px; }
.hvs-logo-mark {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
}
.hvs-logo-mark span {
  display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--blue);
}
.hvs-logo-text { display: flex; flex-direction: column; gap: 3px; }
.hvl { height: 4px; background: rgba(255,255,255,.3); border-radius: 2px; display: block; }
.w36  { width: 36px; }
.w28  { width: 28px; }
.w22  { width: 22px; }
.op50 { opacity: .5; }
.hvs-nav-r { display: flex; align-items: center; gap: 8px; }
.hvs-cta-pill { width: 52px; height: 20px; background: var(--gold); border-radius: 100px; }

/* Hero strip inside browser */
.hvs-hero {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; background: var(--cream); min-height: 96px;
}
.hvs-hero-left { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.hvhl { height: 6px; border-radius: 3px; }
.hvhl-1 { width: 85%; background: var(--blue); opacity: .8; }
.hvhl-2 { width: 68%; background: var(--blue); opacity: .4; }
.hvhl-3 { width: 50%; background: var(--blue); opacity: .22; }
.hvs-hero-btn {
  width: 60px; height: 19px; background: var(--gold);
  border-radius: 100px; margin-top: 4px;
}
.hvs-hero-img {
  width: 78px; height: 72px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue2) 100%);
  position: relative; overflow: hidden;
}
.hvi-blob {
  position: absolute; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(244,196,48,.35); top: -14px; right: -10px;
}
.hvi-ring {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2); top: 8px; left: 8px;
}
.hvi-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); bottom: 10px; right: 10px;
}

/* Services row */
.hvs-services {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px;
  padding: 10px 14px; background: var(--white);
}
.hvs-svc {
  border-radius: 11px; overflow: hidden;
  border: 1px solid rgba(26,45,107,.07);
  transition: transform .2s;
}
.hvs-svc-top { height: 4px; }
.hvs-svc-web   .hvs-svc-top { background: var(--blue); }
.hvs-svc-brand .hvs-svc-top { background: var(--gold); }
.hvs-svc-social .hvs-svc-top { background: #6366f1; }
.hvs-svc-body {
  padding: 9px 10px; display: flex; align-items: center; gap: 8px;
}
.hvss-icon { font-size: .95rem; flex-shrink: 0; }
.hvss-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.hvss-lines div { height: 4px; background: rgba(26,45,107,.1); border-radius: 2px; display: block; }
.w-full { width: 100%; }
.w70    { width: 70%; }
.w60    { width: 60%; }
.w65    { width: 65%; }

/* ── Chips (floating) ── */
.hv-chip {
  position: absolute;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 32px rgba(26,45,107,.15), 0 0 0 1px rgba(26,45,107,.06);
  white-space: nowrap;
}
.hvc-text strong {
  display: block; font-size: .88rem; font-weight: 800; color: var(--blue); line-height: 1.2;
}
.hvc-text small { font-size: .67rem; color: var(--muted); font-weight: 500; }

/* Analytics: bar chart chip */
.hvc-analytics {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  bottom: 68px; left: -36px;
  animation: chipFloat 3.5s ease-in-out infinite;
}
.hva-chart {
  display: flex; align-items: flex-end; gap: 3px;
  height: 34px; padding: 4px;
  background: rgba(26,45,107,.04); border-radius: 8px;
}
.hva-bar {
  width: 7px; border-radius: 3px;
  background: linear-gradient(to top, var(--blue), #4a6ee0);
  animation: barGrow .8s var(--ease) both;
}
.hva-bar:nth-child(1){animation-delay:.1s}
.hva-bar:nth-child(2){animation-delay:.2s}
.hva-bar:nth-child(3){animation-delay:.3s}
.hva-bar:nth-child(4){animation-delay:.4s}
.hva-bar:nth-child(5){animation-delay:.5s}
@keyframes barGrow { from{transform:scaleY(0);transform-origin:bottom} to{transform:scaleY(1)} }

/* Success chip */
.hvc-success {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  bottom: -4px; right: -18px;
  animation: chipFloat 3.5s ease-in-out .85s infinite;
}
.hvc-check-circle {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  display: flex; align-items: center; justify-content: center;
}
.hvc-check-circle svg { width: 16px; height: 16px; }

/* Rating chip */
.hvc-rating {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 14px 18px;
  top: 24px; right: -30px;
  animation: chipFloat 3.5s ease-in-out 1.7s infinite;
}
.hvc-star-row { display: flex; gap: 2px; }
.hvc-star-row svg { width: 13px; height: 13px; }
@keyframes chipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-scroll-hint {
  position: absolute; bottom: 28px; right: 44px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--blue); opacity: .3;
  font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px; background: var(--blue);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(.55)} }

/* ════════════════════════════════════
   SERVICES
════════════════════════════════════ */
.services { padding: 108px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

.service-card {
  position: relative; background: var(--cream); border-radius: var(--radius);
  padding: 38px 30px; border: 1px solid rgba(26,45,107,.06);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease);
  overflow: hidden; cursor: default;
}
/* Left accent bar */
.service-card::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; background: var(--gold);
  border-radius: 0 3px 3px 0; transform: scaleY(0);
  transform-origin: center; transition: transform .3s var(--spring);
}
[dir="rtl"] .service-card::before { left: auto; right: 0; border-radius: 3px 0 0 3px; }
/* Index watermark */
.service-card::after {
  content: attr(data-index); position: absolute; top: 16px; right: 20px;
  font-size: 4rem; font-weight: 900; color: var(--blue); opacity: .035;
  line-height: 1; pointer-events: none;
}
[dir="rtl"] .service-card::after { right: auto; left: 20px; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleY(1); }

.service-card.featured { background: var(--blue); border-color: transparent; }
.service-card.featured::before { background: var(--gold); transform: scaleY(1); }
.service-card.featured::after { color: rgba(255,255,255,.05); }
.service-card.featured h3,
.service-card.featured p,
.service-card.featured li  { color: rgba(255,255,255,.85); }
.service-card.featured .service-link,
.service-card.featured .service-icon { color: var(--gold); }

.service-badge {
  display: inline-block; background: var(--gold); color: var(--blue);
  font-size: .68rem; font-weight: 900; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}

.service-icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,45,107,.07); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  transition: background .25s, transform .25s var(--spring);
}
.service-card:hover .service-icon-wrap { background: rgba(26,45,107,.12); transform: scale(1.08); }
.service-card.featured .service-icon-wrap { background: rgba(255,255,255,.1); }
.service-card.featured:hover .service-icon-wrap { background: rgba(255,255,255,.18); }

.service-icon { width: 28px; height: 28px; color: var(--blue); }
.service-icon svg { width: 100%; height: 100%; }
.service-card.featured .service-icon { color: var(--gold); }

.service-card h3 { color: var(--blue); margin-bottom: 10px; }
.service-card p  { font-size: .88rem; margin-bottom: 18px; line-height: 1.7; }
.service-list { list-style: none; margin-bottom: 24px; }
.service-list li {
  font-size: .84rem; color: var(--muted); padding: 7px 0;
  border-bottom: 1px solid rgba(26,45,107,.06);
  display: flex; align-items: center; gap: 8px;
}
.service-list li::before { content:'✦'; font-size:.55rem; color:var(--gold2); flex-shrink: 0; }
.service-card.featured .service-list li { border-color: rgba(255,255,255,.07); }
.service-card.featured .service-list li::before { color: var(--gold); }
.service-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .84rem; font-weight: 700; color: var(--blue);
  transition: gap .2s;
}
.service-link:hover { gap: 9px; opacity: .8; }

/* ════════════════════════════════════
   ABOUT — redesigned visual
════════════════════════════════════ */
.about { padding: 108px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center; min-height: 480px;
}

/* Gradient blob background */
.av-blob {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(244,196,48,.22) 0%,
    rgba(250,246,236,.9) 55%,
    transparent 80%);
  z-index: 0;
}

/* Spinning rings */
@keyframes spin { to { transform: rotate(360deg); } }
.av-ring { position: absolute; border-radius: 50%; z-index: 0; }
.av-ring-outer {
  width: 380px; height: 380px;
  border: 1.5px dashed rgba(244,196,48,.28);
  animation: spin 22s linear infinite;
}
.av-ring-inner {
  width: 286px; height: 286px;
  border: 1.5px dashed rgba(26,45,107,.1);
  animation: spin 16s linear reverse infinite;
}

/* ── Central card ── */
.av-main-card {
  position: relative; z-index: 2;
  background: var(--white); border-radius: 28px;
  padding: 36px 30px; text-align: center;
  box-shadow: 0 28px 80px rgba(26,45,107,.18), 0 0 0 1px rgba(26,45,107,.06);
  width: 268px;
  transition: transform .35s var(--spring);
}
.av-main-card:hover { transform: translateY(-4px) scale(1.01); }

/* Logo with conic-gradient spinning ring */
.av-logo-frame {
  position: relative; width: 92px; height: 92px; margin: 0 auto 20px;
}
.av-logo-spin-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  background: conic-gradient(
    var(--gold) 0deg,
    var(--blue) 120deg,
    var(--gold) 200deg,
    var(--blue) 300deg,
    var(--gold) 360deg
  );
  animation: spin 5s linear infinite;
}
.av-logo-white-border {
  position: absolute; inset: -2px; border-radius: 50%;
  background: var(--white); z-index: 1;
}
.about-logo-img {
  position: relative; z-index: 2;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--cream); padding: 14px;
  object-fit: contain;
}

.av-name {
  font-family: var(--font-ar); font-size: 1.25rem; font-weight: 800;
  color: var(--blue); margin-bottom: 4px;
}
.av-tagline {
  font-size: .68rem; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 22px;
}

/* Stats inside the card */
.av-stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 14px 16px;
  background: var(--cream); border-radius: 16px;
  border: 1px solid rgba(26,45,107,.06);
}
.avsr-item strong {
  display: block; font-size: 1.05rem; font-weight: 900; color: var(--blue); line-height: 1.2;
}
.avsr-item span {
  font-size: .62rem; color: var(--muted); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}
.avsr-sep { width: 1px; height: 28px; background: rgba(26,45,107,.1); flex-shrink: 0; }

/* ── Service badges (colorised) ── */
.av-badge {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  border-radius: 50px; padding: 9px 16px;
  font-size: .79rem; font-weight: 700; white-space: nowrap;
  box-shadow: 0 6px 22px rgba(26,45,107,.11), 0 0 0 1px rgba(0,0,0,.05);
  transition: transform .25s var(--spring);
  cursor: default;
}
.av-badge:hover { transform: scale(1.06) !important; }
.av-badge-icon { width: 14px; height: 14px; flex-shrink: 0; }

.av-b-branding {
  top: 7%; left: 0%;
  background: rgba(244,196,48,.12); color: #92700a;
  border: 1px solid rgba(244,196,48,.28);
  animation: chipFloat 4.5s ease-in-out infinite;
}
.av-b-web {
  bottom: 16%; right: 0%;
  background: rgba(26,45,107,.07); color: var(--blue);
  border: 1px solid rgba(26,45,107,.14);
  animation: chipFloat 4.5s ease-in-out .8s infinite;
}
.av-b-social {
  bottom: 28%; left: 0%;
  background: rgba(99,102,241,.07); color: #4338ca;
  border: 1px solid rgba(99,102,241,.18);
  animation: chipFloat 4.5s ease-in-out 1.6s infinite;
}
.av-b-print {
  top: 32%; right: 0%;
  background: rgba(5,150,105,.07); color: #065f46;
  border: 1px solid rgba(5,150,105,.18);
  animation: chipFloat 4.5s ease-in-out 2.4s infinite;
}

.about-content .section-label { display: block; margin-bottom: 16px; }
.about-content h2 { color: var(--blue); margin-bottom: 20px; }
.about-text { font-size: 1rem; margin-bottom: 14px; line-height: 1.8; }
.about-text strong { color: var(--blue); }

.about-values { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; border-radius: var(--radius-sm);
  background: transparent; border: 1px solid transparent;
  transition: background .2s, border-color .2s;
}
.value-item:hover { background: rgba(26,45,107,.03); border-color: rgba(26,45,107,.07); }
.value-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--gold); color: var(--blue); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900; margin-top: 1px;
  transition: transform .25s var(--spring);
}
.value-item:hover .value-icon { transform: rotate(-8deg) scale(1.1); }
.value-item strong { display: block; color: var(--blue); font-size: .92rem; margin-bottom: 2px; }
.value-item p { font-size: .85rem; margin: 0; }

/* ════════════════════════════════════
   PORTFOLIO
════════════════════════════════════ */
.portfolio { padding: 108px 0; background: var(--white); }

/* Filter tabs */
.portfolio-filters {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 100px;
  font-size: .82rem; font-weight: 700; letter-spacing: .03em;
  border: 1.5px solid rgba(26,45,107,.12);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all .22s var(--ease); font-family: inherit;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,45,107,.2);
}

/* Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 52px; }
.portfolio-card.wide { grid-column: span 2; }

.portfolio-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(26,45,107,.07);
  background: var(--cream); cursor: pointer;
  will-change: transform;
  transform-style: preserve-3d;
  transition: box-shadow .35s var(--ease), opacity .35s ease;
}
.portfolio-card:hover { box-shadow: var(--shadow-xl); }
.portfolio-card.hidden {
  opacity: 0; pointer-events: none;
  transform: scale(.95) translateY(10px);
}

.portfolio-thumb {
  height: 210px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-card.wide .portfolio-thumb { height: 290px; }
.portfolio-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.06); }

/* Overlay on hover */
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(26,45,107,.72);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s var(--ease);
  backdrop-filter: blur(2px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-view-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--blue);
  padding: 11px 24px; border-radius: 50px;
  font-weight: 800; font-size: .88rem;
  transform: translateY(10px); transition: transform .3s var(--spring);
}
.portfolio-card:hover .portfolio-view-btn { transform: none; }

/* placeholder */
.portfolio-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-thumb-placeholder.cat-web     { background: linear-gradient(135deg,#1A2D6B,#2a4a9f); }
.portfolio-thumb-placeholder.cat-social  { background: linear-gradient(135deg,#1A2D6B,#3b5bdb); }
.portfolio-thumb-placeholder.cat-branding{ background: linear-gradient(135deg,#c9a000,#F4C430); }
.portfolio-thumb-placeholder.cat-print   { background: linear-gradient(135deg,#0d1a3f,#1A2D6B); }
.portfolio-thumb-placeholder svg { width: 56px; height: 56px; opacity: .25; }

.portfolio-info { padding: 24px; }
.portfolio-tag {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold2); background: rgba(244,196,48,.1);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
}
.portfolio-info h3 { color: var(--blue); margin-bottom: 6px; }
.portfolio-info p  { font-size: .85rem; line-height: 1.6; }
.portfolio-empty {
  grid-column: span 2; text-align: center;
  padding: 64px 20px; color: var(--muted); font-size: .95rem;
}
.portfolio-cta { text-align: center; }
.portfolio-cta p { font-size: 1.05rem; font-weight: 600; color: var(--blue); margin-bottom: 18px; }

/* ════════════════════════════════════
   PROCESS
════════════════════════════════════ */
.process { padding: 108px 0; background: var(--blue); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(244,196,48,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.steps { display: flex; align-items: flex-start; gap: 0; flex-wrap: nowrap; justify-content: center; position: relative; }
/* Connecting line between steps */
.steps::before {
  content: ''; position: absolute;
  top: 25px; left: 15%; right: 15%;
  height: 1px; background: rgba(244,196,48,.2);
}

.step {
  flex: 1; min-width: 160px; max-width: 210px;
  text-align: center; padding: 0 12px;
  position: relative; z-index: 1;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; background: var(--gold); color: var(--blue);
  font-size: .95rem; font-weight: 900; border-radius: 15px;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(244,196,48,.35);
  transition: transform .3s var(--spring);
}
.step:hover .step-num { transform: scale(1.12) rotate(-5deg); }
.step h3 { color: var(--white); margin-bottom: 10px; font-size: .97rem; }
.step p  { color: rgba(255,255,255,.55); font-size: .84rem; line-height: 1.6; }
.step-arrow {
  display: none; /* replaced by ::before line */
}

/* ════════════════════════════════════
   CONTACT
════════════════════════════════════ */
.contact { padding: 108px 0; background: var(--cream); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.contact-info .section-label { display: block; margin-bottom: 16px; }
.contact-info h2 { color: var(--blue); margin-bottom: 14px; }
.contact-info > p { font-size: 1rem; margin-bottom: 34px; line-height: 1.78; }

.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: var(--white);
  border-radius: 14px; box-shadow: 0 2px 10px rgba(26,45,107,.06);
  transition: transform .25s var(--spring), box-shadow .25s;
  border: 1px solid transparent;
}
.contact-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: rgba(26,45,107,.06);
}
[dir="rtl"] .contact-item:hover { transform: translateX(-5px); }
.contact-icon {
  width: 40px; height: 40px; background: rgba(244,196,48,.15);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 1.05rem; flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--blue); font-size: .8rem; margin-bottom: 2px; }
.contact-item span  { font-size: .85rem; color: var(--muted); }
.contact-arrow { margin-left: auto; color: var(--gold2); font-size: .9rem; opacity: 0; transition: opacity .2s, transform .2s; }
.contact-item:hover .contact-arrow { opacity: 1; transform: translateX(3px); }
[dir="rtl"] .contact-arrow { margin-left: 0; margin-right: auto; }

.contact-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  border: 2px solid rgba(26,45,107,.12);
  color: var(--blue); font-weight: 700; font-size: .82rem;
  transition: all .22s var(--ease);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-2px); }

/* Form */
.contact-form-wrap {
  background: var(--white); border-radius: 24px; padding: 40px;
  box-shadow: var(--shadow-xl); border: 1px solid rgba(26,45,107,.05);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 5px; position: relative; }
.form-group label { font-size: .78rem; font-weight: 800; color: var(--blue); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 2px solid rgba(26,45,107,.09);
  border-radius: 12px; font-family: inherit; font-size: .9rem;
  color: var(--text); background: #fafbff;
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none; resize: vertical; line-height: 1.5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(26,45,107,.07);
  background: var(--white);
}
.form-group input.valid   { border-color: var(--success); }
.form-group input.invalid { border-color: var(--error); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0c8d4; }

/* Field status icon */
.field-status {
  position: absolute; right: 14px; bottom: 13px;
  font-size: .85rem; opacity: 0; transition: opacity .2s;
}
.form-group input.valid   ~ .field-status::after { content: '✓'; color: var(--success); opacity: 1; }
.form-group input.invalid ~ .field-status::after { content: '✗'; color: var(--error); opacity: 1; }
.form-group input.valid   ~ .field-status,
.form-group input.invalid ~ .field-status { opacity: 1; }

/* Char counter */
.char-counter {
  font-size: .73rem; color: var(--muted); text-align: right;
  margin-top: 2px; transition: color .2s;
}
.char-counter.warn { color: var(--gold2); }
.char-counter.over { color: var(--error); }

.form-note { text-align: center; font-size: .77rem; color: var(--muted); margin: 0; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--dark); padding: 72px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.4); line-height: 1.75; }
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4,
.footer-contact h4 { color: var(--white); font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.footer-links a,
.footer-contact a,
.footer-contact span { font-size: .83rem; color: rgba(255,255,255,.42); transition: color .2s; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: .77rem; color: rgba(255,255,255,.22); }

/* ════════════════════════════════════
   BACK TO TOP
════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 150;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(26,45,107,.3);
  opacity: 0; transform: translateY(12px);
  transition: all .3s var(--spring); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-to-top:hover { background: var(--blue2); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ════════════════════════════════════
   ANIMATIONS
════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════
   RTL
════════════════════════════════════ */
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-inner { direction: rtl; }
[dir="rtl"] .hero-text  { text-align: right; }
[dir="rtl"] .hero-ar    { direction: rtl; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; }
[dir="rtl"] .hero-stats   { flex-direction: row-reverse; }
[dir="rtl"] .hero-visual   { transform: scaleX(-1); }
[dir="rtl"] .hvc-analytics { left: auto; right: -36px; }
[dir="rtl"] .hvc-success   { right: auto; left: -18px; }
[dir="rtl"] .hvc-rating    { right: auto; left: -30px; }
[dir="rtl"] .av-b-branding { left: auto; right: 0%; }
[dir="rtl"] .av-b-web      { right: auto; left: 0%; }
[dir="rtl"] .av-b-social   { left: auto; right: 0%; }
[dir="rtl"] .av-b-print    { right: auto; left: 0%; }
[dir="rtl"] .about-inner  { direction: rtl; }
[dir="rtl"] .about-values { direction: rtl; }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .contact-inner  { direction: rtl; }
[dir="rtl"] .contact-form   { direction: rtl; }
[dir="rtl"] .form-group { text-align: right; }
[dir="rtl"] .field-status { right: auto; left: 14px; }
[dir="rtl"] .char-counter { text-align: left; }
[dir="rtl"] .footer-inner { direction: rtl; }
[dir="rtl"] .footer-bottom .container { flex-direction: row-reverse; }
[dir="rtl"] .steps { direction: rtl; }
[dir="rtl"] .back-to-top { right: auto; left: 32px; }
[dir="rtl"] .hero-scroll-hint { right: auto; left: 44px; }
[dir="rtl"] .badge-1 { left: auto; right: 0; }
[dir="rtl"] .badge-2 { left: auto; right: 2%; }
[dir="rtl"] .badge-3 { right: auto; left: 0; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual { height: 360px; }
  .hv-chip-1 { left: -20px; }
  .hv-chip-2 { right: -10px; }
  .hv-chip-3 { right: -20px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .about-visual { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { flex-wrap: wrap; }
  .steps::before { display: none; }
}
@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.wide { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--white); padding: 80px 20px 28px;
    box-shadow: var(--shadow-xl); gap: 4px; z-index: 199;
    animation: slideDown .3s var(--ease);
  }
  @keyframes slideDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:none} }
  .nav-links.open a { width: 100%; padding: 13px 18px; border-radius: 12px; }
  .burger { display: flex; z-index: 201; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 16px; }
  .contact-form-wrap { padding: 24px; }
  .hero-scroll-hint { display: none; }
  .back-to-top { width: 42px; height: 42px; bottom: 20px; right: 20px; }
  [dir="rtl"] .back-to-top { right: auto; left: 20px; }
  .lang-switcher .lang-btn { padding: 4px 9px; font-size: .72rem; }
}

/* ════════════════════════════════════
   SCROLL PROGRESS BAR
════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 60%, var(--gold) 100%);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
  pointer-events: none;
}

/* ════════════════════════════════════
   CUSTOM CURSOR
════════════════════════════════════ */
/* Curseur personnalisé supprimé — retour au curseur natif */
/* ════════════════════════════════════
   HERO PARTICLE CANVAS
════════════════════════════════════ */
.hero-particles {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; width: 100%; height: 100%;
}

/* ════════════════════════════════════
   PORTFOLIO CARD — tilt & image
════════════════════════════════════ */
/* Show image with subtle zoom on load */
.portfolio-thumb img {
  animation: imgReveal .6s var(--ease) both;
}
@keyframes imgReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════════════
   FLOATING ENTRANCE ANIMATIONS
   (stagger on portfolio grid cards)
════════════════════════════════════ */
@keyframes cardEnter {
  from { opacity:0; transform: translateY(32px) scale(.97); }
  to   { opacity:1; transform: none; }
}
.portfolio-card.fade-up.visible {
  animation: cardEnter .55s var(--spring) both;
}
.portfolio-card.fade-up.visible:nth-child(2) { animation-delay: .08s; }
.portfolio-card.fade-up.visible:nth-child(3) { animation-delay: .16s; }
.portfolio-card.fade-up.visible:nth-child(4) { animation-delay: .24s; }
.portfolio-card.fade-up.visible:nth-child(5) { animation-delay: .32s; }
.portfolio-card.fade-up.visible:nth-child(6) { animation-delay: .40s; }

/* ════════════════════════════════════
   SERVICE CARD — tilt resets via JS
════════════════════════════════════ */
.service-card { will-change: transform; }

/* ════════════════════════════════════
   MAGNETIC BUTTON smooth spring back
════════════════════════════════════ */
.btn-primary, .btn-ghost {
  transition: transform .4s var(--spring),
              background .25s var(--ease),
              box-shadow  .25s var(--ease),
              color .25s var(--ease),
              border-color .25s var(--ease);
}

/* ════════════════════════════════════
   SECTION REVEAL — staggered children
════════════════════════════════════ */
.services-grid .fade-up:nth-child(1) { transition-delay: 0ms; }
.services-grid .fade-up:nth-child(2) { transition-delay: 100ms; }
.services-grid .fade-up:nth-child(3) { transition-delay: 200ms; }

/* ════════════════════════════════════
   PORTFOLIO TAG COLORS per category
════════════════════════════════════ */
.portfolio-card[data-category="web"]      .portfolio-tag { color: var(--blue); background: rgba(26,45,107,.08); }
.portfolio-card[data-category="branding"] .portfolio-tag { color: #92700a; background: rgba(244,196,48,.14); }
.portfolio-card[data-category="social"]   .portfolio-tag { color: #4338ca; background: rgba(99,102,241,.1); }
.portfolio-card[data-category="print"]    .portfolio-tag { color: #065f46; background: rgba(5,150,105,.1); }

/* ════════════════════════════════════
   PORTFOLIO IMAGE OVERLAY GRADIENT
════════════════════════════════════ */
.portfolio-thumb::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(13,26,63,.4), transparent);
  pointer-events: none; z-index: 1;
  opacity: 0; transition: opacity .3s;
}
.portfolio-card:hover .portfolio-thumb::after { opacity: 1; }

/* ════════════════════════════════════
   HERO — extra glow ring (decorative)
════════════════════════════════════ */
.hero-visual::before {
  content: '';
  position: absolute; inset: -20px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 70% 50%,
    rgba(244,196,48,.12) 0%,
    transparent 65%);
  pointer-events: none; z-index: 0;
}

/* ════════════════════════════════════
   PROCESS STEP — glow on active num
════════════════════════════════════ */
.step:hover .step-num {
  box-shadow: 0 0 0 8px rgba(244,196,48,.18),
              0 6px 20px rgba(244,196,48,.4);
}

/* ════════════════════════════════════
   ABOUT CARD — pulse on spin ring
════════════════════════════════════ */
@keyframes pulseBorder {
  0%,100% { box-shadow: 0 28px 80px rgba(26,45,107,.18), 0 0 0 1px rgba(26,45,107,.06); }
  50%     { box-shadow: 0 28px 80px rgba(26,45,107,.25), 0 0 0 4px rgba(244,196,48,.18); }
}
.av-main-card { animation: pulseBorder 4s ease-in-out infinite; }

/* ════════════════════════════════════
   SCROLL HINT line - more visible
════════════════════════════════════ */
.hero-scroll-hint { opacity: .45; }

