/* ============================================================
   PureSpark — Main stylesheet
   Palette from the brand logo:
   black #000000 · navy #12356D · cyan #00B4FF · silver-white
   ============================================================ */

:root {
	--bg-dark: #05070d;
	--bg-black: #000000;
	--navy: #12356d;
	--navy-deep: #081a3a;
	--navy-soft: #1c4a92;
	--cyan: #00b4ff;
	--cyan-soft: #66d3ff;
	--cyan-glow: rgba(0, 180, 255, 0.35);
	--light: #f4f7fc;
	--light-2: #e8eef7;
	--ink: #131f38;
	--ink-soft: #4b5a77;
	--white: #ffffff;
	--silver: #cdd7e6;
	--radius: 18px;
	--radius-lg: 26px;
	--shadow-card: 0 12px 34px rgba(5, 12, 28, 0.10);
	--shadow-lift: 0 24px 50px rgba(5, 12, 28, 0.16);
	--shadow-cyan: 0 10px 34px rgba(0, 180, 255, 0.38);
	--ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
	--font-ar: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
	--font-lat: 'Space Grotesk', 'Tajawal', sans-serif;
	--container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-ar);
	font-size: 17px;
	line-height: 1.8;
	color: var(--ink);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

a { color: var(--cyan); text-decoration: none; transition: color 0.25s var(--ease-out); }
a:hover { color: var(--cyan-soft); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-ar);
	font-weight: 800;
	line-height: 1.35;
	color: var(--ink);
	margin: 0 0 0.5em;
}

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: 24px;
}

.section { padding: 96px 0; position: relative; }
.section-dark { background: var(--bg-dark); color: var(--silver); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark .section-title { color: var(--white); }
.section-dark .section-sub { color: var(--silver); }

.section-head {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
}

.section-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 900;
	margin-bottom: 16px;
}

.section-title .accent { color: var(--cyan); }

.section-sub { font-size: 18px; color: var(--ink-soft); }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-lat);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan);
	background: rgba(0, 180, 255, 0.08);
	border: 1px solid rgba(0, 180, 255, 0.22);
	padding: 7px 16px;
	border-radius: 999px;
	margin-bottom: 20px;
}
.section-dark .eyebrow { background: rgba(0, 180, 255, 0.12); }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--font-ar);
	font-weight: 700;
	font-size: 16px;
	padding: 14px 30px;
	border-radius: 999px;
	border: 0;
	cursor: pointer;
	transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
	text-decoration: none;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }

.btn-primary {
	background: linear-gradient(135deg, var(--cyan) 0%, var(--navy-soft) 120%);
	color: #fff;
	box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 44px rgba(0, 180, 255, 0.5);
	color: #fff;
}
.btn-primary:hover svg { transform: translateX(-4px); }

.btn-ghost {
	background: transparent;
	color: var(--white);
	border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
	border-color: var(--cyan);
	color: var(--cyan-soft);
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(0, 180, 255, 0.18);
}

.btn-outline {
	background: transparent;
	color: var(--navy);
	border: 1.5px solid rgba(18, 53, 109, 0.35);
}
.btn-outline:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	transform: translateY(-3px);
	box-shadow: var(--shadow-cyan);
}

.btn-lg { padding: 17px 38px; font-size: 17px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 100;
	transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), padding 0.35s var(--ease-out);
	padding: 18px 0;
}
.site-header.scrolled {
	background: rgba(5, 7, 13, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
	padding: 10px 0;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-brand { display: flex; align-items: center; gap: 12px; }
.site-brand img { height: 46px; width: auto; }

.main-nav ul {
	display: flex;
	align-items: center;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.main-nav ul li a {
	display: inline-block;
	color: var(--silver);
	font-weight: 500;
	font-size: 16px;
	padding: 9px 16px;
	border-radius: 999px;
	position: relative;
}
.main-nav ul li a:hover { color: var(--white); }
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
	color: var(--cyan);
}
.main-nav ul li.current-menu-item > a::after {
	content: '';
	position: absolute;
	inset-inline: 16px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--cyan);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 22px; font-size: 15px; }

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	color: var(--white);
	width: 44px;
	height: 44px;
	border-radius: 12px;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
	position: relative;
	background: radial-gradient(1100px 600px at 85% -10%, rgba(0, 180, 255, 0.16), transparent 60%),
	            radial-gradient(900px 520px at 0% 110%, rgba(18, 53, 109, 0.55), transparent 60%),
	            var(--bg-dark);
	color: var(--silver);
	padding: 170px 0 110px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(rgba(0, 180, 255, 0.10) 1px, transparent 1px);
	background-size: 34px 34px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent 75%);
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 56px;
}

