/* =================================================================
   AEON Digital Marketing — main stylesheet
   Arabic-first (RTL) / English (LTR). Uses CSS logical properties so
   layout mirrors automatically. Animations are GPU-friendly and
   disabled under prefers-reduced-motion.
   ================================================================= */

/* ---------- Design tokens ---------- */
:root {
	--purple: #5B2A86;
	--violet: #7E22CE;
	--magenta: #9333EA;
	--orange: #F36F21;
	--orange-light: #FF9D4D;

	--grad-brand: linear-gradient(120deg, #5B2A86 0%, #9333EA 45%, #F36F21 110%);
	--grad-purple: linear-gradient(135deg, #5B2A86, #9333EA);
	--grad-orange: linear-gradient(135deg, #F36F21, #FF9D4D);

	--ink: #14101f;
	--ink-2: #2b2740;
	--muted: #6b6880;
	--line: #ece9f3;
	--surface: #f7f6fb;
	--surface-2: #f0edf8;
	--white: #ffffff;
	--dark: #15101f;
	--dark-2: #1d1730;

	--container: 1200px;
	--radius: 18px;
	--radius-sm: 12px;
	--radius-lg: 28px;

	--shadow-sm: 0 6px 20px rgba(40, 20, 80, .06);
	--shadow: 0 18px 50px rgba(50, 25, 90, .10);
	--shadow-lg: 0 30px 80px rgba(50, 25, 90, .16);
	--shadow-orange: 0 16px 40px rgba(243, 111, 33, .28);
	--shadow-purple: 0 16px 40px rgba(91, 42, 134, .30);

	--font-en: 'Poppins', system-ui, sans-serif;
	--font-ar: 'Cairo', system-ui, sans-serif;
	--font: var(--font-en);

	--ease: cubic-bezier(.22, 1, .36, 1);
	--header-h: 64px;
}

.aeon-lang-ar { --font: var(--font-ar); }
.aeon-lang-en { --font: var(--font-en); }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
	font-family: var(--font);
	color: var(--ink);
	background: var(--white);
	line-height: 1.7;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; color: var(--ink); }
.aeon-lang-ar h1, .aeon-lang-ar h2, .aeon-lang-ar h3 { font-weight: 800; line-height: 1.35; }

::selection { background: var(--violet); color: #fff; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.narrow { max-width: 820px; }
.section { padding-block: clamp(40px, 4.5vw, 64px); position: relative; }
.gradient-text {
	background: var(--grad-brand);
	-webkit-background-clip: text; background-clip: text;
	color: transparent; -webkit-text-fill-color: transparent;
}
.text-orange { color: var(--orange); }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link {
	position: fixed; inset-block-start: -100px; inset-inline-start: 16px; z-index: 9999;
	background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 8px;
}
.skip-link:focus { inset-block-start: 16px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: .98rem;
	position: relative; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease), color .3s;
	white-space: nowrap;
}
.btn .aeon-icon { width: 19px; height: 19px; transition: transform .35s var(--ease); }
.aeon-rtl .btn .aeon-icon { transform: scaleX(-1); }
.btn:hover { transform: translateY(-3px); }
.btn:hover .aeon-icon { transform: translateX(4px); }
.aeon-rtl .btn:hover .aeon-icon { transform: scaleX(-1) translateX(4px); }

.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-purple); background-size: 160% 160%; }
.btn--primary:hover { box-shadow: var(--shadow-orange); background-position: 100% 0; }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--violet); color: var(--violet); }
.btn--outline { background: transparent; color: var(--violet); border: 1.5px solid var(--violet); }
.btn--outline:hover { background: var(--violet); color: #fff; }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn--light:hover { color: var(--violet); }
.btn--lg { padding: 17px 34px; font-size: 1.04rem; }
.btn--sm { padding: 11px 20px; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
	position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 900;
	padding-block: 14px; transition: background .4s, box-shadow .4s, padding .4s, backdrop-filter .4s;
}
.site-header.is-scrolled {
	background: rgba(255, 255, 255, .85);
	backdrop-filter: saturate(160%) blur(16px);
	box-shadow: 0 6px 30px rgba(40, 20, 80, .08);
	padding-block: 8px;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-link img, .site-header__brand .custom-logo { height: 40px; width: auto; transition: height .4s; }
.site-header.is-scrolled .brand-link img, .site-header.is-scrolled .custom-logo { height: 34px; }
.site-header__brand .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }

.site-nav__menu { display: flex; align-items: center; gap: clamp(10px, 2vw, 30px); }
.site-nav__menu a {
	font-weight: 600; font-size: .98rem; color: var(--ink-2); position: relative; padding-block: 6px;
	transition: color .3s;
}
.site-nav__menu a::after {
	content: ""; position: absolute; inset-block-end: 0; inset-inline-start: 0; width: 0; height: 2px;
	background: var(--grad-brand); border-radius: 2px; transition: width .35s var(--ease);
}
.site-nav__menu a:hover, .site-nav__menu .current-menu-item > a { color: var(--violet); }
.site-nav__menu a:hover::after, .site-nav__menu .current-menu-item > a::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
	display: inline-grid; place-items: center; min-width: 42px; height: 42px; padding-inline: 12px;
	border: 1.5px solid var(--line); border-radius: 100px; font-weight: 700; font-size: .9rem;
	transition: all .3s;
}
.lang-switch:hover { border-color: var(--violet); color: var(--violet); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
	position: fixed; inset: 0; z-index: 890; background: rgba(255,255,255,.98);
	backdrop-filter: blur(10px); transform: translateX(100%); transition: transform .5s var(--ease);
	display: flex; align-items: center; justify-content: center; visibility: hidden;
}
.aeon-rtl .mobile-menu { transform: translateX(-100%); }
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }
.mobile-menu__inner { display: flex; flex-direction: column; gap: 22px; text-align: center; padding: 32px; width: min(90%, 420px); }
.mobile-menu__list { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu__list a { font-size: 1.5rem; font-weight: 700; }
.mobile-menu__list a:hover { color: var(--violet); }
.mobile-menu__lang { font-weight: 700; color: var(--violet); }

/* ---------- Progress bar + preloader ---------- */
.aeon-progress { position: fixed; inset-block-start: 0; inset-inline-start: 0; width: 100%; height: 3px; z-index: 950; pointer-events: none; }
.aeon-progress span { display: block; height: 100%; width: 0; background: var(--grad-brand); }

.aeon-preloader {
	position: fixed; inset: 0; z-index: 9999; background: var(--white);
	display: grid; place-items: center; transition: opacity .6s, visibility .6s;
}
.aeon-preloader.is-done { opacity: 0; visibility: hidden; }
.aeon-preloader__mark { display: flex; align-items: center; gap: 6px; font-family: var(--font-en); font-weight: 800; font-size: 3rem; letter-spacing: -2px; }
.aeon-preloader__mark span:first-child { color: var(--purple); }
.aeon-preloader__mark .o-orange { color: var(--orange); }
.aeon-preloader__mark .dot {
	width: 16px; height: 16px; border-radius: 50%; background: var(--grad-orange);
	animation: aeonPulse 1s var(--ease) infinite;
}
@keyframes aeonPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 100svh; display: flex; align-items: center;
	padding-block: calc(var(--header-h) + 40px) 60px; overflow: hidden;
	background:
		radial-gradient(720px 560px at 90% 75%, rgba(243,111,33,.09) 0%, transparent 60%),
		radial-gradient(720px 560px at 10% 75%, rgba(243,111,33,.09) 0%, transparent 60%),
		radial-gradient(820px 520px at 86% 26%, rgba(147,51,234,.10) 0%, transparent 58%),
		radial-gradient(820px 520px at 14% 26%, rgba(147,51,234,.10) 0%, transparent 58%),
		radial-gradient(660px 540px at 96% 16%, rgba(91,42,134,.08) 0%, transparent 60%),
		radial-gradient(660px 540px at 4% 16%, rgba(91,42,134,.08) 0%, transparent 60%),
		radial-gradient(1000px 720px at 50% 48%, rgba(147,51,234,.04) 0%, transparent 65%),
		radial-gradient(1200px 600px at 80% -10%, #f3edff 0%, transparent 60%),
		radial-gradient(1200px 600px at 20% -10%, #f3edff 0%, transparent 60%),
		var(--white);
}
.aeon-rtl .hero {
	background:
		radial-gradient(720px 560px at 10% 75%, rgba(243,111,33,.09) 0%, transparent 60%),
		radial-gradient(720px 560px at 90% 75%, rgba(243,111,33,.09) 0%, transparent 60%),
		radial-gradient(820px 520px at 14% 26%, rgba(147,51,234,.10) 0%, transparent 58%),
		radial-gradient(820px 520px at 86% 26%, rgba(147,51,234,.10) 0%, transparent 58%),
		radial-gradient(660px 540px at 96% 16%, rgba(91,42,134,.08) 0%, transparent 60%),
		radial-gradient(660px 540px at 4% 16%, rgba(91,42,134,.08) 0%, transparent 60%),
		radial-gradient(1000px 720px at 50% 48%, rgba(147,51,234,.04) 0%, transparent 65%),
		radial-gradient(1200px 600px at 20% -10%, #f3edff 0%, transparent 60%),
		radial-gradient(1200px 600px at 80% -10%, #f3edff 0%, transparent 60%),
		var(--white);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; will-change: transform; }
.hero__orb--1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(147,51,234,.55), transparent 70%); inset-block-start: -80px; inset-inline-end: -60px; }
.hero__orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(243,111,33,.45), transparent 70%); inset-block-end: -100px; inset-inline-start: 10%; transform: translateY(80px); }
.hero__orb--3 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(243,111,33,.34), transparent 70%); opacity: .42; inset-block-end: 4%; inset-inline-end: 14%; }
/* Glow on the content side, same style as orb--1 but vertically centred and a touch smaller for a softer, staggered contrast against the top-anchored left orb */
.hero__orb--4 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(147,51,234,.55), transparent 70%); opacity: .5; inset-block-start: 50%; inset-inline-start: -60px; transform: translateY(-50%); }

