/* ============================================================
   HESH-SHARED.CSS — Design System for All Pages
   هشحنلك — Shared Styles v1.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --gold: #D97706;
  --gold2: #B45309;
  --gold-light: #F59E0B;
  --gold-dim: rgba(217,119,6,0.12);
  --gold-glow: rgba(217,119,6,0.25);
  --dark: #0A0E1A;
  --navy: #131B2B;
  --bg: #F8FAFC;
  --bg2: #F1F5F9;
  --card: #FFFFFF;
  --card2: #F8FAFC;
  --border: rgba(217,119,6,0.35);
  --border2: rgba(0,0,0,0.1);
  --text: #0F172A;
  --muted: #475569;
  --green: #059669;
  --green-dim: rgba(5,150,105,0.12);
  --red: #DC2626;
  --red-dim: rgba(220,38,38,0.1);
  --blue: #3B82F6;
  --blue-dim: rgba(59,130,246,0.1);
  --purple: #8B5CF6;
  --radius: 18px;
  --radius-sm: 12px;
  --nav-h: 70px;
  --mob-bar-h: 65px;
  
  --shadow: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 25px rgba(0,0,0,0.06);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.08);
}

/* Removed duplicate mobile sticky bar */

[data-theme="dark"] {
  --bg: #0A0E1A;
  --bg2: #131B2B;
  --card: #1E293B;
  --card2: #0F172A;
  --border: rgba(217, 119, 6, 0.35);
  --border2: rgba(255, 255, 255, 0.1);
  --text: #F8FAFC;
  --muted: #94A3B8;
  --shadow: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.5);
}

/* ── BASE ───────────────────────────────────────────────── */
* {
  -webkit-overflow-scrolling: touch;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden !important; width: 100% !important; max-width: 100% !important; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden !important;
  width: 100% !important; max-width: 100% !important;
  min-height: 100vh;
  padding-top: var(--nav-h);
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 700px 450px at 10% 10%, rgba(245,158,11,0.07), transparent),
    radial-gradient(ellipse 600px 400px at 90% 90%, rgba(59,130,246,0.05), transparent);
  pointer-events: none;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.hesh-nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: 96%; max-width: 1200px; z-index: 9999;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px) saturate(180%); -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06), inset 0 0 0 1px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}
html[data-theme="dark"] .hesh-nav {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: contain; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-logo-text { font-size: 20px; font-weight: 900; color: var(--gold); letter-spacing: -0.5px; }

.nav-links {
  display: flex; gap: 8px;
  overflow-x: auto; scrollbar-width: none; flex: 1; justify-content: center;
}
.nav-links::-webkit-scrollbar { display: none; }

.nav-link {
  position: relative; white-space: nowrap; flex-shrink: 0;
  color: var(--muted);
  font-family: 'Cairo', sans-serif; font-size: 14px; font-weight: 700;
  padding: 8px 12px; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; display: inline-block;
  background: transparent; border: none;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 3px; background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 10px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
.nav-link:hover { color: var(--text); transform: translateY(-1px); }
.nav-link:hover::after { width: 60%; opacity: 0.5; }
.nav-link.active { color: var(--gold2); font-weight: 900; }
.nav-link.active::after { width: 80%; opacity: 1; bottom: 0; }


.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn-nav-cta {
  background: transparent;
  color: var(--gold); font-family: 'Cairo', sans-serif; font-size: 14px; font-weight: 900;
  padding: 8px 22px; border-radius: 100px; border: 1.5px solid var(--gold); cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap; text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
}
.btn-nav-cta::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), transparent);
  transition: all 0.5s ease;
}
.btn-nav-cta:hover { 
  background: var(--gold); color: #fff; transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.3);
}
.btn-nav-cta:hover::before { left: 100%; }

/* Mobile hamburger nav */
.nav-mob-toggle {
  display: none; background: var(--bg2); border: 1px solid var(--border2);
  color: var(--text); width: 40px; height: 40px; border-radius: 10px; font-size: 18px;
  cursor: pointer; align-items: center; justify-content: center;
}

.mob-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2); padding: 12px; z-index: 9998;
  flex-direction: column; gap: 4px; box-shadow: var(--shadow);
}
.mob-menu.open { display: flex; }
.mob-menu a, .mob-menu button {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px; color: var(--text);
  font-family: 'Cairo', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; background: transparent; border: none; cursor: pointer;
  transition: all 0.2s; width: 100%; text-align: right;
}
.mob-menu a:hover, .mob-menu button:hover { background: var(--gold-dim); color: var(--gold2); }

