/*
Theme Name: Fakhr Media
Theme URI: https://fakhrmedia.com
Author: Fakhr Media Team
Description: Professional MCN Platform for Islamic Content Creators - Full bilingual AR/EN
Version: 2.0.0
License: GNU General Public License v2
Text Domain: fakhrmedia
Tags: rtl-language-support, translation-ready, custom-colors, custom-logo, full-width-template
*/

/* =============================================
   ROOT VARIABLES
   ============================================= */
:root {
  --red: #e8271a;
  --red-hover: #c9200f;
  --red-glow: rgba(232,39,26,0.18);
  --dark: #0d0f14;
  --navy: #111827;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --bg: #f8f7f5;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-light: #f0eeec;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.07);
  --card-shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-height: 72px;
  --font-main: 'Manrope', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body.rtl, html[dir="rtl"] body {
  font-family: 'Cairo', 'Tajawal', var(--font-main);
  direction: rtl;
  text-align: right;
}

img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family: var(--font-main); cursor:pointer; border:none; background:none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,h2,h3,h4,h5,h6 { font-weight:900; line-height:1.1; }
h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }
p  { line-height: 1.7; color: var(--text-muted); }

.text-red   { color: var(--red) !important; }
.text-dark  { color: var(--text) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 18px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow);
}
.btn-outline {
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }
.btn-ghost { color: var(--text); font-weight:600; padding:10px 16px; }
.btn-ghost:hover { color: var(--red); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  background: var(--border-light); border-radius: var(--radius-pill);
  padding: 4px;
}
.lang-btn {
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 700;
  transition: all 0.2s; cursor: pointer;
  border: none; background: none; color: var(--text-muted);
}
.lang-btn.active {
  background: var(--white); color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* =============================================
   NAVBAR
   ============================================= */
.site-header {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  height: var(--nav-height);
  background: rgba(248,247,245,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,0.09); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 900; font-size: 1.2rem; color: var(--text);
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1rem;
  transition: transform 0.2s;
}
.site-logo:hover .logo-mark { transform: rotate(-5deg) scale(1.05); }
.logo-text-red { color: var(--red); }
.custom-logo { height: 40px; width: auto; }

/* Nav Links */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  padding: 8px 14px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem; color: var(--text);
  transition: all 0.2s; white-space: nowrap;
}
.primary-nav a:hover, .primary-nav a.current-menu-item {
  background: rgba(232,39,26,0.08); color: var(--red);
}

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 8px; cursor: pointer;
  background: none; border: none;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity:0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--nav-height); left:0; right:0; bottom:0;
  background: var(--white); z-index: 999;
  padding: 32px 5%;
  display: none; flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 1.05rem; color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 700;
  margin-bottom: 28px;
  box-shadow: var(--card-shadow);
  animation: fadeUp 0.6s ease 0.1s both;
}
.badge-dot { width:8px; height:8px; border-radius:50%; background:var(--red); animation: pulse 2s infinite; }

.hero-title {
  animation: fadeUp 0.6s ease 0.2s both;
  margin-bottom: 20px;
}
.hero-title .line2 { display:block; }
.hero-title .accent { color: var(--red); }

.hero-desc {
  font-size: 1.05rem; max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}

/* Hero Visual */
.hero-visual {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 0.8s ease 0.3s both;
}