/* Outlined decorative rings */
.hero__ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(126,34,206,.14); opacity: .85; }
.hero__ring--1 { width: 230px; height: 230px; inset-block-start: 30%; inset-inline-end: 12%; animation: heroFloat 9s var(--ease) infinite alternate; }
.hero__ring--2 { width: 96px; height: 96px; border-color: rgba(243,111,33,.20); inset-block-end: 20%; inset-inline-end: 30%; animation: heroFloat 7s var(--ease) infinite alternate-reverse; }
/* Large faint ring straddling the content-side corner */
.hero__ring--3 { width: 460px; height: 460px; border-color: rgba(126,34,206,.10); inset-block-end: -160px; inset-inline-start: -120px; animation: heroFloat 11s var(--ease) infinite alternate; }
/* Mirrors of ring--1 / ring--2 on the content side */
.hero__ring--4 { width: 230px; height: 230px; inset-block-start: 42%; inset-inline-start: 12%; animation: heroFloat 9s var(--ease) infinite alternate-reverse; }
.hero__ring--5 { width: 96px; height: 96px; border-color: rgba(243,111,33,.20); inset-block-end: 20%; inset-inline-start: 30%; animation: heroFloat 7s var(--ease) infinite alternate; }

.hero__grid {
	position: absolute; inset-block-start: 22%; inset-inline-end: 6%; width: 130px; height: 130px;
	background-image: radial-gradient(var(--violet) 1.6px, transparent 1.6px);
	background-size: 18px 18px; opacity: .18;
}
.hero__grid--2 {
	inset-block-start: auto; inset-block-end: 16%; inset-inline-end: 22%;
	width: 104px; height: 104px; color: var(--orange);
	background-image: radial-gradient(var(--orange) 1.4px, transparent 1.4px);
	background-size: 16px 16px; opacity: .16;
}
/* Dot cluster on the content side (top corner) */
.hero__grid--3 {
	inset-block-start: 20%; inset-inline-start: 4%; inset-inline-end: auto;
	width: 116px; height: 116px;
	background-image: radial-gradient(var(--purple) 1.5px, transparent 1.5px);
	background-size: 18px 18px; opacity: .12;
}
/* Mirror of grid--2 (orange dot cluster) on the content side */
.hero__grid--4 {
	inset-block-start: auto; inset-block-end: 16%; inset-inline-start: 22%; inset-inline-end: auto;
	width: 104px; height: 104px; color: var(--orange);
	background-image: radial-gradient(var(--orange) 1.4px, transparent 1.4px);
	background-size: 16px 16px; opacity: .16;
}