/* ── MOBILE STICKY BAR ──────────────────────────────────── */
.mob-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 8px;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
  height: var(--mob-bar-h);
  padding: 0;
  align-items: center; justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.mob-sticky-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  flex: 1; padding: 8px 4px; border-radius: 12px; cursor: pointer;
  background: transparent; border: none; color: var(--muted);
  font-family: 'Cairo', sans-serif; font-size: 11px; font-weight: 700;
  transition: all 0.2s; text-decoration: none;
}
.mob-sticky-btn .mob-icon { font-size: 22px; line-height: 1; }
.mob-sticky-btn:hover, .mob-sticky-btn.primary {
  color: var(--gold2);
}
.mob-sticky-btn.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff; border-radius: 14px; transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.4);
  padding: 10px 16px;
}
.mob-sticky-btn.primary .mob-icon { font-size: 24px; }
.mob-sticky-btn.whatsapp { color: #25D366; }
.mob-sticky-btn.whatsapp:hover { color: #1db954; }

/* ── PAGE HERO / BANNER ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 60%, #CBD5E1 100%);
  padding: 60px 24px 50px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(217,119,6,0.1), transparent);
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim); border: 1px solid var(--border);
  color: var(--gold2); font-size: 13px; font-weight: 800;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 16px; position: relative;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px); font-weight: 900; color: var(--navy);
  line-height: 1.2; position: relative; margin-bottom: 12px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero p {
  font-size: clamp(14px, 2vw, 18px); color: var(--muted);
  max-width: 600px; margin: 0 auto 24px; line-height: 1.7; position: relative;
}

/* ── SECTION ─────────────────────────────────────────────── */
.section {
  padding: 80px 24px;
  max-width: 1200px; margin: 0 auto;
}
.section-alt { background: var(--bg2); }
.section-dark { background: #E2E8F0; }

.sec-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.sec-title {
  font-size: clamp(24px, 4vw, 40px); font-weight: 900; color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}
.sec-title span { color: var(--gold); }
.sec-sub {
  font-size: clamp(14px, 2vw, 16px); color: var(--muted); line-height: 1.7;
  max-width: 600px;
}
.sec-header { text-align: center; margin-bottom: 50px; }

/* ── CARD ────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); transition: all 0.3s;
}
.card:hover {
  border-color: var(--border); box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}

/* ── GRID ────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── FORM ELEMENTS ──────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 800; color: var(--text); }
.form-label span.req { color: var(--red); }

.form-control {
  width: 100%; padding: 13px 16px;
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm); font-family: 'Cairo', sans-serif;
  font-size: 14px; color: var(--text); transition: all 0.25s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-control::placeholder { color: var(--muted); font-size: 13px; }

select.form-control { cursor: pointer; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-sm); border: none;
  font-family: 'Cairo', sans-serif; font-size: 15px; font-weight: 900;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff; box-shadow: 0 4px 15px rgba(245,158,11,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,0.5); }

.btn-outline {
  background: transparent; color: var(--gold);
  border: 2px solid var(--border); 
}
.btn-outline:hover { background: var(--gold-dim); border-color: var(--gold); }

.btn-ghost {
  background: var(--bg2); color: var(--text); border: 1px solid var(--border2);
}
.btn-ghost:hover { background: var(--border2); }

.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 15px rgba(5,150,105,0.3); }
.btn-green:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 16px; }
.btn-full { width: 100%; }

/* ── BADGE / STATUS ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 800;
}
.badge-green { background: var(--green-dim); color: var(--green); }
.badge-red { background: var(--red-dim); color: var(--red); }
.badge-gold { background: var(--gold-dim); color: var(--gold); }
.badge-blue { background: var(--blue-dim); color: var(--blue); }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-item {
  display: flex; gap: 16px; align-items: flex-start;
  position: relative; padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line {
  position: absolute; right: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--border2);
}
.timeline-item.done .timeline-line { background: var(--green); }
.timeline-item.active .timeline-line { background: linear-gradient(180deg, var(--gold), var(--border2)); }

.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; border: 2px solid var(--border2);
  background: var(--card); position: relative; z-index: 1;
}
.timeline-item.done .timeline-dot { background: var(--green); border-color: var(--green); color: #fff; font-size: 16px; }
.timeline-item.active .timeline-dot {
  background: var(--gold-dim); border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  animation: pulse-dot 2s ease-in-out infinite;
}
.timeline-item.pending .timeline-dot { opacity: 0.4; }

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(245,158,11,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(245,158,11,0.1); }
}

.timeline-content { flex: 1; padding-top: 8px; }
.timeline-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.timeline-time { font-size: 12px; color: var(--muted); font-weight: 600; }
.timeline-desc { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.5; }

/* ── STATS ──────────────────────────────────────────────── */
.stat-box {
  text-align: center; padding: 28px 20px;
  background: var(--card); border: 1px solid var(--border2);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-num { font-size: clamp(32px, 5vw, 48px); font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 700; margin-top: 6px; }

/* ── PRICING TABLE ──────────────────────────────────────── */
.pricing-card {
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: 24px; padding: 32px 28px; text-align: center;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--gold); background: linear-gradient(135deg, rgba(245,158,11,0.05), transparent);
  transform: scale(1.04);
}
.pricing-card.featured::before {
  content: '⭐ الأشهر';
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 900;
  padding: 4px 16px; border-radius: 20px;
}
.pricing-name { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 8px; margin-top: 20px; }
.pricing-price { font-size: 42px; font-weight: 900; color: var(--gold); line-height: 1; }
.pricing-unit { font-size: 14px; color: var(--muted); font-weight: 700; }
.pricing-features { list-style: none; text-align: right; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--card); color: var(--text); padding: 14px 24px; border-radius: 14px;
  font-size: 14px; font-weight: 700; z-index: 99999;
  box-shadow: var(--shadow-lg); opacity: 0;
  transition: all 0.3s; white-space: nowrap; border: 1px solid var(--border2);
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── FOOTER ──────────────────────────────────────────────── */
.hesh-footer {
  background: var(--navy); border-top: none;
  padding: 60px 24px 30px; margin-top: 80px; box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
  color: #fff;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-name { font-size: 22px; font-weight: 900; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.footer-brand-desc { font-size: 14px; color: #94A3B8; line-height: 1.7; margin-bottom: 20px; }
.footer-col h5 { font-size: 14px; font-weight: 900; color: #F8FAFC; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: #94A3B8; font-size: 14px; font-weight: 600; margin-bottom: 8px; text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col a:hover { color: #fff; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #94A3B8; flex-wrap: wrap; gap: 8px; }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: #94A3B8; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  body:has(.mob-sticky-bar) { padding-bottom: var(--mob-bar-h); }
  .mob-sticky-bar { display: flex; }
  
  /* Navbar adjustments for mobile */
  .hesh-nav { 
    top: 0 !important; width: 100%; padding: 8px 12px; margin-top: 0 !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08), inset 0 0 0 1px rgba(255,255,255,0.2);
    border-radius: 0;
  }
  .nav-logo-text { display: none; } /* Show only logo icon to save space */
  .nav-links { display: none; }
  .nav-mob-toggle { display: flex; }
  
  /* Hide the top CTA button on mobile, users use the sticky bar instead */
  .btn-nav-cta { display: none; }
  .mob-sticky-bar { display: flex; }
  body { padding-bottom: calc(var(--mob-bar-h) + 15px); }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    margin-bottom: 5px;
  }
  .footer-inner { padding: 40px 16px 20px; }
  .footer-brand-name { font-size: 20px; }
  .footer-col h5 { font-size: 14px; margin-bottom: 12px; }
  .footer-col a { font-size: 13px; margin-bottom: 8px; }
  
  .footer-bottom { flex-direction: column; gap: 12px; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 50px 16px; }
  .page-hero, .b2b-hero { padding: 40px 16px 35px; }
  .pricing-card.featured { transform: scale(1); }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-muted { color: var(--muted); }
.fw-900 { font-weight: 900; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.text-blue { color: var(--blue); }

/* ── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 900; padding: 4px 10px;
  border-radius: 20px; white-space: nowrap;
}
.badge-gold { background: rgba(245,158,11,0.15); color: var(--gold); border: 1px solid rgba(245,158,11,0.3); }
.badge-green { background: rgba(5,150,105,0.12); color: var(--green); border: 1px solid rgba(5,150,105,0.25); }
.badge-blue { background: rgba(59,130,246,0.12); color: var(--blue); border: 1px solid rgba(59,130,246,0.25); }
.badge-red { background: rgba(220,38,38,0.12); color: var(--red); border: 1px solid rgba(220,38,38,0.25); }

/* ── PRICING CARDS ───────────────────────────────────────── */
.pricing-card {
  background: var(--card); border: 1.5px solid var(--border2);
  border-radius: 24px; padding: 32px 28px;
  display: flex; flex-direction: column; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.pricing-card.featured { background: var(--bg2); border-color: var(--gold); box-shadow: var(--shadow-lg); transform: scale(1.04); }
.pricing-card.featured * { color: var(--text); }
.pricing-card.featured .pricing-price { color: var(--gold) !important; }
.pricing-name { font-size: 14px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-price { font-size: 52px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.pricing-unit { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border2); }
.pricing-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 8px; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: var(--gold-light); }


/* -- MOBILE NAV LINKS OVERRIDE -- */
.nav-links-mobile { display: none; }

@media (max-width: 768px) {
  .nav-links, .nav-actions, .nav-mob-toggle {
    display: none !important;
  }
  .nav-links-mobile {
    display: flex !important;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    margin-right: auto;
  }
  .nav-links-mobile a {
    color: var(--text);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    white-space: nowrap;
    background: var(--bg2);
    border: 1px solid var(--border);
  }
  .nav-links-mobile a.primary {
    background: var(--gold);
    color: #fff;
    border: none;
  }
}


/* -- MOBILE SIZING & LAYOUT FIXES -- */
@media (max-width: 768px) {
  /* Stats grids horizontal */
  .stats-grid, .hero-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  /* Make footer smaller and more compact */
  footer, .main-footer {
    padding: 20px 0 !important;
  }
  .footer-inner {
    padding: 20px 16px 20px !important;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
  }
  .footer-top > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-brand-name {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}