.hero-logo { margin-bottom: 26px; }
.hero-logo img { height: 96px; width: auto; filter: drop-shadow(0 10px 30px rgba(0, 180, 255, 0.25)); }

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--cyan-soft);
	background: rgba(0, 180, 255, 0.1);
	border: 1px solid rgba(0, 180, 255, 0.25);
	border-radius: 999px;
	padding: 8px 18px;
	margin-bottom: 26px;
}
.hero-badge .dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--cyan);
	box-shadow: 0 0 12px var(--cyan);
	animation: pulse 2.2s var(--ease-out) infinite;
}

.hero-title {
	font-size: clamp(34px, 5.4vw, 58px);
	font-weight: 900;
	line-height: 1.3;
	color: var(--white);
	margin-bottom: 22px;
}
.hero-title .grad {
	background: linear-gradient(100deg, var(--cyan) 10%, var(--cyan-soft) 55%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-sub {
	font-size: 19px;
	color: var(--silver);
	max-width: 540px;
	margin-bottom: 36px;
}

.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
	display: flex;
	gap: 44px;
	flex-wrap: wrap;
}
.hero-stat .num {
	font-family: var(--font-lat);
	font-size: 34px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.1;
}
.hero-stat .num em { font-style: normal; color: var(--cyan); }
.hero-stat .lbl { font-size: 14px; color: var(--silver); margin-top: 4px; }

/* Hero visual — CSS phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone {
	width: 300px;
	aspect-ratio: 9 / 19;
	background: linear-gradient(180deg, #0a1428, #05070d 60%);
	border: 1.5px solid rgba(0, 180, 255, 0.28);
	border-radius: 42px;
	box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(255, 255, 255, 0.04), 0 0 60px rgba(0, 180, 255, 0.14);
	padding: 14px;
	position: relative;
	animation: float 6s ease-in-out infinite;
}
.phone .notch {
	width: 96px; height: 24px;
	background: var(--bg-black);
	border-radius: 999px;
	margin: 0 auto 14px;
}
.phone-screen {
	height: calc(100% - 52px);
	border-radius: 26px;
	overflow: hidden;
	background: linear-gradient(160deg, #0d2c52 0%, var(--navy-deep) 55%, #06203f 100%);
	padding: 18px 14px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.phone-row { height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.12); }
.phone-row.short { width: 55%; }
.phone-row.cyan { background: linear-gradient(90deg, var(--cyan), rgba(0, 180, 255, 0.25)); }
.phone-card {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 14px;
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.phone-card .chip {
	width: 34px; height: 34px; border-radius: 10px; flex: none;
	background: linear-gradient(135deg, var(--cyan), var(--navy));
}
.phone-card .lines { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.phone-card .lines span { height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.14); }
.phone-card .lines span:last-child { width: 60%; }
.phone-cta {
	margin-top: auto;
	height: 34px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--cyan), var(--navy-soft));
	box-shadow: 0 6px 20px rgba(0, 180, 255, 0.4);
}

.float-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(10, 18, 34, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(0, 180, 255, 0.3);
	border-radius: 16px;
	padding: 12px 18px;
	box-shadow: var(--shadow-card);
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
}
.float-badge .ic {
	width: 34px; height: 34px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--cyan), var(--navy));
	color: #fff;
}
.float-badge .ic svg { width: 18px; height: 18px; }
.float-badge small { display: block; font-weight: 500; color: var(--silver); font-size: 12px; }

.float-badge.b1 { top: 34px; inset-inline-start: -30px; animation: float 7s ease-in-out infinite 0.6s; }
.float-badge.b2 { bottom: 60px; inset-inline-end: -42px; animation: float 8s ease-in-out infinite 1.2s; }

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
	background: var(--bg-black);
	border-block: 1px solid rgba(0, 180, 255, 0.14);
	padding: 20px 0;
	overflow: hidden;
	position: relative;
}
.marquee-track {
	display: flex;
	gap: 48px;
	width: max-content;
	animation: marquee 30s linear infinite;
}
.marquee-item {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--silver);
	font-weight: 700;
	font-size: 17px;
	white-space: nowrap;
}
.marquee-item .spark { color: var(--cyan); width: 16px; height: 16px; flex: none; }

/* ============================================================
   Services
   ============================================================ */
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.service-card {
	position: relative;
	background: var(--white);
	border: 1px solid rgba(18, 53, 109, 0.08);
	border-radius: var(--radius-lg);
	padding: 44px 40px;
	box-shadow: var(--shadow-card);
	transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-out), border-color 0.3s;
	overflow: hidden;
}
.service-card::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--cyan), var(--navy));
	opacity: 0;
	transition: opacity 0.3s;
}
.service-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lift);
	border-color: rgba(0, 180, 255, 0.35);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
	width: 68px; height: 68px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 26px;
	background: linear-gradient(135deg, var(--cyan), var(--navy));
	color: #fff;
	box-shadow: var(--shadow-cyan);
}
.service-icon svg { width: 32px; height: 32px; }