/* Thin gradient strokes */
.hero__stroke { position: absolute; height: 2px; border-radius: 2px; opacity: .5; }
.hero__stroke--1 { width: 120px; background: var(--grad-orange); inset-block-start: 20%; inset-inline-end: 24%; transform: rotate(-32deg); }
.hero__stroke--2 { width: 90px; background: var(--grad-purple); inset-block-end: 26%; inset-inline-start: 12%; transform: rotate(28deg); opacity: .4; }

/* Decorative plus marks */
.hero__plus { position: absolute; width: 16px; height: 16px; opacity: .5;
	background:
		linear-gradient(var(--violet), var(--violet)) center / 100% 1.6px no-repeat,
		linear-gradient(var(--violet), var(--violet)) center / 1.6px 100% no-repeat;
}
.hero__plus--1 { inset-block-start: 38%; inset-inline-end: 4%; animation: heroFloat 8.5s var(--ease) infinite alternate; }
.hero__plus--2 { inset-block-start: 14%; inset-inline-start: 8%; background:
		linear-gradient(var(--orange), var(--orange)) center / 100% 1.6px no-repeat,
		linear-gradient(var(--orange), var(--orange)) center / 1.6px 100% no-repeat; opacity: .45; animation: heroFloat 7s var(--ease) infinite alternate-reverse; }
