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

:root {
  --bg: #070810;
  --cyan: #00d4ff;
  --violet: #a855f7;
  --emerald: #10b981;
  --amber: #f59e0b;
  --white: #ffffff;
  --text-dim: rgba(255,255,255,0.45);
  --text-faint: rgba(255,255,255,0.2);
  --border: rgba(255,255,255,0.06);
  --card-bg: rgba(255,255,255,0.02);
  --radius: 16px;
  --font: 'Cairo', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  direction: rtl;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0b14; }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.35); border-radius: 3px; }
::selection { background: rgba(0,212,255,0.2); }

/* ─── GRID BG ─── */
.grid-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 999;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: left .12s ease-out, top .12s ease-out;
  mix-blend-mode: screen;
}

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
header.scrolled {
  background: rgba(7,8,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo img { width: 42px; height: 34px; object-fit: contain; }
.logo-text { font-size: 18px; font-weight: 900; }
.logo-text span { font-weight: 400; font-size: 13px; color: var(--text-dim); margin-right: 6px; }
nav a {
  font-size: 14px; font-weight: 600; color: var(--text-dim);
  padding: 8px 14px; border-radius: 10px;
  transition: color .2s, background .2s;
}
nav a:hover, nav a.active { color: var(--cyan); }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--bg);
  font-size: 14px; font-weight: 800;
  padding: 10px 20px; border-radius: 12px;
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: scale(1.04) translateY(-1px); box-shadow: 0 0 30px rgba(0,212,255,0.35); }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--white); padding: 8px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px; padding: 16px;
  background: rgba(7,8,16,0.95); border: 1px solid var(--border);
  border-radius: 20px; margin: 8px 16px;
  backdrop-filter: blur(20px);
}
.mobile-menu a { padding: 12px 16px; border-radius: 12px; font-weight: 600; font-size: 15px; }
.mobile-menu a:hover { background: rgba(255,255,255,0.04); }
.mobile-menu .btn-whatsapp { margin-top: 8px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 { top: 15%; left: 10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%); }
.hero-orb-2 { bottom: 15%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(168,85,247,0.1) 0%, transparent 70%); animation: pulse-orb 5s ease-in-out infinite; }
@keyframes pulse-orb { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(0,212,255,0.3); background: rgba(0,212,255,0.05);
  padding: 8px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--cyan);
  margin-bottom: 48px; opacity: 0; animation: fade-up .6s .2s forwards;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title { text-align: center; line-height: 1; margin-bottom: 24px; }
.hero-line-1 {
  display: block;
  font-size: clamp(48px, 10vw, 160px);
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  opacity: 0; animation: slide-up .8s .35s cubic-bezier(.16,1,.3,1) forwards;
}
.hero-line-2 {
  display: block;
  font-size: clamp(48px, 10vw, 160px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--violet) 50%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slide-up .8s .5s cubic-bezier(.16,1,.3,1) forwards, gradient-flow 4s linear infinite;
  opacity: 0;
  filter: drop-shadow(0 0 60px rgba(0,212,255,0.25));
}
@keyframes gradient-flow {
  0%{background-position:0% center} 100%{background-position:200% center}
}
.hero-chars {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 4px 2px; margin-top: 8px;
}
.hero-char {
  display: inline-block;
  font-size: clamp(48px, 10vw, 160px);
  font-weight: 900; color: var(--white); line-height: 1;
  opacity: 0;
  transition: color .2s, transform .2s;
}
.hero-char:hover { color: var(--cyan); transform: translateY(-12px); }

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-dim); text-align: center;
  max-width: 520px; line-height: 1.8;
  margin: 32px auto 0;
  opacity: 0; animation: fade-up .8s 1.4s forwards;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 64px;
  opacity: 0; animation: fade-up .6s 1.8s forwards;
}
.hero-scroll span { font-size: 12px; letter-spacing: .3em; color: var(--text-faint); }
.scroll-mouse {
  width: 30px; height: 48px; border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: flex-start; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 12px; border-radius: 2px; background: var(--cyan);
  animation: scroll-anim 1.5s ease-in-out infinite;
}
@keyframes scroll-anim { 0%,100%{transform:translateY(0);opacity:1} 60%{transform:translateY(16px);opacity:0} }

/* ─── PARTICLES ─── */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; animation: float-p var(--dur) ease-in-out var(--delay) infinite; }
@keyframes float-p { 0%,100%{transform:translateY(-20px);opacity:.2} 50%{transform:translateY(20px);opacity:.8} }

