/* E3laan — Design System v3 · "Ad Broadcast"
   Identity built on the E3laan brand colors: electric blue + vivid orange.
   Layout language: split hero + billboard ad-frame + ticker marquee.
   Distinct from AhmeDaher Soft. Same quality standards:
   semantic HTML, RTL-first, mobile-first, accessibility, performance. */

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
  font-family: "Plex";
  src: url("../fonts/plex-arabic-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/plex-arabic-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/plex-arabic-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/plex-latin-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plex";
  src: url("../fonts/plex-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLES
   ============================================================ */
:root {
  --font: "Plex", system-ui, -apple-system, sans-serif;

  --bg: #fcfbf8;
  --surface: #f4f3f0;
  --surface-alt: #ebeae6;

  --text: #16213b;
  --text-secondary: #3f4b66;
  --text-muted: #5f6b85;

  --border: #e3e5ea;
  --border-light: #eceef3;

  --primary: #0d4fc4;
  --primary-light: #2f6bff;
  --primary-deep: #0b2e78;

  --ink: #0a1740;
  --ink-2: #0d2458;

  --accent: #ff6b1a;
  --accent-light: #ff9338;
  --accent-deep: #d95100;

  --wa: #189858;
  --wa-light: #22b56f;

  --success: #15803d;
  --danger: #b91c1c;

  --grad-brand: linear-gradient(135deg, #2f6bff 0%, #0d4fc4 55%, #5b39d9 100%);
  --grad-accent: linear-gradient(135deg, #ff9338 0%, #ff6b1a 60%, #ff2e66 100%);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(13,30,60,.06);
  --shadow: 0 6px 18px rgba(13,30,60,.08);
  --shadow-lg: 0 18px 50px -12px rgba(13,30,60,.20);
  --shadow-blue: 0 16px 40px -14px rgba(13,79,196,.25);

  --container: 1180px;
  --gap: 24px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 84px;
  --space-5xl: 104px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--text); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: min(var(--container), calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

.skip-link { position: absolute; top: -100%; inset-inline-start: var(--space-md); z-index: 999; background: var(--primary); color: #fff; padding: var(--space-xs) var(--space-md); border-radius: var(--radius-sm); font-size: 14px; }
.skip-link:focus { top: var(--space-sm); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252,251,248,.9);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(13,30,60,.02);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--primary); flex-shrink: 0; }
.logo-img { width: 118px; height: auto; border-radius: 10px; object-fit: contain; flex-shrink: 0; }
.logo-accent { color: var(--accent-deep); font-weight: 400; }
.site-footer .logo-accent { color: inherit; }

.main-nav { display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-link {
  position: relative;
  display: flex; align-items: center; white-space: nowrap;
  padding: 8px 14px; border-radius: 999px;
  font-size: 14.5px; font-weight: 500; color: var(--text-secondary);
  transition: color .15s, background .15s;
}
.nav-link::after {
  content: ""; position: absolute; bottom: 3px; inset-inline: 12px; height: 2px;
  border-radius: 2px; background: var(--grad-accent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .22s ease;
}
.nav-link:hover { color: var(--primary); background: var(--surface); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--primary); background: linear-gradient(135deg, rgba(13,79,196,.08), rgba(255,107,26,.08)); font-weight: 700; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1.3;
  transition: background .15s, color .15s, transform .1s, box-shadow .15s;
  min-height: 44px;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 6px 18px -6px rgba(13,79,196,.45); }
.btn-primary:hover { background: var(--primary-light); box-shadow: 0 8px 22px -6px rgba(47,107,255,.5); }
.btn-acc { background: var(--grad-accent); color: #fff; box-shadow: 0 8px 20px -8px rgba(255,107,26,.55); }
.btn-acc:hover { filter: brightness(1.06); box-shadow: 0 10px 24px -8px rgba(255,107,26,.6); }
.btn-whatsapp { background: linear-gradient(135deg, #22b56f, #15813f); color: #fff; box-shadow: 0 8px 20px -8px rgba(24,152,88,.5); }
.btn-whatsapp:hover { filter: brightness(1.06); }
.btn-outline { border: 2px solid #d9dce4; color: var(--text-secondary); background: transparent; }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(13,79,196,.04); }
.btn-sm { padding: 7px 16px; font-size: 13.5px; min-height: 38px; }
.btn-lg { padding: 15px 30px; font-size: 16px; min-height: 54px; }

/* Cut-corner "ad-tech" CTA with sweeping shine */
.btn-cut {
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  background: var(--grad-accent); color: #fff;
  box-shadow: 0 10px 26px -10px rgba(255,107,26,.6);
}
.btn-cut::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60%;
  inset-inline-start: -130%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg);
  animation: btnShine 2.6s ease-in-out infinite;
}
.btn-cut:hover { filter: brightness(1.07); }
.btn-cut:focus-visible { box-shadow: 0 0 0 4px rgba(255,140,60,.45); }
@keyframes btnShine {
  0%, 50% { inset-inline-start: -130%; }
  85%, 100% { inset-inline-start: 170%; }
}

/* ============================================================
   PRELOADER — loading effect
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #0a1740 0%, #0d2156 100%);
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.preloader img {
  width: 132px; height: auto; background: #fff;
  padding: 10px 14px; border-radius: 16px;
  animation: prePulse 1.4s ease-in-out infinite;
}
@keyframes prePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,140,60,.35); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 18px rgba(255,140,60,0); }
}
.preloader-bar { position: relative; width: 188px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.14); overflow: hidden; }
.preloader-bar i { position: absolute; inset: 0; width: 40%; border-radius: 4px; background: linear-gradient(90deg, var(--primary-light), var(--accent)); animation: preBar 1.1s ease-in-out infinite; }
@keyframes preBar {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(330%); }
}
body.is-loaded .preloader { opacity: 0; visibility: hidden; }

/* Entrance staggers after loader */
body.is-loaded .hero-text > * { animation: riseIn .7s ease both; }
body.is-loaded .hero-text > *:nth-child(1) { animation-delay: .05s; }
body.is-loaded .hero-text > *:nth-child(2) { animation-delay: .14s; }
body.is-loaded .hero-text > *:nth-child(3) { animation-delay: .23s; }
body.is-loaded .hero-text > *:nth-child(4) { animation-delay: .32s; }
body.is-loaded .billboard-stage { animation: stageIn .8s cubic-bezier(.2,.8,.2,1) both; animation-delay: .16s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes stageIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ============================================================
   HERO — split "ad-broadcast" stage
   ============================================================ */
.hero { padding: 0; }
.hero-cover {
  position: relative;
  min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
  background:
    radial-gradient(1100px 640px at 88% -10%, rgba(47,107,255,.30), transparent 60%),
    radial-gradient(900px 620px at 4% 108%, rgba(255,107,26,.16), transparent 60%),
    linear-gradient(180deg, #0a1740 0%, #0d2156 58%, #0b1a48 100%);
}
.hero-cover-bg {
  position: absolute; inset: 0;
  background: url("/assets/images/cover.webp") center/cover no-repeat;
  opacity: .32; filter: saturate(.85);
}
.hero-cover-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,14,38,.78) 0%, rgba(7,14,38,.42) 52%, rgba(7,14,38,.20) 100%),
    linear-gradient(180deg, rgba(7,14,38,.10) 0%, rgba(7,14,38,.38) 100%);
  pointer-events: none;
}

/* Aurora orbs */
.hero-orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; will-change: transform; }
.orb-a {
  width: 500px; height: 500px; top: -180px; inset-inline-start: -140px;
  background: radial-gradient(circle, rgba(47,107,255,.38), transparent 66%);
  animation: orbFloat 24s ease-in-out infinite;
}
.orb-b {
  width: 620px; height: 620px; bottom: -260px; inset-inline-end: -180px;
  background: radial-gradient(circle, rgba(255,107,26,.22), transparent 66%);
  animation: orbFloat 30s ease-in-out infinite reverse;
}
.orb-c {
  width: 360px; height: 360px; top: 14%; inset-inline-start: 44%;
  background: radial-gradient(circle, rgba(91,57,217,.28), transparent 66%);
  animation: orbFloat 20s ease-in-out infinite;
  animation-delay: -8s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(24px, -30px, 0) scale(1.06); }
  66% { transform: translate3d(-20px, 20px, 0) scale(.97); }
}

/* Floating particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle { position: absolute; border-radius: 50%; background: rgba(255,150,70,.22); animation: particleFloat linear infinite; }
.hero-particle:nth-child(1) { width: 6px; height: 6px; left: 12%; top: 20%; animation-duration: 18s; }
.hero-particle:nth-child(2) { width: 4px; height: 4px; left: 26%; top: 62%; animation-duration: 22s; animation-delay: -4s; }
.hero-particle:nth-child(3) { width: 8px; height: 8px; left: 52%; top: 28%; animation-duration: 16s; animation-delay: -8s; opacity: .7; }
.hero-particle:nth-child(4) { width: 3px; height: 3px; left: 72%; top: 72%; animation-duration: 25s; animation-delay: -2s; }
.hero-particle:nth-child(5) { width: 5px; height: 5px; left: 87%; top: 14%; animation-duration: 20s; animation-delay: -12s; }
.hero-particle:nth-child(6) { width: 7px; height: 7px; left: 42%; top: 82%; animation-duration: 19s; animation-delay: -6s; opacity: .5; }
.hero-particle:nth-child(7) { width: 4px; height: 4px; left: 62%; top: 46%; animation-duration: 23s; animation-delay: -10s; background: rgba(90,150,255,.25); }
.hero-particle:nth-child(8) { width: 9px; height: 9px; left: 16%; top: 78%; animation-duration: 17s; animation-delay: -3s; opacity: .4; }

@keyframes particleFloat {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  25% { transform: translate3d(30px,-40px,0) scale(1.1); }
  50% { transform: translate3d(-20px,-80px,0) scale(.9); }
  75% { transform: translate3d(40px,-30px,0) scale(1.05); }
}

/* Scan spotlight that follows the cursor */
.hero-cover::after {
  content: "";
  position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,26,.14) 0%, rgba(47,107,255,.12) 30%, transparent 68%);
  left: calc(var(--mx, 50) * 1%);
  top: calc(var(--my, 50) * 1%);
  transform: translate3d(-50%,-50%,0);
  pointer-events: none; opacity: .85; mix-blend-mode: screen; z-index: 1;
}

/* Split column layout */
.hero-split { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr; gap: 44px; padding: var(--space-3xl) 0; }

.hero-text { max-width: 560px; }
.hero-text .hero-badge { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.85); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hero-text .hero-badge-dot { background: var(--accent-light); box-shadow: 0 0 0 4px rgba(255,140,60,.22); }
.hero-text h1 { color: #fff; font-size: clamp(30px, 5.2vw, 54px); line-height: 1.18; letter-spacing: -.01em; text-shadow: 0 2px 30px rgba(0,0,0,.35); margin-bottom: var(--space-md); }
.hero-text h1 .text-acc { text-shadow: none; }
.hero-text .hero-desc { color: rgba(255,255,255,.86); font-size: clamp(16px, 2.4vw, 19px); max-width: 540px; margin-bottom: var(--space-xl); }
.hero-text .btn-outline { border-color: rgba(255,255,255,.34); color: rgba(255,255,255,.9); }
.hero-text .btn-outline:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* Blinking end-dot (broadcast on-air) */
.hero-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(255,107,26,.25), 0 0 18px rgba(255,107,26,.85); animation: dotPulse 2s ease-in-out infinite; margin-inline-start: 6px; }
@keyframes dotPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); } }