.card-main {
  width: 220px; height: 310px;
  border-radius: 24px;
  background: linear-gradient(160deg, #c0392b 0%, #5a0000 100%);
  position: relative; z-index:3;
  box-shadow: 0 24px 60px rgba(192,57,43,0.35);
  overflow: hidden;
  animation: floatCard 4s ease-in-out infinite;
}
.card-main img { width:100%;height:100%;object-fit:cover;opacity:0.8; }

.card-side {
  width: 160px; height: 230px; border-radius: 20px;
  background: linear-gradient(160deg,#8b1a1a 0%,#3d0000 100%);
  overflow:hidden; position:absolute;
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.card-side img { width:100%;height:100%;object-fit:cover;opacity:0.7; }
.card-side.left  { left:0; top:80px; transform:rotate(-8deg); z-index:2; }
.card-side.right { right:0; top:80px; transform:rotate(8deg);  z-index:2; }

.card-spotlight {
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  background:rgba(0,0,0,0.72); backdrop-filter:blur(10px);
  border-radius:14px; padding:10px 16px;
  display:flex; align-items:center; gap:10px;
  white-space:nowrap; z-index:4;
}
.spotlight-icon {
  width:30px;height:30px;border-radius:50%;
  background:var(--red);display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:0.9rem;
}
.spotlight-text { color:#fff; }
.spotlight-text strong { font-size:0.82rem; display:block; }
.spotlight-text span { font-size:0.7rem; opacity:0.7; }

.social-pill {
  position:absolute; background:var(--white);
  border-radius:50%; width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.12); font-size:1rem; z-index:5;
}
.pill-tiktok { top:30px; left:90px; }
.pill-fb     { top:200px; left:20px; }
.pill-ig     { bottom:110px; left:50px; }
.pill-yt     { top:30px; right:70px; }
.pill-sp     { bottom:90px; right:10px; }
.pill-bell   { top:200px; right:5px; }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width:1280px; margin:0 auto; padding:0 5%;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  padding: 36px 20px; text-align:center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-item:last-child { border-right:none; }
.stat-item:hover { background: rgba(232,39,26,0.03); }
.stat-num {
  font-size: 2.4rem; font-weight:900; color:var(--text);
  line-height:1;
}
.stat-label {
  font-size:0.72rem; font-weight:700; letter-spacing:1.5px;
  color:var(--text-muted); text-transform:uppercase; margin-top:8px;
}

/* =============================================
   SECTIONS BASE
   ============================================= */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.container { max-width:1280px; margin:0 auto; padding:0 5%; }

.section-tag {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(232,39,26,0.08); color:var(--red);
  padding:5px 14px; border-radius:var(--radius-pill);
  font-size:0.78rem; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; margin-bottom:16px;
}
.section-title { margin-bottom: 12px; }
.section-title .red { color:var(--red); }
.section-sub {
  max-width:520px; font-size:0.98rem; color:var(--text-muted);
  line-height:1.7; margin-bottom:56px;
}
.section-sub.center { margin-left:auto; margin-right:auto; text-align:center; }
.section-title.center { text-align:center; }

/* =============================================
   EMPOWERING SECTION
   ============================================= */
.empower-section { background:var(--bg); }
.empower-headline {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight:900; line-height:1.12;
  text-align:center; max-width:700px; margin:0 auto 50px;
}
.creator-avatars {
  display:flex; justify-content:center; gap:16px; flex-wrap:wrap;
}
.creator-thumb {
  width:82px; height:82px; border-radius:18px;
  background:linear-gradient(135deg,#c0392b,#6b0000);
  overflow:hidden; position:relative;
  box-shadow:0 6px 22px rgba(192,57,43,0.28);
  transition:transform 0.3s;
}
.creator-thumb:hover { transform:translateY(-6px) scale(1.04); }
.creator-thumb img { width:100%;height:100%;object-fit:cover; }
.creator-thumb-placeholder {
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,0.15);font-size:2rem;
}

/* =============================================
   PROTECTION DASHBOARD
   ============================================= */
.protection-section { background:var(--white); }
.dash-grid {
  display:grid; grid-template-columns:1fr 1.4fr 1fr;
  gap:20px; max-width:900px; margin:0 auto;
}
.dash-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:24px;
  box-shadow:var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dash-card:hover { transform:translateY(-4px); box-shadow:var(--card-shadow-hover); }
.dash-card.main-card {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; padding:32px 24px;
}
.dash-label {
  font-size:0.68rem; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--text-muted); margin-bottom:10px;
}
.dash-big { font-size:2.2rem; font-weight:900; color:#00a060; line-height:1; }
.dash-sub { font-size:0.8rem; color:var(--text-muted); margin-top:4px; }
.mini-bars {
  display:flex; align-items:flex-end; gap:4px; height:52px; margin-top:16px;
}
.mini-bar {
  flex:1; background:var(--red); border-radius:4px 4px 0 0;
  opacity:0.65; transition:opacity 0.2s;
}
.mini-bar:hover { opacity:1; }
.shield-wrap {
  width:56px;height:56px;border-radius:50%;
  background:rgba(232,39,26,0.1);
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;margin-bottom:14px;
}
.mono-badge {
  background:rgba(0,180,100,0.12);color:#00a060;
  border-radius:var(--radius-pill);padding:4px 14px;
  font-size:0.72rem;font-weight:700;letter-spacing:1px;
  display:inline-flex;align-items:center;gap:6px;margin-bottom:12px;
}
.scan-track {
  width:100%;height:6px;background:var(--border);
  border-radius:3px;margin-top:16px;overflow:hidden;
}
.scan-fill {
  height:100%;background:var(--red);border-radius:3px;
  animation:scanning 2.5s ease-in-out infinite alternate;
}
.scan-labels {
  display:flex;justify-content:space-between;
  font-size:0.68rem;color:var(--text-muted);margin-top:5px;
}
.platform-row {
  display:flex;justify-content:space-between;align-items:center;
  padding:9px 0;border-bottom:1px solid var(--border-light);
}
.platform-row:last-child{border-bottom:none;}
.plat-name{font-size:0.82rem;font-weight:600;display:flex;align-items:center;gap:6px;}
.plat-num{font-weight:900;font-size:0.9rem;}
.plat-growth{font-size:0.7rem;color:#00a060;font-weight:700;}

/* =============================================
   NUMBERS STRIP
   ============================================= */
.numbers-strip {
  background:var(--border);
  display:grid;grid-template-columns:repeat(3,1fr);gap:2px;
}
.num-block { background:var(--white); padding:52px 44px; }
.num-big { font-size:3.6rem;font-weight:900;color:var(--text);line-height:1; }
.num-desc { font-size:0.95rem;color:var(--text-muted);margin-top:12px;line-height:1.6; }

/* =============================================
   SUCCESS STORIES
   ============================================= */
.success-section { background:var(--white); }
.creators-row {
  display:grid;grid-template-columns:repeat(4,1fr);gap:18px;
}
.creator-card {
  border-radius:22px;overflow:hidden;
  position:relative;height:350px;cursor:pointer;
  transition:transform var(--transition);
}
.creator-card:hover { transform:translateY(-8px); }
.creator-card-inner {
  width:100%;height:100%;
  background:linear-gradient(180deg,#8b1010 0%,#0d0000 100%);
  position:relative;
}
.creator-card-inner img {
  width:100%;height:100%;object-fit:cover;
  opacity:0.75;transition:opacity 0.3s;
}
.creator-card:hover .creator-card-inner img { opacity:0.9; }
.creator-overlay {
  position:absolute;bottom:0;left:0;right:0;
  padding:22px;
  background:linear-gradient(transparent,rgba(0,0,0,0.88));
}
.creator-line { width:26px;height:3px;background:var(--red);margin-bottom:8px; }
.creator-name { font-size:1.05rem;font-weight:800;color:#fff; }
.creator-role { font-size:0.72rem;color:rgba(255,255,255,0.6);font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-top:3px; }
.creator-reach { display:flex;gap:14px;margin-top:10px;font-size:0.72rem;font-weight:700; }
.yt-count{color:#ff6b6b;} .tk-count{color:#69d2f7;}

/* =============================================
   SCALE / FEATURES
   ============================================= */
.scale-section { background:var(--bg); }
.features-top { display:grid;grid-template-columns:1.5fr 1fr;gap:20px;margin-bottom:20px; }
.features-bottom { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.feat-card {
  background:var(--white);border-radius:var(--radius);
  padding:32px;border:1px solid var(--border);
  transition:box-shadow var(--transition), transform var(--transition);
}
.feat-card:hover { box-shadow:var(--card-shadow-hover);transform:translateY(-4px); }
.feat-card.tinted { background:#fff5f5;border-color:rgba(232,39,26,0.12); }
.feat-title { font-size:1.15rem;font-weight:800;margin-top:18px; }
.feat-desc { font-size:0.85rem;color:var(--text-muted);margin-top:8px;line-height:1.6; }
.feat-icon { font-size:2.4rem;display:block; }

/* Rights Manager widget */
.rm-widget {
  background:var(--white);border:1px solid var(--border);
  border-radius:14px;padding:16px 18px;margin-bottom:14px;
}
.rm-head {
  display:flex;justify-content:space-between;align-items:center;
  font-size:0.84rem;font-weight:700;margin-bottom:12px;
}
.online { color:#00c070;font-size:0.72rem;font-weight:700; }
.rm-row {
  display:flex;justify-content:space-between;align-items:center;
  padding:8px 0;border-bottom:1px solid var(--border-light);font-size:0.82rem;
}
.rm-row:last-child{border-bottom:none;}
.detected{color:var(--red);font-weight:700;font-size:0.76rem;}

/* Ad widget */
.ad-widget { background:var(--white);border:1px solid var(--border);border-radius:14px;padding:20px; }
.ad-pref-label{font-size:0.7rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:var(--text-muted);margin-bottom:12px;}
.toggle-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;}
.toggle-label{font-weight:700;font-size:0.9rem;}
.toggle-switch{width:44px;height:24px;background:var(--red);border-radius:12px;position:relative;}
.toggle-switch::after{content:'';position:absolute;width:18px;height:18px;background:#fff;border-radius:50%;top:3px;right:3px;}
.cpm-badge{background:rgba(0,180,100,0.1);border:1px solid rgba(0,180,100,0.2);border-radius:10px;padding:10px 14px;font-size:0.82rem;font-weight:700;color:#00a060;display:flex;align-items:center;gap:8px;}

/* =============================================
   TRUSTED SECTION
   ============================================= */
.trusted-section { background:#f0f0ee; }
.trusted-label {
  font-size:0.78rem;font-weight:800;letter-spacing:3px;
  text-transform:uppercase;color:#c0c0c0;
  text-align:center;margin-bottom:36px;
}
.orgs-row {
  display:flex;align-items:center;justify-content:center;
  gap:56px;flex-wrap:wrap;
}
.org-item {
  font-size:1.8rem;color:#c0c0c0;opacity:0.45;
  transition:opacity 0.2s, transform 0.2s;cursor:default;
}
.org-item:hover{opacity:0.85;transform:scale(1.1);}

/* =============================================
   MAP / REACH SECTION
   ============================================= */
.reach-section { background:var(--white); }
.world-map-wrap {
  width:100%;max-width:720px;margin:48px auto 0;
  background:#e8e8e6;border-radius:18px;height:300px;
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.map-placeholder{font-size:5rem;opacity:0.15;}
.map-pin {
  position:absolute;width:11px;height:11px;border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 5px rgba(232,39,26,0.18);
  animation:pinPulse 2s infinite;
}
.map-pin-label {
  position:absolute;background:var(--red);color:#fff;
  font-size:0.68rem;font-weight:700;padding:3px 9px;border-radius:20px;
  white-space:nowrap;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background:var(--bg); text-align:center; }
.cta-avatars { display:flex;justify-content:center;align-items:center;margin-bottom:8px; }
.cta-avatar {
  width:36px;height:36px;border-radius:50%;
  border:2px solid var(--white);
  background:linear-gradient(135deg,#c0392b,#5a0000);
  margin-left:-10px;overflow:hidden;
}
.cta-avatar:first-child{margin-left:0;}
.cta-badge {
  display:inline-flex;align-items:center;gap:10px;
  background:var(--white);border:1px solid var(--border);
  border-radius:var(--radius-pill);padding:8px 18px;
  font-size:0.82rem;font-weight:600;
  box-shadow:var(--card-shadow);margin-bottom:28px;
}
.stars{color:#f59e0b;letter-spacing:1px;}
.cta-title{font-size:clamp(2.4rem,5vw,3.8rem);font-weight:900;line-height:1.1;margin-bottom:20px;}
.cta-title em{font-style:italic;font-family:var(--font-display);}
.cta-desc{font-size:1rem;max-width:480px;margin:0 auto 36px;line-height:1.7;}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background:var(--white);border-top:1px solid var(--border); }
.footer-top {
  max-width:1280px;margin:0 auto;padding:60px 5% 48px;
  display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:44px;
}
.footer-brand {}
.footer-logo-wrap {
  display:flex;align-items:center;gap:10px;
  font-weight:900;font-size:1.1rem;margin-bottom:16px;
}
.footer-desc{font-size:0.85rem;color:var(--text-muted);line-height:1.7;max-width:270px;}
.footer-social{display:flex;gap:10px;margin-top:20px;}
.soc-btn {
  width:36px;height:36px;border-radius:50%;
  border:1px solid var(--border);
  display:flex;align-items:center;justify-content:center;
  font-size:0.88rem;color:var(--text);
  transition:all 0.2s;text-decoration:none;
}
.soc-btn:hover{border-color:var(--red);color:var(--red);transform:translateY(-2px);}
.footer-col-title{font-weight:800;font-size:0.9rem;margin-bottom:20px;color:var(--text);}
.footer-links li{margin-bottom:12px;}
.footer-links a{font-size:0.88rem;color:var(--text-muted);transition:color 0.2s;}
.footer-links a:hover{color:var(--red);}
.footer-bottom {
  max-width:1280px;margin:0 auto;padding:20px 5%;
  border-top:1px solid var(--border);
  display:flex;justify-content:space-between;align-items:center;
  font-size:0.82rem;color:var(--text-muted);flex-wrap:wrap;gap:12px;
}
.systems-ok{display:flex;align-items:center;gap:6px;}
.ok-dot{width:8px;height:8px;border-radius:50%;background:#00c070;display:inline-block;}

/* =============================================
   INNER PAGES
   ============================================= */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 5% 80px;
  max-width:1280px;margin:0 auto;
  text-align:center;
}
.page-hero h1{margin-bottom:20px;}
.page-hero p{font-size:1.05rem;max-width:560px;margin:0 auto;}

.content-section { padding:80px 5%;max-width:1280px;margin:0 auto; }
.content-grid { display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start; }
.content-card {
  background:var(--white);border-radius:var(--radius);
  padding:36px;border:1px solid var(--border);
  box-shadow:var(--card-shadow);
  transition:transform var(--transition);
}
.content-card:hover{transform:translateY(-4px);}
.content-card h3{margin-bottom:12px;}
.content-card p{font-size:0.9rem;}

/* Cards grid for features/services */
.cards-grid-3 { display:grid;grid-template-columns:repeat(3,1fr);gap:24px; }
.cards-grid-2 { display:grid;grid-template-columns:repeat(2,1fr);gap:24px; }

/* Pricing cards */
.pricing-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px; }
.pricing-card {
  background:var(--white);border-radius:var(--radius);
  padding:40px 32px;border:1px solid var(--border);
  box-shadow:var(--card-shadow);text-align:center;
  transition:transform var(--transition);
}
.pricing-card.featured {
  background:var(--red);color:#fff;
  border-color:var(--red);
  transform:scale(1.04);
}
.pricing-card:hover:not(.featured){transform:translateY(-6px);}
.price-amount{font-size:3rem;font-weight:900;line-height:1;margin:20px 0 8px;}
.price-period{font-size:0.85rem;opacity:0.7;}
.price-features{margin:24px 0;text-align:left;}
.price-features li{padding:8px 0;border-bottom:1px solid rgba(0,0,0,0.06);font-size:0.9rem;display:flex;align-items:center;gap:8px;}
.pricing-card.featured .price-features li{border-bottom-color:rgba(255,255,255,0.15);}

/* Team grid */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;}
.team-card{background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);box-shadow:var(--card-shadow);text-align:center;transition:transform var(--transition);}
.team-card:hover{transform:translateY(-6px);}
.team-photo{height:200px;background:linear-gradient(135deg,#c0392b,#5a0000);display:flex;align-items:center;justify-content:center;font-size:3rem;}
.team-info{padding:20px;}
.team-name{font-weight:800;font-size:1rem;margin-bottom:4px;}
.team-role{font-size:0.8rem;color:var(--text-muted);}

/* Blog cards */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.blog-card{background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);box-shadow:var(--card-shadow);transition:transform var(--transition);}
.blog-card:hover{transform:translateY(-6px);}
.blog-thumb{height:200px;background:linear-gradient(135deg,#8b1a1a,#1a0000);overflow:hidden;}
.blog-thumb img{width:100%;height:100%;object-fit:cover;}
.blog-body{padding:24px;}
.blog-tag{font-size:0.72rem;font-weight:700;color:var(--red);text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;}
.blog-title{font-size:1.05rem;font-weight:800;margin-bottom:10px;line-height:1.3;}
.blog-excerpt{font-size:0.85rem;color:var(--text-muted);line-height:1.6;}
.blog-meta{font-size:0.78rem;color:var(--text-muted);margin-top:16px;display:flex;gap:12px;}

/* Contact form */
.contact-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:60px;align-items:start;}
.contact-info h2{margin-bottom:16px;}
.contact-item{display:flex;gap:14px;margin-bottom:24px;align-items:flex-start;}
.contact-icon{width:44px;height:44px;border-radius:12px;background:rgba(232,39,26,0.1);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0;}
.form-group{margin-bottom:20px;}
.form-label{font-size:0.85rem;font-weight:700;margin-bottom:8px;display:block;}
.form-input,.form-textarea,.form-select{
  width:100%;padding:12px 16px;border:1.5px solid var(--border);
  border-radius:var(--radius-sm);font-size:0.9rem;font-family:var(--font-main);
  background:var(--white);color:var(--text);
  transition:border-color 0.2s,box-shadow 0.2s;outline:none;
}
.form-input:focus,.form-textarea:focus,.form-select:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(232,39,26,0.1);}
.form-textarea{min-height:140px;resize:vertical;}

/* Legal pages */
.legal-content{max-width:800px;margin:0 auto;padding:0 5%;}
.legal-content h2{font-size:1.5rem;margin:36px 0 14px;}
.legal-content h3{font-size:1.1rem;margin:24px 0 10px;}
.legal-content p,.legal-content li{font-size:0.95rem;color:var(--text-muted);line-height:1.8;margin-bottom:12px;}
.legal-content ul{padding-left:20px;list-style:disc;}
.legal-content a{color:var(--red);}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes floatCard {
  0%,100% { transform:translateY(0px); }
  50%      { transform:translateY(-10px); }
}
@keyframes pulse {
  0%,100% { box-shadow:0 0 0 0 rgba(232,39,26,0.4); }
  50%      { box-shadow:0 0 0 6px rgba(232,39,26,0); }
}
@keyframes pinPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(232,39,26,0.4); }
  50%      { box-shadow:0 0 0 8px rgba(232,39,26,0); }
}
@keyframes scanning {
  from { width:18%; }
  to   { width:88%; }
}

/* Scroll reveal */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* =============================================
   RTL OVERRIDES
   ============================================= */
html[dir="rtl"] .stat-item    { border-right:none; border-left:1px solid var(--border); }
html[dir="rtl"] .stat-item:last-child { border-left:none; }
html[dir="rtl"] .card-side.left  { left:auto;right:0;transform:rotate(8deg); }
html[dir="rtl"] .card-side.right { right:auto;left:0;transform:rotate(-8deg); }
html[dir="rtl"] .footer-top      { direction:rtl; }
html[dir="rtl"] .hero-section     { direction:rtl; }
html[dir="rtl"] .primary-nav      { direction:rtl; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width:1024px) {
  .features-top { grid-template-columns:1fr; }
  .features-bottom { grid-template-columns:1fr 1fr; }
  .pricing-grid { grid-template-columns:1fr; max-width:420px; margin-left:auto; margin-right:auto; }
  .pricing-card.featured { transform:none; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width:768px) {
  :root { --nav-height:64px; }
  .hero-section  { grid-template-columns:1fr; padding-top:calc(var(--nav-height)+40px); }
  .hero-visual   { display:none; }
  .stats-inner   { grid-template-columns:repeat(2,1fr); }
  .dash-grid     { grid-template-columns:1fr; }
  .numbers-strip { grid-template-columns:1fr; gap:2px; }
  .creators-row  { grid-template-columns:repeat(2,1fr); }
  .features-bottom{ grid-template-columns:1fr; }
  .footer-top    { grid-template-columns:1fr 1fr; }
  .cards-grid-3  { grid-template-columns:1fr; }
  .content-grid  { grid-template-columns:1fr; }
  .contact-grid  { grid-template-columns:1fr; }
  .team-grid     { grid-template-columns:repeat(2,1fr); }
  .blog-grid     { grid-template-columns:1fr; }
  .menu-toggle   { display:flex; }
  .primary-nav,.nav-right .btn-ghost,.nav-right .btn-primary { display:none; }
  .lang-switcher { display:flex; }
}

@media (max-width:480px) {
  .stats-inner  { grid-template-columns:1fr; }
  .creators-row { grid-template-columns:1fr; }
  .footer-top   { grid-template-columns:1fr; }
  .team-grid    { grid-template-columns:1fr; }
  h1 { font-size:2.2rem; }
  h2 { font-size:1.7rem; }
}

/* WP required */
.aligncenter { display:block; margin:0 auto; }
img.alignright{ float:right; margin:0 0 1em 1em; }
img.alignleft { float:left;  margin:0 1em 1em 0; }
.screen-reader-text { position:absolute!important; width:1px; height:1px; clip:rect(1px,1px,1px,1px); overflow:hidden; }
.wp-caption { max-width:100%; }