.service-card h3 { font-size: 24px; margin-bottom: 6px; }
.service-card .en-name {
	font-family: var(--font-lat);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 16px;
}
.service-card p { color: var(--ink-soft); margin-bottom: 22px; }

.service-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; }
.service-list li .check {
	flex: none;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: rgba(0, 180, 255, 0.12);
	color: var(--cyan);
	display: flex; align-items: center; justify-content: center;
	margin-top: 4px;
}
.service-list li .check svg { width: 12px; height: 12px; }

.service-more { font-weight: 700; display: inline-flex; align-items: center; gap: 8px; color: var(--navy); }
.service-more svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.service-more:hover svg { transform: translateX(-4px); }

/* Sub chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	background: var(--light-2);
	border-radius: 999px;
	padding: 7px 16px;
}

/* ============================================================
   Process
   ============================================================ */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.process-step {
	position: relative;
	background: rgba(255, 255, 255, 0.035);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	padding: 34px 26px;
	transition: transform 0.4s var(--ease-spring), border-color 0.3s, background 0.3s;
}
.process-step:hover {
	transform: translateY(-6px);
	border-color: rgba(0, 180, 255, 0.45);
	background: rgba(0, 180, 255, 0.05);
}
.process-num {
	font-family: var(--font-lat);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--cyan);
	margin-bottom: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.process-num::before {
	content: '';
	width: 22px; height: 2px;
	background: var(--cyan);
	border-radius: 2px;
}
.process-step h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.process-step p { font-size: 15px; color: var(--silver); margin: 0; }

/* ============================================================
   Works
   ============================================================ */
.work-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 42px;
}
.work-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-ar);
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	background: var(--white);
	border: 1.5px solid rgba(18, 53, 109, 0.18);
	border-radius: 999px;
	padding: 10px 22px;
	cursor: pointer;
	transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease-out), color 0.3s, border-color 0.3s, box-shadow 0.3s var(--ease-out);
}
.work-filter:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	transform: translateY(-2px);
}
.work-filter.active {
	background: linear-gradient(135deg, var(--cyan), var(--navy-soft));
	border-color: transparent;
	color: #fff;
	box-shadow: var(--shadow-cyan);
}
.work-filter .count {
	font-family: var(--font-lat);
	font-size: 12px;
	font-weight: 700;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(18, 53, 109, 0.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.work-filter.active .count { background: rgba(255, 255, 255, 0.22); }

.works-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.work-card.hidden { display: none; }
.work-card.fade-in { animation: fade-up 0.5s var(--ease-out) both; }

@keyframes fade-up {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

.work-card {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	display: block;
	box-shadow: var(--shadow-card);
	transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out);
}
.work-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lift);
}

.work-cover {
	position: absolute;
	inset: 0;
	transition: transform 0.6s var(--ease-out);
}
.work-cover.img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.work-card:hover .work-cover { transform: scale(1.06); }

.work-cover .pattern {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px),
		radial-gradient(circle at 18% 70%, rgba(255, 255, 255, 0.16) 0 3px, transparent 4px);
	background-size: 64px 64px, 52px 52px;
}