.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-xl); }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 7px 14px; transition: background .2s, border-color .2s; }
.hero-trust span:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.hero-trust b { font-size: 15px; color: #fff; }

/* Billboard ad-frame */
.billboard-stage { position: relative; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.billboard {
  position: relative; width: min(460px, 100%);
  transform: rotateY(calc((var(--mx, 50) - 50) * .6deg)) rotateX(calc((50 - var(--my, 50)) * .5deg));
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}
.billboard-frame {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 42px 90px -22px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  background: #0b1a48;
}
.billboard-frame img { width: 100%; height: auto; display: block; }
.billboard-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(13,79,196,.20), transparent 42%, rgba(255,107,26,.16));
}
.beam {
  position: absolute; z-index: 2; inset-inline: 8%; height: 2px; top: -10%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), rgba(255,140,60,.95), transparent);
  box-shadow: 0 0 18px rgba(255,140,60,.9);
  animation: beamSweep 4.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes beamSweep {
  0% { top: -10%; opacity: 0; }
  12% { opacity: 1; }
  88% { top: 108%; opacity: 1; }
  100% { top: 116%; opacity: 0; }
}
.frame-tag {
  position: absolute; z-index: 3; bottom: 14px; inset-inline-start: 14px;
  font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(10,23,64,.72); border: 1px solid rgba(255,255,255,.24);
  padding: 6px 12px; border-radius: 6px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.bchip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.94); color: var(--ink);
  font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.45);
  white-space: nowrap;
  animation: chipFloat 5s ease-in-out infinite;
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.chip-a { top: 16%; inset-inline-end: -8px; animation-delay: 0s; }
.chip-b { bottom: 20%; inset-inline-start: -12px; animation-delay: 1.6s; }
.chip-c { top: 8%; inset-inline-start: 12%; animation-delay: 3.1s; }
.chip-c::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: #21c15c; box-shadow: 0 0 0 4px rgba(33,193,92,.22);
  animation: dotPulse 1.6s ease-in-out infinite;
}