/* ─── MARQUEE ─── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; position: relative;
}
.marquee-wrap::before, .marquee-wrap::after {
  content:''; position:absolute; top:0; bottom:0; width:100px; z-index:2;
}
.marquee-wrap::before { left:0; background:linear-gradient(to right,var(--bg),transparent); }
.marquee-wrap::after { right:0; background:linear-gradient(to left,var(--bg),transparent); }
.marquee-track {
  display: flex; gap: 32px; white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}
.marquee-track.reverse { animation-direction: reverse; }
@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-33.33%)} }
.marquee-item { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.3); flex-shrink: 0; }
.marquee-star { color: var(--cyan) !important; }

/* ─── SECTION COMMON ─── */
section { padding: 80px 0; position: relative; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-eyebrow {
  font-size: 11px; letter-spacing: .3em; font-weight: 600;
  color: var(--cyan); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::after { content:''; height:1px; width:50px; background:var(--cyan); opacity:.5; }
.section-title-big {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900; line-height: 1.05; margin-bottom: 48px;
}
.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

/* ─── SERVICES ─── */
.service-row {
  padding: 48px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.service-row:last-child { border-bottom: none; }
.service-num {
  font-size: 14vw; font-weight: 900; color: rgba(255,255,255,0.025);
  position: absolute; right: 0; line-height: 1; pointer-events: none; user-select: none;
}
.service-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 16px; }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .4s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .2em; margin-bottom: 4px; }
.service-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1;
  transition: opacity .2s;
}
.service-title:hover { opacity: .75; }
.service-desc { font-size: 17px; color: var(--text-dim); line-height: 1.8; max-width: 560px; margin-bottom: 24px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  font-size: 12px; padding: 6px 14px; border-radius: 999px; font-weight: 700;
  border: 1px solid currentColor; opacity: .7; transition: opacity .2s;
}
.tag:hover { opacity: 1; }
.service-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 12px;
  font-size: 14px; font-weight: 800;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: scale(1.04) translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--text-dim);
  transition: color .2s, transform .2s;
}
.btn-ghost:hover { color: var(--white); transform: translateX(-4px); }
.service-orb {
  width: 160px; height: 160px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: service-orb-float 6s ease-in-out infinite;
}
@keyframes service-orb-float { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-14px) rotate(5deg)} }
.service-orb-inner { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-orb-inner svg { width: 38px; height: 38px; }

/* ─── STATS ─── */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.stat-item { text-align: center; position: relative; }
.stat-num { font-size: clamp(48px, 8vw, 80px); font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: var(--text-dim); }

/* ─── PROCESS ─── */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.process-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--card-bg); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform .3s, border-color .3s;
}
.process-card::before {
  content:''; position:absolute; inset:0; opacity:0;
  transition: opacity .5s;
}
.process-card:hover { transform: translateY(-8px); }
.process-card:hover::before { opacity:1; }
.process-card-1::before { background: radial-gradient(circle at 50% 0%, rgba(0,212,255,0.07) 0%, transparent 60%); }
.process-card-2::before { background: radial-gradient(circle at 50% 0%, rgba(168,85,247,0.07) 0%, transparent 60%); }
.process-card-3::before { background: radial-gradient(circle at 50% 0%, rgba(245,158,11,0.07) 0%, transparent 60%); }
.process-card-4::before { background: radial-gradient(circle at 50% 0%, rgba(16,185,129,0.07) 0%, transparent 60%); }
.process-step-num { font-size: 72px; font-weight: 900; line-height: 1; opacity: .05; margin-bottom: -16px; }
.process-icon-wrap {
  width: 46px; height: 46px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.process-icon-wrap svg { width: 22px; height: 22px; }
.process-title { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
.process-desc { font-size: 15px; color: var(--text-dim); line-height: 1.75; }

/* ─── CTA SECTION ─── */
.cta-box {
  border-radius: 24px; padding: 64px 40px; text-align: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.07) 0%, rgba(168,85,247,0.07) 100%);
  border: 1px solid rgba(0,212,255,0.15);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content:''; position:absolute;
  top:0;left:0;right:0;bottom:0; border-radius:24px;
  box-shadow: inset 0 0 80px rgba(0,212,255,0.04);
  animation: cta-pulse 3s ease-in-out infinite;
}
@keyframes cta-pulse { 0%,100%{opacity:.5} 50%{opacity:1} }
.cta-title { font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; }
.cta-sub { font-size: 18px; color: var(--text-dim); margin-bottom: 36px; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 14px;
  font-size: 18px; font-weight: 900;
  background: linear-gradient(to left, var(--cyan), var(--violet));
  color: var(--bg);
  box-shadow: 0 0 50px rgba(0,212,255,0.25);
  transition: transform .25s, box-shadow .25s;
}
.btn-cta:hover { transform: scale(1.04) translateY(-3px); box-shadow: 0 0 70px rgba(0,212,255,0.4); }
.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; border-radius: 14px; font-size: 17px; font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
  transition: transform .25s, border-color .25s;
}
.btn-cta-ghost:hover { transform: scale(1.04) translateY(-3px); border-color: rgba(255,255,255,0.3); }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 8px; }