.hero__plus--3 { width: 13px; height: 13px; inset-block-end: 14%; inset-inline-end: 46%; opacity: .4; animation: heroFloat 9.5s var(--ease) infinite alternate; }
/* Mirror of plus--1 on the content side */
.hero__plus--4 { inset-block-start: 38%; inset-inline-start: 4%; animation: heroFloat 8.5s var(--ease) infinite alternate-reverse; }

/* Small floating accent dots */
.hero__spark { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--grad-orange); opacity: .55; box-shadow: 0 6px 16px rgba(243,111,33,.3); }
.hero__spark--1 { width: 16px; height: 16px; background: var(--grad-purple); inset-block-start: 26%; inset-inline-end: 30%; animation: heroFloat 6s var(--ease) infinite alternate; }
.hero__spark--2 { inset-block-start: 54%; inset-inline-end: 9%; animation: heroFloat 8s var(--ease) infinite alternate-reverse; }
.hero__spark--3 { width: 9px; height: 9px; inset-block-end: 30%; inset-inline-end: 40%; opacity: .5; animation: heroFloat 7.5s var(--ease) infinite alternate; }
.hero__spark--4 { width: 14px; height: 14px; background: var(--grad-purple); inset-block-start: 16%; inset-inline-end: 17%; opacity: .45; animation: heroFloat 9s var(--ease) infinite alternate-reverse; }
.hero__spark--5 { width: 11px; height: 11px; inset-block-start: 32%; inset-inline-start: 6%; box-shadow: 0 6px 16px rgba(147,51,234,.28); background: var(--grad-purple); opacity: .5; animation: heroFloat 8.5s var(--ease) infinite alternate; }
.hero__spark--6 { width: 10px; height: 10px; inset-block-end: 22%; inset-inline-start: 22%; opacity: .45; animation: heroFloat 6.5s var(--ease) infinite alternate-reverse; }
/* Mirrors of spark--1 / spark--4 on the content side */
.hero__spark--7 { width: 16px; height: 16px; background: var(--grad-purple); inset-block-start: 26%; inset-inline-start: 30%; opacity: .55; box-shadow: 0 6px 16px rgba(147,51,234,.3); animation: heroFloat 6s var(--ease) infinite alternate-reverse; }
.hero__spark--8 { width: 14px; height: 14px; background: var(--grad-purple); inset-block-start: 16%; inset-inline-start: 17%; opacity: .45; animation: heroFloat 9s var(--ease) infinite alternate; }

@keyframes heroFloat { from { transform: translateY(0); } to { transform: translateY(-18px); } }

.hero__swoosh {
	position: absolute; inset-block-end: -2px; inset-inline-start: 0; width: 100%; height: 120px;
	background: var(--grad-brand); opacity: .06;
	clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}
.hero__inner { position: relative; max-width: 940px; }
.hero__eyebrow {
	display: inline-block; font-weight: 700; letter-spacing: 1px; font-size: .82rem; text-transform: uppercase;
	color: var(--orange); margin-block-end: 22px; padding: 8px 16px; border-radius: 100px;
	background: rgba(243,111,33,.08);
}
.aeon-lang-ar .hero__eyebrow { letter-spacing: 0; }
.hero__title { font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 800; letter-spacing: -2px; margin-block-end: 26px; }
.aeon-lang-ar .hero__title { letter-spacing: 0; line-height: 1.3; }
.hero__line { display: block; }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 620px; margin-block-end: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll { position: absolute; inset-block-end: 30px; inset-inline-start: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid var(--line); border-radius: 100px; display: grid; place-items: start center; padding-block-start: 8px; }
.hero__scroll-line { width: 4px; height: 8px; border-radius: 4px; background: var(--violet); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 80%,100% { transform: translateY(16px); opacity: 0; } }