/* ============================================================
   TICKER — scrolling services marquee
   ============================================================ */
.ticker { position: relative; z-index: 6; overflow: hidden; background: linear-gradient(90deg, #e05a12, #ff2e66 55%, #d94a2b); box-shadow: 0 14px 30px -18px rgba(255,46,102,.6); }
.ticker-track { display: flex; width: max-content; padding: 11px 0; animation: tickerMove 30s linear infinite; }
.ticker-track span { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: .05em; white-space: nowrap; padding-inline-end: 8px; }
.ticker-track span + span { margin-inline-start: 8px; padding-inline-start: 0; }
@keyframes tickerMove { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--space-4xl) 0; }
.section-alt { background: var(--surface); }
.section-header { margin-bottom: var(--space-2xl); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em;
  color: var(--accent-deep); margin-bottom: var(--space-sm);
}
.section-eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: var(--grad-accent);
}
.section-title { font-size: clamp(25px, 4vw, 36px); color: var(--ink); margin-bottom: var(--space-sm); letter-spacing: -.01em; }
.section-desc { font-size: 17px; color: var(--text-secondary); max-width: 620px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover { border-color: rgba(13,79,196,.28); box-shadow: var(--shadow-blue), var(--shadow-sm); }
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,79,196,.10), rgba(255,107,26,.08));
  border: 1px solid rgba(13,79,196,.12);
  color: var(--primary); margin-bottom: var(--space-md);
  transition: background .25s, color .25s, box-shadow .25s, transform .25s;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 18px; margin-bottom: var(--space-xs); color: var(--ink); }