.work-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 22px 24px;
	background: linear-gradient(180deg, transparent, rgba(2, 6, 16, 0.85) 70%);
	color: var(--white);
}
.work-tag {
	display: inline-block;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--cyan-soft);
	background: rgba(0, 180, 255, 0.14);
	border: 1px solid rgba(0, 180, 255, 0.3);
	border-radius: 999px;
	padding: 4px 13px;
	margin-bottom: 10px;
}
.work-overlay h3 { color: var(--white); font-size: 19px; margin: 0; }

.work-arrow {
	position: absolute;
	top: 18px;
	inset-inline-end: 18px;
	width: 42px; height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 0;
	transform: translateY(-8px);
	transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-spring), background 0.3s;
}
.work-card:hover .work-arrow { opacity: 1; transform: translateY(0); }
.work-arrow svg { width: 18px; height: 18px; }

.works-more { text-align: center; margin-top: 48px; }

/* gradient covers */
.grad-a { background: linear-gradient(140deg, #00b4ff 0%, #12356d 55%, #05070d 100%); }
.grad-b { background: linear-gradient(140deg, #12356d 0%, #00b4ff 60%, #081a3a 100%); }
.grad-c { background: linear-gradient(140deg, #081a3a 0%, #1c4a92 50%, #00b4ff 100%); }
.grad-d { background: linear-gradient(140deg, #00b4ff 0%, #081a3a 70%, #000 100%); }
.grad-e { background: linear-gradient(140deg, #1c4a92 0%, #00b4ff 45%, #12356d 100%); }
.grad-f { background: linear-gradient(140deg, #05070d 0%, #12356d 55%, #00b4ff 100%); }

/* ============================================================
   About / Why us
   ============================================================ */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-copy h2 { font-size: clamp(28px, 3.6vw, 40px); margin-bottom: 20px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }

.about-feats { display: grid; gap: 16px; margin-top: 30px; }
.about-feat {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--white);
	border: 1px solid rgba(18, 53, 109, 0.08);
	border-radius: 16px;
	padding: 16px 20px;
	box-shadow: var(--shadow-card);
	transition: transform 0.35s var(--ease-spring);
}
.about-feat:hover { transform: translateX(-6px); }
.about-feat .ic {
	flex: none;
	width: 46px; height: 46px;
	border-radius: 13px;
	background: linear-gradient(135deg, rgba(0, 180, 255, 0.14), rgba(18, 53, 109, 0.14));
	color: var(--navy);
	display: flex; align-items: center; justify-content: center;
}
.about-feat .ic svg { width: 22px; height: 22px; }
.about-feat h4 { margin: 0; font-size: 17px; }
.about-feat p { margin: 0; font-size: 14px; color: var(--ink-soft); }

.about-visual {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lift);
}
.about-visual .cover {
	aspect-ratio: 4 / 4.6;
	background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 45%, #000 100%);
	position: relative;
}
.about-visual .cover::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 70% 25%, rgba(0, 180, 255, 0.45) 0 3px, transparent 4px),
		radial-gradient(circle at 25% 65%, rgba(255, 255, 255, 0.25) 0 2px, transparent 3px);
	background-size: 60px 60px, 44px 44px;
}
.about-visual img {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 62%;
	object-fit: contain;
}
.about-visual .badge-note {
	position: absolute;
	bottom: 22px;
	inset-inline-start: 22px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(0, 180, 255, 0.3);
	color: var(--white);
	border-radius: 14px;
	padding: 12px 18px;
	font-size: 14px;
	font-weight: 700;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
	position: relative;
	background:
		radial-gradient(700px 300px at 85% 50%, rgba(0, 180, 255, 0.18), transparent 65%),
		linear-gradient(135deg, var(--navy-deep), var(--bg-dark));
	border-radius: var(--radius-lg);
	padding: 64px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
	overflow: hidden;
	box-shadow: var(--shadow-lift);
}
.cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(0, 180, 255, 0.14) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: linear-gradient(90deg, transparent, black, transparent);
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 8px; position: relative; }
.cta-band p { color: var(--silver); margin: 0; position: relative; }
.cta-band .btn { position: relative; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 56px;
	align-items: start;
}

.contact-info-card {
	background: linear-gradient(160deg, var(--navy-deep), var(--bg-dark));
	border-radius: var(--radius-lg);
	padding: 40px 34px;
	color: var(--silver);
	box-shadow: var(--shadow-lift);
}
.contact-info-card h3 { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.contact-info-card > p { margin-bottom: 30px; }

.contact-line {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-line:last-of-type { border-bottom: 0; }
.contact-line .ic {
	flex: none;
	width: 42px; height: 42px;
	border-radius: 12px;
	background: rgba(0, 180, 255, 0.12);
	color: var(--cyan-soft);
	display: flex; align-items: center; justify-content: center;
}
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line .lbl { font-size: 13px; color: var(--silver); }
.contact-line .val { font-weight: 700; color: var(--white); }

.socials-row { display: flex; gap: 10px; margin-top: 26px; }
.social-link {
	width: 42px; height: 42px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: flex; align-items: center; justify-content: center;
	color: var(--silver);
	transition: transform 0.3s var(--ease-spring), background 0.3s, color 0.3s, border-color 0.3s;
}
.social-link:hover {
	transform: translateY(-4px);
	background: rgba(0, 180, 255, 0.14);
	border-color: rgba(0, 180, 255, 0.4);
	color: var(--cyan-soft);
}
.social-link svg { width: 19px; height: 19px; }

/* Contact form */
.contact-form-wrap {
	background: var(--white);
	border: 1px solid rgba(18, 53, 109, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	padding: 40px 36px;
}

.form-notice {
	border-radius: 14px;
	padding: 14px 18px;
	margin-bottom: 22px;
	font-weight: 700;
	font-size: 15px;
}
.form-notice.success { background: rgba(0, 180, 255, 0.1); color: #0a6e9c; border: 1px solid rgba(0, 180, 255, 0.35); }
.form-notice.error { background: rgba(220, 53, 69, 0.08); color: #b02a37; border: 1px solid rgba(220, 53, 69, 0.3); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field.hp { position: absolute; left: -9999px; opacity: 0; }

.form-field label { font-weight: 700; font-size: 14px; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
	font-family: var(--font-ar);
	font-size: 16px;
	color: var(--ink);
	background: var(--light);
	border: 1.5px solid transparent;
	border-radius: 12px;
	padding: 13px 16px;
	transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
	outline: none;
	width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
	border-color: var(--cyan);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(0, 180, 255, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.contact-form .btn { margin-top: 26px; }

/* ============================================================
   Pages (generic) & single work
   ============================================================ */
.page-hero {
	background: radial-gradient(900px 400px at 80% -20%, rgba(0, 180, 255, 0.14), transparent 60%),
	            var(--bg-dark);
	padding: 160px 0 84px;
	text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 12px; }
.page-hero .crumbs { color: var(--silver); font-size: 15px; }
.page-hero .crumbs a { color: var(--cyan-soft); }

.page-body { padding: 80px 0; }
.page-body .entry { max-width: 820px; margin-inline: auto; }
.page-body .entry h2 { margin-top: 1.6em; }
.page-body .entry p { color: var(--ink-soft); }

/* Single work */
.work-single-hero {
	background: radial-gradient(900px 420px at 20% -20%, rgba(0, 180, 255, 0.15), transparent 60%),
	            var(--bg-dark);
	padding: 160px 0 70px;
	text-align: center;
	color: var(--silver);
}
.work-single-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); }
.work-single-hero .work-tag { margin-top: 14px; }

.work-single-body { padding: 72px 0; }
.work-single-body .entry { max-width: 780px; margin-inline: auto; }
.work-single-body .entry p { color: var(--ink-soft); }
.work-single-body .entry h2 { margin-top: 1.6em; }

.work-single-cover {
	max-width: 900px;
	margin: 0 auto;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-lift);
	aspect-ratio: 16 / 9;
	display: flex;
	align-items: center;
	justify-content: center;
}
.work-single-cover .big-cover {
	width: 100%; height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.work-single-cover > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.work-single-cover .big-cover .logo-in { width: 38%; }
.work-single-cover .big-cover .title-txt {
	color: var(--white);
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 900;
	position: relative;
}

.work-nav {
	max-width: 780px;
	margin: 56px auto 0;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

/* ============================================================
   Posts / archive / 404 / search
   ============================================================ */
.post-card {
	background: var(--white);
	border: 1px solid rgba(18, 53, 109, 0.08);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	overflow: hidden;
	transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.post-card .thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 24px 26px; }
.post-card h3 { font-size: 19px; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--cyan); }
.post-card p { color: var(--ink-soft); font-size: 15px; margin: 0 0 14px; }
.post-card .meta { font-size: 13px; color: var(--ink-soft); }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.not-found-box {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	padding: 40px 0;
}
.not-found-box .big { font-family: var(--font-lat); font-size: 110px; font-weight: 700; line-height: 1;
	background: linear-gradient(120deg, var(--cyan), var(--navy));
	-webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
	background: var(--bg-black);
	color: var(--silver);
	padding: 80px 0 0;
	position: relative;
	overflow: hidden;
}
.site-footer::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.5), transparent);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
	gap: 44px;
	padding-bottom: 56px;
}
.footer-brand img { height: 52px; margin-bottom: 18px; }
.footer-brand p { font-size: 15px; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-col h4 { color: var(--white); font-size: 17px; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-col h4::after {
	content: '';
	position: absolute;
	bottom: 0; inset-inline-start: 0;
	width: 34px; height: 3px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--cyan), var(--navy));
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col ul a { color: var(--silver); font-size: 15px; }
.footer-col ul a:hover { color: var(--cyan-soft); padding-inline-start: 4px; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact .line { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.footer-contact .line .ic { color: var(--cyan-soft); flex: none; margin-top: 3px; }
.footer-contact .line .ic svg { width: 18px; height: 18px; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 22px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 14px;
}
.footer-bottom .heart { color: var(--cyan); }

/* ============================================================
   Pagination
   ============================================================ */
.pagination {
	margin-top: 48px;
	display: flex;
	justify-content: center;
	gap: 8px;
}
.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 12px;
	background: var(--light);
	color: var(--navy);
	font-weight: 700;
	border: 1px solid transparent;
}
.pagination .page-numbers.current {
	background: linear-gradient(135deg, var(--cyan), var(--navy-soft));
	color: #fff;
	box-shadow: var(--shadow-cyan);
}
.pagination .page-numbers:hover { border-color: var(--cyan); color: var(--cyan); }

.post-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
	transition-delay: var(--d, 0s);
	will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.reveal { opacity: 1; transform: none; transition: none; }
	.phone, .float-badge, .marquee-track { animation: none !important; }
	html { scroll-behavior: auto; }
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.55; transform: scale(0.85); }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(50%); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
	.hero-grid { grid-template-columns: 1fr; gap: 72px; }
	.hero-visual { order: -1; }
	.float-badge.b1 { inset-inline-start: 0; }
	.float-badge.b2 { inset-inline-end: 0; }
	.process-grid { grid-template-columns: 1fr 1fr; }
	.works-grid, .archive-grid { grid-template-columns: 1fr 1fr; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
	.services-grid { grid-template-columns: 1fr 1fr; }
	.services-grid .service-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
	.nav-toggle { display: flex; }
	.main-nav {
		position: fixed;
		inset: 0;
		background: rgba(4, 6, 12, 0.98);
		backdrop-filter: blur(16px);
		display: flex;
		align-items: center;
		justify-content: center;
		opacity: 0;
		visibility: hidden;
		transform: scale(1.04);
		transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
	}
	.main-nav.open { opacity: 1; visibility: visible; transform: scale(1); }
	.main-nav ul { flex-direction: column; gap: 8px; text-align: center; }
	.main-nav ul li a { font-size: 22px; padding: 12px 20px; }
	.main-nav ul li.current-menu-item > a::after { display: none; }
	.header-cta .btn { display: none; }
	.nav-toggle.open .icon-menu { display: none; }
	.nav-toggle .icon-close { display: none; }
	.nav-toggle.open .icon-close { display: block; }
}

@media (max-width: 640px) {
	.section { padding: 72px 0; }
	.hero { padding: 140px 0 80px; }
	.hero-stats { gap: 26px; }
	.hero-stat .num { font-size: 28px; }
	.process-grid, .works-grid, .archive-grid, .footer-grid, .services-grid { grid-template-columns: 1fr; }
	.services-grid .service-card:nth-child(3) { grid-column: auto; }
	.form-grid { grid-template-columns: 1fr; }
	.cta-band { padding: 44px 30px; }
	.float-badge.b1 { top: 12px; }
	.float-badge.b2 { bottom: 34px; }
	.phone { width: 250px; }
}