/* ─── FOOTER ─── */
footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: start; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-logo img { width: 44px; height: 36px; object-fit: contain; }
.footer-brand {
  font-size: 22px; font-weight: 900;
  background: linear-gradient(to left, var(--cyan), var(--violet));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  padding-bottom: 3px;
}
.footer-desc { font-size: 15px; color: var(--text-dim); line-height: 1.7; max-width: 300px; margin-bottom: 24px; }
.footer-contact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 700;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  color: var(--cyan); direction: ltr;
  transition: transform .2s;
}
.footer-contact:hover { transform: translateX(-4px); }
.footer-links h4 { font-size: 11px; letter-spacing: .3em; color: var(--text-faint); margin-bottom: 20px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-dim); transition: color .2s, padding-right .2s; }
.footer-links a:hover { color: var(--white); padding-right: 6px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: var(--text-faint); }
.footer-admin { font-size: 12px; color: rgba(255,255,255,.08); }
.footer-admin:hover { color: rgba(255,255,255,.25); }

/* ─── AOS OVERRIDES ─── */
[data-aos] { transition-property: transform, opacity; }

/* ─── BLOG PAGE ─── */
.page-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before {
  content:''; position:absolute; top:0;left:0;right:0; height:600px;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); }
.blog-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.blog-cat {
  font-size: 12px; padding: 5px 12px; border-radius: 999px; font-weight: 700;
  border: 1px solid currentColor;
}
.blog-time { font-size: 12px; color: var(--text-faint); display: flex; align-items: center; gap: 5px; }
.blog-card-title {
  font-size: 20px; font-weight: 800; color: var(--white);
  line-height: 1.4; margin-bottom: 12px; flex: 1;
  transition: color .2s;
}
.blog-card:hover .blog-card-title { color: var(--cyan); }
.blog-excerpt { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 24px; }
.blog-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.blog-author { font-size: 12px; color: var(--text-faint); }
.blog-read { font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 5px; transition: transform .2s; }
.blog-card:hover .blog-read { transform: translateX(-4px); }

/* ─── BLOG POST ─── */
.reading-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  background: linear-gradient(to right, var(--cyan), var(--violet));
  width: 0; transition: width .1s;
}
.post-header { padding: 140px 0 64px; }
.post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dim); margin-bottom: 40px; transition: transform .2s; }
.post-back:hover { transform: translateX(6px); }
.post-title { font-size: clamp(28px, 5vw, 52px); font-weight: 900; line-height: 1.2; margin-bottom: 32px; }
.post-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.post-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.author-name { font-size: 15px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text-dim); }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 10px; border: 1px solid var(--border);
  font-size: 14px; color: var(--text-dim);
  background: none; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.share-btn:hover { border-color: rgba(255,255,255,0.2); color: var(--white); }
.post-divider { height: 1px; margin: 40px 0; }
.post-intro { font-size: 20px; color: rgba(255,255,255,.65); line-height: 1.9; margin-bottom: 48px; }
.post-section { border-right: 2px solid var(--cyan); padding-right: 24px; margin-bottom: 40px; }
.post-section-title { font-size: 26px; font-weight: 900; margin-bottom: 16px; }
.post-section-body { font-size: 17px; color: var(--text-dim); line-height: 1.85; }
.post-cta-box {
  margin-top: 64px; padding: 48px 32px; text-align: center;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 24px;
}
.post-cta-box p { font-size: clamp(18px, 3vw, 24px); font-weight: 700; margin-bottom: 24px; line-height: 1.6; }

/* ─── SERVICE PAGE ─── */
.service-page-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.service-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 60px 0; }
.feature-card {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--card-bg);
  transition: transform .3s;
  position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-8px); }
.feature-card::before { content:''; position:absolute; inset:0; opacity:0; transition:.5s; }
.feature-card:hover::before { opacity:1; }
.feature-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 22px; height: 22px; }
.feature-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-dim); line-height: 1.7; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 40px 0 52px; }
.check-item { display: flex; align-items: center; gap: 12px; font-size: 16px; }
.check-icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: block; }
  .btn-whatsapp { display: none; }
  .service-row { grid-template-columns: 1fr; }
  .service-orb { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-line-1, .hero-line-2, .hero-char { font-size: clamp(44px, 13vw, 90px); }
  .cta-box { padding: 40px 20px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes slide-up { from{opacity:0;transform:translateY(60px)} to{opacity:1;transform:translateY(0)} }
.animate-fade-up { opacity:0; }
.animate-fade-up.visible { animation: fade-up .7s cubic-bezier(.16,1,.3,1) forwards; }