.card p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }
.card-list { margin-top: var(--space-sm); display: flex; flex-direction: column; gap: 7px; }
.card-list li { display: flex; gap: 9px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.card-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex-shrink: 0; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: var(--gap); }

/* ============================================================
   SERVICE CARD — ad/tech hover: icon fill + scan beam + tilt
   ============================================================ */
.service-card { display: flex; flex-direction: column; gap: var(--space-md); position: relative; overflow: hidden; }
.service-card::before {
  content: "";
  position: absolute; top: 0; inset-inline: 0; height: 3px;
  background: var(--grad-brand);
  opacity: 0; transition: opacity .2s;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 32%, rgba(47,107,255,.10) 46%, rgba(255,140,60,.18) 50%, rgba(47,107,255,.10) 54%, transparent 68%);
  background-size: 300% 100%;
  background-position: 200% 0;
  opacity: 0; transition: opacity .25s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; animation: beamCard 1.7s ease-in-out infinite; }
@keyframes beamCard {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}
.service-card:hover .card-icon { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 24px -8px rgba(13,79,196,.55); animation: iconPop .5s ease; }
@keyframes iconPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.14); }
  100% { transform: scale(1); }
}
.service-card .btn { align-self: flex-start; margin-top: auto; }
.svc-num {
  font-size: 13px; font-weight: 800; letter-spacing: .04em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-xs);
}