/* ---------- Section heads ---------- */
.eyebrow {
	display: inline-flex; align-items: center; gap: 10px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 1.5px; font-size: .8rem; color: var(--violet); margin-block-end: 14px;
}
.aeon-lang-ar .eyebrow { letter-spacing: 0; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--grad-orange); border-radius: 2px; }
.eyebrow--light { color: var(--orange-light); }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -1px; }
.aeon-lang-ar .section-title { letter-spacing: 0; }
.section-title--light { color: #fff; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-block-start: 14px; max-width: 620px; }
.section-head { margin-block-end: 32px; max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .section-sub { margin-inline: auto; }
.section-cta { text-align: center; margin-block-start: 40px; }

/* ---------- Dot grid motif ---------- */
.dot-grid { position: absolute; width: 110px; height: 110px; background-image: radial-gradient(currentColor 1.5px, transparent 1.5px); background-size: 16px 16px; opacity: .25; }
.dot-grid--about { color: var(--orange); inset-block-end: -24px; inset-inline-end: -24px; }
.dot-grid--why { color: #fff; inset-block-start: 40px; inset-inline-end: 6%; opacity: .12; width: 160px; height: 160px; }
.dot-grid--banner { color: var(--violet); inset-block-start: 30px; inset-inline-end: 8%; opacity: .2; }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.about__media-frame img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.about__badge {
	position: absolute; inset-block-end: 26px; inset-inline-start: -22px; background: var(--grad-brand);
	color: #fff; border-radius: var(--radius); padding: 18px 24px; box-shadow: var(--shadow-purple);
	display: flex; flex-direction: column; min-width: 130px;
}
.about__badge-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about__badge-label { font-size: .85rem; opacity: .9; }
.about__text { color: var(--muted); font-size: 1.08rem; margin-block: 8px 28px; }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block-end: 32px; }
.mini-card { background: var(--surface); border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mini-card__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--grad-purple); color: #fff; margin-block-end: 12px; }
.mini-card__icon .aeon-icon { width: 24px; height: 24px; }
.mini-card h3 { font-size: 1.1rem; margin-block-end: 6px; }
.mini-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.services__grid--page { gap: 26px; }
.service-card {
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 30px 26px; position: relative; overflow: hidden;
	transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; display: block;
}
.service-card::before {
	content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 0; width: 100%; height: 4px;
	background: var(--grad-brand); transform: scaleX(0); transform-origin: inline-start; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
	display: inline-grid; place-items: center; width: 60px; height: 60px; border-radius: 16px;
	background: linear-gradient(135deg, rgba(147,51,234,.12), rgba(243,111,33,.12)); color: var(--violet);
	margin-block-end: 20px; transition: background .4s, color .4s, transform .4s var(--ease);
}
.service-card__icon img { border-radius: 10px; }
.service-card__icon .aeon-icon { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { background: var(--grad-brand); color: #fff; transform: rotate(-6deg) scale(1.05); }
.service-card__title { font-size: 1.2rem; margin-block-end: 10px; }
.service-card__desc { color: var(--muted); font-size: .96rem; line-height: 1.65; }
.service-card__more { display: inline-flex; align-items: center; gap: 6px; margin-block-start: 16px; font-weight: 700; font-size: .9rem; color: var(--orange); }
.service-card__more .aeon-icon { width: 16px; height: 16px; }
.aeon-rtl .service-card__more .aeon-icon { transform: scaleX(-1); }

/* ---------- Why (dark) ---------- */
.section--dark { background: linear-gradient(160deg, #1a1330 0%, #2a1a4a 60%, #3a1f55 100%); overflow: hidden; }
.why__bg { position: absolute; inset: 0; pointer-events: none; }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card {
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
	padding: 28px 22px; text-align: center; backdrop-filter: blur(6px);
	transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.why-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.09); border-color: rgba(243,111,33,.5); }
.why-card__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--grad-orange); color: #fff; margin-block-end: 18px; box-shadow: var(--shadow-orange); }
.why-card__icon .aeon-icon { width: 30px; height: 30px; }
.why-card__title { color: #fff; font-size: 1.12rem; margin-block-end: 8px; }
.why-card__desc { color: rgba(255,255,255,.66); font-size: .92rem; line-height: 1.6; }

/* ---------- Stats ---------- */
.stats { padding-block: clamp(40px, 4.5vw, 60px); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); position: relative; }
.stat::after { content: ""; position: absolute; inset-block-end: 0; inset-inline: 20%; height: 3px; background: var(--grad-brand); border-radius: 3px; opacity: 0; transition: opacity .4s; }
.stat:hover::after { opacity: 1; }
.stat__num { display: block; font-family: var(--font-en); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
.stat__label { display: block; margin-block-start: 10px; color: var(--muted); font-weight: 600; font-size: .96rem; }

/* ---------- Work / Portfolio ---------- */
.work__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; grid-auto-flow: dense; }
.work-card { grid-column: span 2; border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 1/1; display: block; box-shadow: var(--shadow-sm); }
.work-card--wide { grid-column: span 3; aspect-ratio: 16/10; }
.work__grid--archive { grid-template-columns: repeat(3, 1fr); }
.work__grid--archive .work-card { grid-column: auto; aspect-ratio: 4/3; }
.work-card__media { position: absolute; inset: 0; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .work-card__media img { transform: scale(1.08); }
.work-card__overlay {
	position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
	padding: 26px; color: #fff; z-index: 2;
	background: linear-gradient(to top, rgba(20,10,40,.88) 0%, rgba(20,10,40,.25) 50%, transparent 100%);
	opacity: 0; transition: opacity .45s var(--ease);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__cat { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange-light); margin-block-end: 8px; transform: translateY(10px); transition: transform .45s var(--ease) .05s; }
.work-card__title { font-size: 1.25rem; color: #fff; transform: translateY(10px); transition: transform .45s var(--ease) .1s; }
.work-card__view { display: inline-flex; align-items: center; gap: 8px; margin-block-start: 12px; font-weight: 700; font-size: .9rem; transform: translateY(10px); transition: transform .45s var(--ease) .15s; }
.work-card__view .aeon-icon { width: 16px; height: 16px; }
.aeon-rtl .work-card__view .aeon-icon { transform: scaleX(-1); }
.work-card:hover .work-card__cat, .work-card:hover .work-card__title, .work-card:hover .work-card__view { transform: translateY(0); }

.work-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-block-end: 44px; }
.work-filter { padding: 10px 22px; border-radius: 100px; border: 1.5px solid var(--line); font-weight: 600; color: var(--muted); transition: all .3s; }
.work-filter:hover { border-color: var(--violet); color: var(--violet); }
.work-filter.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; }
.work-card.is-hidden { display: none; }

/* ---------- Testimonials ---------- */
.testimonials__slider { padding-block: 16px 56px; padding-inline: clamp(20px, 5vw, 40px); max-width: 1280px; margin-inline: auto; overflow: hidden; }
.tst-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px 34px; height: 100%; box-shadow: var(--shadow-sm); position: relative; }
.tst-card__quote { position: absolute; inset-block-start: 14px; inset-inline-end: 26px; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--surface-2); }
.tst-card__text { font-size: 1.08rem; color: var(--ink-2); line-height: 1.75; position: relative; z-index: 1; }
.tst-card__author { display: flex; align-items: center; gap: 14px; margin-block-start: 26px; }
.tst-card__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.tst-card__avatar--ph { display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-weight: 800; font-size: 1.3rem; }
.tst-card__meta { display: flex; flex-direction: column; }
.tst-card__meta strong { font-weight: 700; }
.tst-card__meta small { color: var(--muted); }
.swiper-pagination-bullet { background: var(--violet); }
.swiper-pagination-bullet-active { background: var(--orange); width: 22px; border-radius: 6px; }

/* ---------- Partners marquee ---------- */
.partners { padding-block: 36px; border-block: 1px solid var(--line); background: var(--surface); overflow: hidden; }
.partners__title { text-align: center; color: var(--muted); font-weight: 600; font-size: .92rem; margin-block-end: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: marquee 28s linear infinite; }
.aeon-rtl .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-en); font-weight: 800; font-size: 1.5rem; letter-spacing: 1px; color: var(--ink); opacity: .35; transition: opacity .3s; }
.marquee__item:hover { opacity: 1; }
.marquee__dot { color: var(--orange); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-brand); background-size: 180% 180%; position: relative; overflow: hidden; padding-block: clamp(44px, 5vw, 68px); animation: ctaShift 12s var(--ease) infinite alternate; }
@keyframes ctaShift { from { background-position: 0 0; } to { background-position: 100% 100%; } }
.cta-band::before { content: ""; position: absolute; inset-block-start: -40%; inset-inline-end: -5%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); border-radius: 50%; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; }
.cta-band__title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
.cta-band__sub { color: rgba(255,255,255,.85); margin-block-start: 8px; font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(34px, 6vw, 70px); align-items: start; }
.contact__details { margin-block-start: 34px; display: flex; flex-direction: column; gap: 18px; }
.contact__details li { display: flex; gap: 14px; align-items: flex-start; }
.contact__detail-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--surface-2); color: var(--violet); flex-shrink: 0; }
.contact__detail-icon .aeon-icon { width: 20px; height: 20px; }
.aeon-rtl .contact__detail-icon .aeon-icon { transform: scaleX(-1); }
.contact__detail-label { display: block; font-size: .82rem; color: var(--muted); }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-block-end: 18px; }
.field { display: block; margin-block-end: 18px; }
.field__label { display: block; font-weight: 600; font-size: .9rem; margin-block-end: 8px; color: var(--ink-2); }
.field input, .field textarea, .field select {
	width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
	background: var(--surface); transition: border-color .3s, box-shadow .3s, background .3s; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
	outline: none; border-color: var(--violet); background: #fff; box-shadow: 0 0 0 4px rgba(126,34,206,.1);
}
.field textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-block-start: 14px; font-weight: 600; text-align: center; min-height: 1.4em; }
.form-status.is-success { color: #1f9d55; }
.form-status.is-error { color: #d23c3c; }
.btn.is-loading { opacity: .7; pointer-events: none; }
.contact-map { margin-block-start: 0; line-height: 0; }
.contact-map iframe { filter: grayscale(.2); }

/* ---------- Page banner ---------- */
.page-banner { position: relative; padding-block: calc(var(--header-h) + 50px) 60px; background: radial-gradient(900px 400px at 80% -20%, #f3edff, transparent 60%), var(--surface); overflow: hidden; text-align: center; }
.page-banner__bg { position: absolute; inset: 0; pointer-events: none; }
.page-banner__bg .hero__orb--1 { width: 320px; height: 320px; opacity: .4; }
.breadcrumb { display: inline-flex; gap: 10px; align-items: center; color: var(--muted); font-size: .92rem; margin-block-end: 14px; justify-content: center; }
.breadcrumb a:hover { color: var(--violet); }
.breadcrumb__current { color: var(--violet); font-weight: 600; }
.page-banner__title { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -1px; }
.aeon-lang-ar .page-banner__title { letter-spacing: 0; }
.page-banner__sub { color: var(--muted); margin-block-start: 12px; font-size: 1.1rem; max-width: 640px; margin-inline: auto; }

/* ---------- Blog ---------- */
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__ph { display: grid; place-items: center; height: 100%; color: var(--violet); }
.post-card__ph .aeon-icon { width: 48px; height: 48px; opacity: .4; }
.post-card__body { padding: 24px; }
.post-card__meta { display: flex; gap: 12px; align-items: center; color: var(--muted); font-size: .85rem; margin-block-end: 12px; }
.post-card__cat { background: var(--surface-2); color: var(--violet); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.post-card__title { font-size: 1.25rem; margin-block-end: 10px; }
.post-card__title a:hover { color: var(--violet); }
.post-card__excerpt { color: var(--muted); font-size: .96rem; }
.post-card__more { display: inline-flex; align-items: center; gap: 6px; margin-block-start: 16px; font-weight: 700; color: var(--orange); font-size: .9rem; }
.post-card__more .aeon-icon { width: 16px; height: 16px; }
.aeon-rtl .post-card__more .aeon-icon { transform: scaleX(-1); }

/* ---------- Entry content (typography) ---------- */
.entry-content { font-size: 1.06rem; color: var(--ink-2); }
.entry-content > * + * { margin-block-start: 1.1em; }
.entry-content h2 { font-size: 1.7rem; margin-block-start: 1.6em; }
.entry-content h3 { font-size: 1.35rem; margin-block-start: 1.4em; }
.entry-content a { color: var(--violet); text-decoration: underline; text-underline-offset: 3px; }
.entry-content img { border-radius: var(--radius); }
.entry-content blockquote { border-inline-start: 4px solid var(--orange); padding-inline-start: 20px; color: var(--muted); font-style: italic; }
.single-work__hero, .single-service__hero, .single-post__hero { border-radius: var(--radius-lg); overflow: hidden; margin-block-end: 36px; box-shadow: var(--shadow); }
.single-post__meta { display: flex; gap: 16px; color: var(--muted); margin-block-end: 24px; font-size: .92rem; }
.single-service__cta { text-align: center; margin-block-start: 48px; padding: 40px; background: var(--surface); border-radius: var(--radius-lg); }
.single-service__cta h3 { font-size: 1.5rem; margin-block-end: 20px; }
.empty-state { text-align: center; color: var(--muted); padding: 60px 0; font-size: 1.1rem; }

/* ---------- Error 404 ---------- */
.error-404__inner { text-align: center; }
.error-404__code { font-family: var(--font-en); font-size: clamp(6rem, 18vw, 12rem); font-weight: 800; line-height: 1; }
.error-404__title { font-size: 2rem; margin-block: 10px 14px; }
.error-404__text { color: var(--muted); margin-block-end: 30px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 8px; margin-block-start: 54px; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding-inline: 10px; border-radius: 12px; border: 1.5px solid var(--line); font-weight: 600; transition: all .3s; }
.pagination .page-numbers:hover, .pagination .current { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.7); padding-block: clamp(50px, 7vw, 80px) 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-block-end: 50px; }
.footer-logo { box-sizing: content-box; height: 40px; width: auto; background: #fff; padding: 10px 18px; border-radius: 12px; margin-block-end: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.footer-about { font-size: .96rem; line-height: 1.7; max-width: 320px; }
.social-list { display: flex; gap: 10px; margin-block-start: 22px; }
.social-list a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); transition: all .3s; }
.social-list a svg { width: 20px; height: 20px; }
.social-list a:hover { background: var(--grad-brand); transform: translateY(-3px); color: #fff; }
.footer-col__title { color: #fff; font-size: 1.1rem; margin-block-end: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { transition: color .3s, padding .3s; font-size: .96rem; }
.footer-links a:hover { color: #fff; padding-inline-start: 6px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.footer-contact .aeon-icon { width: 18px; height: 18px; color: var(--orange); flex-shrink: 0; margin-block-start: 3px; }
.aeon-rtl .footer-contact .aeon-icon { transform: scaleX(-1); }
.footer-contact a:hover { color: #fff; }
.footer-uae { margin-block-start: 18px; font-size: .92rem; color: rgba(255,255,255,.55); }
.site-footer__bottom { border-block-start: 1px solid rgba(255,255,255,.1); padding-block: 24px; }
.site-footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .9rem; }
.footer-tagline { color: var(--orange-light); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
	position: fixed; inset-block-end: 26px; inset-inline-end: 26px; z-index: 800;
	width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
	display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
	transition: transform .35s var(--ease); animation: fabIn .6s var(--ease) .8s both;
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { transform: scale(1.1) translateY(-2px); }
@keyframes fabIn { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.stagger.is-visible > * { animation: staggerIn .7s var(--ease) both; }
.stagger.is-visible > *:nth-child(1) { animation-delay: .05s; }
.stagger.is-visible > *:nth-child(2) { animation-delay: .12s; }
.stagger.is-visible > *:nth-child(3) { animation-delay: .19s; }
.stagger.is-visible > *:nth-child(4) { animation-delay: .26s; }
.stagger.is-visible > *:nth-child(5) { animation-delay: .33s; }
.stagger.is-visible > *:nth-child(6) { animation-delay: .40s; }
.stagger.is-visible > *:nth-child(7) { animation-delay: .47s; }
.stagger.is-visible > *:nth-child(8) { animation-delay: .54s; }
@keyframes staggerIn { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.why__grid { grid-template-columns: repeat(3, 1fr); }
	.about__inner, .contact__inner { grid-template-columns: 1fr; }
	.about__media { max-width: 540px; }
	.work__grid { grid-template-columns: repeat(4, 1fr); }
	.work-card, .work-card--wide { grid-column: span 2; aspect-ratio: 4/3; }
	.blog__grid, .work__grid--archive { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	:root { --header-h: 64px; }
	.site-nav, .header-cta { display: none; }
	.nav-toggle { display: flex; }
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.why__grid { grid-template-columns: repeat(2, 1fr); }
	.cta-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
	.services__grid, .blog__grid, .work__grid--archive { grid-template-columns: 1fr; }
	.work__grid { grid-template-columns: 1fr; }
	.work-card, .work-card--wide { grid-column: auto; }
	.why__grid, .about__cards, .form-row { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
	.about__badge { inset-inline-start: 14px; }
	.hero { min-height: auto; padding-block: calc(var(--header-h) + 60px) 70px; }
	.hero__ring, .hero__spark, .hero__grid--2, .hero__grid--3, .hero__grid--4, .hero__stroke, .hero__plus { display: none; }
	.site-footer__grid { grid-template-columns: 1fr; }
}

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