/* ============================================================
   STEPS (How it works)
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--gap); counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,107,26,.30); box-shadow: var(--shadow); }
.step::before {
  content: counter(step); counter-increment: step;
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand);
  color: #fff; font-weight: 800; font-size: 17px;
  box-shadow: 0 8px 20px -8px rgba(13,79,196,.6);
  margin-bottom: var(--space-md);
}
.step h3 { font-size: 17px; margin-bottom: var(--space-xs); color: var(--ink); }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
.contact-method { display: flex; gap: var(--space-md); align-items: flex-start; }
.contact-method-icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px -10px rgba(13,79,196,.6);
}
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method h3 { font-size: 16px; margin-bottom: 2px; color: var(--ink); }
.contact-method p { font-size: 14px; color: var(--text-secondary); margin-bottom: var(--space-sm); }
.contact-method .btn { margin-top: var(--space-xs); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs { padding: var(--space-md) 0; font-size: 13px; color: var(--text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; }
.breadcrumbs li { display: flex; align-items: center; gap: 4px; }
.breadcrumbs li + li::before { content: "/"; color: var(--border); }
.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current] { color: var(--text); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius); background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item:hover { border-color: rgba(13,79,196,.22); }
.faq-item summary { padding: var(--space-md) var(--space-lg); font-weight: 700; font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); color: var(--ink); transition: color .15s; }
.faq-item[open] summary { color: var(--primary); }
.faq-item summary::marker { content: ""; }
.faq-item summary::after {
  content: "+"; font-size: 20px; font-weight: 700;
  color: var(--primary); transition: transform .2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item p { padding: 0 var(--space-lg) var(--space-md); font-size: 15px; color: var(--text-secondary); line-height: 1.75; }

/* ============================================================
   CONTENT PAGE (Privacy / Terms)
   ============================================================ */
.page-hero { padding: var(--space-2xl) 0 var(--space-xl); border-bottom: 1px solid var(--border-light); }
.page-hero h1 { font-size: clamp(27px, 4vw, 38px); color: var(--ink); margin-bottom: var(--space-sm); }
.page-hero h1 .text-acc { display: inline-block; }
.page-hero p { font-size: 16px; color: var(--text-secondary); }
.page-content { padding: var(--space-2xl) 0; }
.page-content h2 { font-size: clamp(20px, 3vw, 26px); color: var(--primary-deep); margin-bottom: var(--space-md); margin-top: var(--space-2xl); }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 17px; color: var(--ink); margin: var(--space-xl) 0 var(--space-sm); }
.page-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: var(--space-md); }
.page-content ul { padding-inline-start: var(--space-lg); margin-bottom: var(--space-md); }
.page-content li { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: var(--space-xs); list-style: disc; }
.page-content li::marker { color: var(--accent); }
.page-content a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--accent-deep); }
.updated { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  color: #fff;
  padding: var(--space-4xl) 0;
  text-align: center;
  background:
    radial-gradient(900px 520px at 92% -10%, rgba(255,107,26,.30), transparent 55%),
    radial-gradient(820px 520px at 8% 120%, rgba(47,107,255,.32), transparent 55%),
    linear-gradient(120deg, #0d2458 0%, #0a1740 100%);
}
.cta-section::before {
  content: "";
  position: absolute; top: 0; inset-inline: 0; height: 4px;
  background: var(--grad-accent);
}
.cta-section h2 { color: #fff; font-size: clamp(23px, 3.5vw, 32px); margin-bottom: var(--space-md); }
.cta-section p { color: #b9c6e6; font-size: 17px; margin-bottom: var(--space-xl); max-width: 520px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: linear-gradient(180deg, #0b1e49 0%, #08122e 100%); color: #c3cde8; padding: var(--space-3xl) 0 var(--space-xl); }
.site-footer .logo-img { background: #fff; padding: 8px 12px; border-radius: 14px; max-width: 132px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-bottom: var(--space-2xl); }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-top: var(--space-sm); max-width: 320px; color: #8fa1c8; }
.footer-heading, .footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: #ffb066; margin-bottom: var(--space-md); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer-links a { font-size: 14px; color: #b9c6e6; transition: color .15s, transform .15s; padding: 2px 0; }
.footer-links a:hover { color: #fff; transform: translateX(-2px); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-xs); font-size: 14px; color: #b9c6e6; }
.footer-contact a { color: #b9c6e6; transition: color .15s; }
.footer-contact a:hover { color: #ffb066; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--space-lg); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-sm); font-size: 13px; color: #7c8db5; }
.footer-credit {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center; font-size: 13px; color: #8fa1c8;
}
.footer-credit a { color: #ffb066; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; transition: color .15s; }
.footer-credit a:hover { color: #fff; }
.credit-heart { display: inline-block; color: #ff4d6d; animation: heartBeat 1.6s ease-in-out infinite; }
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.18); }
  40% { transform: scale(1); }
}

/* ============================================================
   CARD TILT EFFECT
   ============================================================ */
.tilt-card { transition: transform .18s ease-out, border-color .2s, box-shadow .2s; transform-style: preserve-3d; }
.tilt-card:hover { border-color: rgba(13,79,196,.3); box-shadow: var(--shadow-lg); }
.tilt-card .card-glow {
  position: absolute; inset: 0; border-radius: inherit; opacity: 0;
  transition: opacity .25s; pointer-events: none;
  background: radial-gradient(420px circle at calc(var(--cx,50) * 1%) calc(var(--cy,50) * 1%), rgba(47,107,255,.10), transparent 48%);
}
.tilt-card:hover .card-glow { opacity: 1; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — TABLET (>=640px)
   ============================================================ */
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .hero-cover { min-height: 660px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (>=1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .hero-split { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .billboard { width: 100%; }
}

/* ============================================================
   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; }
  .preloader { display: none; }
  .hero-cover::after { display: none; }
  .hero-dot, .credit-heart { animation: none !important; }
  .tilt-card { transition: box-shadow .2s; transform: none !important; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .site-footer, .skip-link, .preloader { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ============================================================
   ARTICLE (Blog post)
   ============================================================ */
.cat-chip {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: var(--space-sm);
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-xs) var(--space-lg);
  margin-top: var(--space-md); font-size: 13px; color: var(--text-muted);
}
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--accent); display: inline-block; }
.article-body { padding: var(--space-2xl) 0; }
.article-body .prose { max-width: 760px; }
.article-body h2 {
  font-size: clamp(21px, 3vw, 27px); color: var(--primary-deep);
  margin: var(--space-2xl) 0 var(--space-md);
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 18px; color: var(--ink); margin: var(--space-xl) 0 var(--space-sm); }
.article-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.9; margin-bottom: var(--space-md); }
.article-body ul, .article-body ol { margin: 0 0 var(--space-md); padding-inline-start: var(--space-lg); }
.article-body li { font-size: 16px; color: var(--text-secondary); line-height: 1.85; margin-bottom: var(--space-xs); }
.article-body li::marker { color: var(--accent); }
.article-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--accent-deep); }
.article-body table { width: 100%; border-collapse: collapse; margin: var(--space-lg) 0 var(--space-xl); font-size: 14px; }
.article-body th { background: #0d2458; color: #fff; text-align: right; padding: var(--space-sm) var(--space-md); font-weight: 700; }
.article-body td { border: 1px solid var(--border-light); padding: var(--space-sm) var(--space-md); color: var(--text-secondary); }
.article-body tr:nth-child(even) td { background: #f6f9ff; }
.article-body blockquote { margin: var(--space-lg) 0; padding: var(--space-md) var(--space-lg); border-inline-start: 4px solid var(--accent); background: #fff7ef; border-radius: var(--radius); color: var(--text-secondary); }
.cta-box {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(13,79,196,.18);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.cta-box::after { content: ""; position: absolute; inset-inline: 0; bottom: 0; height: 4px; background: var(--grad-accent); }
.cta-box h3 { display: flex; align-items: center; gap: 8px; font-size: 17px; color: var(--ink); margin-bottom: var(--space-sm); }
.cta-box p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-md); }
.cta-box .btn { margin-top: var(--space-xs); }
.toc-list { margin: 0 0 var(--space-md); padding-inline-start: var(--space-lg); }
.toc-list li { font-size: 15px; margin-bottom: var(--space-xs); }
.toc-list a { color: var(--primary); text-decoration: none; }
.toc-list a:hover { text-decoration: underline; }