/* =====================================================
   AlTariq Website — style.css
   Premium Arabic RTL Design System
   ===================================================== */

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

/* ---- CSS Variables ---- */
:root {
  --gold:        #d4a843;
  --gold-light:  #f0c96e;
  --gold-dark:   #a07820;
  --green:       #0d7c3a;
  --green-dark:  #084d24;
  --green-light: #16a34a;
  --bg-dark:     #07110d;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-hover: rgba(255,255,255,0.08);
  --text-main:   #f0f4f0;
  --text-muted:  #9ab09e;
  --border:      rgba(212,168,67,0.2);
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-gold: 0 0 40px rgba(212,168,67,0.18);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.35);
  --transition:  0.38s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', 'Cairo', sans-serif;
  direction: rtl;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

/* =====================================================
   UTILITY CLASSES
   ===================================================== */
.container     { width: 90%; max-width: 1200px; margin: auto; }
.container-sm  { width: 90%; max-width: 850px; margin: auto; }
.text-gold     { color: var(--gold); }
.text-green    { color: var(--green-light); }
.text-muted    { color: var(--text-muted); }
.badge         { display: inline-block; padding: 4px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700; letter-spacing:.03em; }
.badge-gold    { background: linear-gradient(135deg,var(--gold-dark),var(--gold)); color: #000; }
.badge-green   { background: linear-gradient(135deg,var(--green-dark),var(--green-light)); color: #fff; }
.section-label { text-align: center; margin-bottom: 14px; }
.section-title { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; text-align: center; line-height: 1.2; margin-bottom: 16px; }
.section-sub   { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 60px; }
section        { padding: 100px 0; }
.divider       { width: 60px; height: 4px; background: linear-gradient(90deg, var(--gold), var(--green-light)); border-radius: 2px; margin: 0 auto 20px; }

/* Text gradient */
.gradient-text {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 700;
  transition: var(--transition); text-align: center; white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212,168,67,0.5);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
}
.btn-green:hover { transform: translateY(-3px); filter: brightness(1.1); }

/* Glass card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,168,67,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold), var(--shadow-card);
}

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(7,17,13,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.6rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-logo span { color: var(--green-light); -webkit-text-fill-color: var(--green-light); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-weight: 600; font-size: .95rem; color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; right: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2.5px; background: var(--gold); border-radius: 2px; transition: var(--transition); }

/* =====================================================
   HERO
   ===================================================== */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13,124,58,0.2) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 60%, rgba(212,168,67,0.12) 0%, transparent 60%),
              linear-gradient(180deg, #07110d 0%, #0a1a10 100%);
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--gold);
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .3; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-badge { margin-bottom: 24px; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.9;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 700px; margin: 0 auto;
}
.hero-stat {
  padding: 24px;
  text-align: center;
}
.hero-stat .num {
  font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat .label { font-size: .9rem; color: var(--text-muted); margin-top: 4px; }

/* Floating shapes */
.hero-shapes { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse-shape 6s ease-in-out infinite alternate;
}
.shape-1 { width: 400px; height: 400px; background: rgba(13,124,58,0.15); top: -10%; right: -10%; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: rgba(212,168,67,0.1); bottom: 10%; left: -8%; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: rgba(22,163,74,0.12); top: 40%; left: 60%; animation-delay: 4s; }
@keyframes pulse-shape { from { transform: scale(1); } to { transform: scale(1.2); } }

/* =====================================================
   STATS BAR
   ===================================================== */
#stats-bar {
  padding: 0;
  background: linear-gradient(90deg, rgba(13,124,58,0.08), rgba(212,168,67,0.05), rgba(13,124,58,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 36px 20px;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.stat-item:first-child { border-right: none; }
.stat-item:hover { background: var(--bg-card); }
.stat-num {
  font-size: 2.5rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: .9rem; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* =====================================================
   FEATURES
   ===================================================== */
#features { background: linear-gradient(180deg, transparent, rgba(13,124,58,0.04), transparent); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 36px 28px;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 4px; height: 0;
  background: linear-gradient(180deg, var(--gold), var(--green-light));
  transition: var(--transition);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.feature-card:hover::before { height: 100%; }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(13,124,58,0.3);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 4px 20px rgba(212,168,67,0.35);
  transform: rotate(-6deg) scale(1.1);
}
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: .92rem; color: var(--text-muted); line-height: 1.8; }

/* =====================================================
   SCREENSHOTS
   ===================================================== */
#screenshots { background: linear-gradient(180deg, transparent, rgba(212,168,67,0.03), transparent); }
.screenshots-slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.slides-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%; position: relative;
  overflow: hidden; border-radius: var(--radius-lg);
}
.slide img { width: 100%; height: auto; border-radius: var(--radius-lg); }
.slide-placeholder {
  width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 24px;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--bg-card); cursor: pointer; color: var(--gold); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--border);
  cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }
.screenshot-tabs {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px;
}
.tab-btn {
  padding: 10px 24px; border-radius: 50px;
  border: 1.5px solid var(--border); background: transparent;
  color: var(--text-muted); font-family: inherit; font-size: .9rem;
  font-weight: 600; cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; border-color: var(--gold);
}

/* =====================================================
   PRICING
   ===================================================== */
#pricing { background: linear-gradient(180deg, transparent, rgba(13,124,58,0.05), transparent); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 56px;
}
.toggle-label { font-weight: 600; color: var(--text-muted); transition: var(--transition); }
.toggle-label.active { color: var(--text-main); }
.toggle-switch {
  width: 56px; height: 28px; border-radius: 999px;
  background: var(--border);
  border: 2px solid var(--border);
  cursor: pointer; position: relative; transition: var(--transition);
}
.toggle-switch.on { background: var(--green-dark); border-color: var(--green-light); }
.toggle-thumb {
  position: absolute; top: 2px; right: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold);
  transition: var(--transition);
}
.toggle-switch.on .toggle-thumb { right: 30px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; align-items: stretch;
}
.pricing-card {
  padding: 40px 32px; position: relative; overflow: hidden;
}
.pricing-card.popular {
  border-color: rgba(212,168,67,0.5);
  background: linear-gradient(135deg, rgba(212,168,67,0.06), rgba(13,124,58,0.06));
}
.popular-badge {
  position: absolute; top: 20px; left: 20px;
  padding: 4px 14px; background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; border-radius: 50px; font-size: .78rem; font-weight: 700;
}
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  opacity: 0;
  transition: var(--transition);
}
.pricing-card.popular::before,
.pricing-card:hover::before { opacity: 1; }
.plan-name { font-size: 1.1rem; font-weight: 700; color: var(--text-muted); margin-bottom: 8px; }
.plan-price {
  font-size: 3rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.plan-price sup { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan-period { font-size: .9rem; color: var(--text-muted); margin: 8px 0 24px; }
.plan-divider { height: 1px; background: var(--border); margin: 24px 0; }
.plan-features { list-style: none; margin-bottom: 36px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: .95rem; color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.plan-features li i { color: var(--green-light); flex-shrink: 0; }
.plan-features li.disabled { opacity: .4; }
.plan-features li.disabled i { color: var(--text-muted); }
.plan-btn { width: 100%; justify-content: center; }

/* =====================================================
   SUBDOMAINS
   ===================================================== */
#subdomains {
  background: linear-gradient(180deg, transparent, rgba(212,168,67,0.03), transparent);
}
.subdomains-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.subdomain-card {
  padding: 28px 24px; text-align: center;
}
.subdomain-icon {
  width: 56px; height: 56px; border-radius: 14px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.subdomain-card:nth-child(1) .subdomain-icon { background: linear-gradient(135deg,#1a3d2b,#16a34a); }
.subdomain-card:nth-child(2) .subdomain-icon { background: linear-gradient(135deg,#3d2a00,#d4a843); }
.subdomain-card:nth-child(3) .subdomain-icon { background: linear-gradient(135deg,#1a1a3d,#6366f1); }
.subdomain-card:nth-child(4) .subdomain-icon { background: linear-gradient(135deg,#3d0016,#ef4444); }
.subdomain-card:nth-child(5) .subdomain-icon { background: linear-gradient(135deg,#0d3d3d,#06b6d4); }
.subdomain-url {
  font-size: .82rem; font-family: monospace;
  color: var(--gold); background: rgba(212,168,67,0.08);
  padding: 4px 10px; border-radius: 6px;
  display: inline-block; margin-bottom: 10px;
}
.subdomain-desc { font-size: .88rem; color: var(--text-muted); }

/* =====================================================
   CTA SECTION
   ===================================================== */
#cta {
  padding: 80px 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(13,124,58,0.2) 0%, transparent 70%);
}
.cta-box {
  text-align: center; padding: 72px 40px;
  background: linear-gradient(135deg, rgba(212,168,67,0.06) 0%, rgba(13,124,58,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse 40% 40% at 50% 50%, rgba(212,168,67,0.06), transparent);
  animation: rotate-glow 12s linear infinite;
}
@keyframes rotate-glow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-sub { color: var(--text-muted); max-width: 500px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =====================================================
   FOOTER
   ===================================================== */
#footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: .92rem; margin-top: 14px; line-height: 1.9; max-width: 280px; }
.footer-logo { font-size: 1.8rem; font-weight: 900; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--text-main); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-muted); font-size: .92rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-right: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .88rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .9rem;
  transition: var(--transition); cursor: pointer;
}
.social-link:hover { background: var(--gold); color: #000; border-color: var(--gold); }

/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =====================================================
   ADMIN PANEL STYLES
   ===================================================== */
.admin-body {
  background: #0a0f0a;
  min-height: 100vh;
  direction: rtl;
}
.admin-login {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.admin-login-box {
  width: 100%; max-width: 420px;
  padding: 48px 40px;
  color: var(--text-main);
}
.admin-logo-text { font-size: 2rem; font-weight: 900; margin-bottom: 8px; text-align: center; }
.admin-logo-sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 8px; color: var(--text-muted); }
.form-input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06); border: 1.5px solid var(--border);
  color: var(--text-main); font-family: inherit; font-size: 1rem;
  transition: var(--transition); outline: none;
}
.form-input:focus { border-color: var(--gold); background: rgba(212,168,67,0.05); }
.admin-sidebar {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 260px; background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  padding: 0;
  z-index: 100;
  display: flex; flex-direction: column;
}
.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}
.sidebar-nav { flex: 1; padding: 20px 12px; }
.sidebar-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius);
  color: var(--text-muted); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); margin-bottom: 4px;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: rgba(212,168,67,0.1); color: var(--gold);
}
.sidebar-nav-item i { width: 20px; text-align: center; }
.admin-main { margin-right: 260px; min-height: 100vh; padding: 32px; }
.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 24px; margin-bottom: 32px;
}
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 28px; }
.pricing-editor-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.editor-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.editor-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--gold); }
.features-editor { margin-top: 16px; }
.feature-input-row {
  display: flex; gap: 8px; align-items: center; margin-bottom: 8px;
}
.feature-input-row input { flex: 1; }
.remove-feature-btn {
  width: 32px; height: 32px; border-radius: 8px; border: none;
  background: rgba(239,68,68,0.1); color: #ef4444;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.remove-feature-btn:hover { background: rgba(239,68,68,0.2); }
.add-feature-btn {
  margin-top: 8px; padding: 8px 16px; border-radius: 8px;
  border: 1px dashed var(--border); background: transparent;
  color: var(--text-muted); font-family: inherit; font-size: .85rem;
  cursor: pointer; transition: var(--transition); width: 100%;
}
.add-feature-btn:hover { border-color: var(--gold); color: var(--gold); }
.save-btn {
  margin-top: 20px; width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000; border: none; border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.save-btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.toast {
  position: fixed; bottom: 30px; left: 30px;
  background: var(--green-dark); color: #fff;
  border: 1px solid var(--green-light);
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 600; z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-right: 220px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .admin-sidebar { display: none; }
  .admin-main { margin-right: 0; }
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Whatsapp float */
.whatsapp-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #128c7e, #25d366);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: whatsapp-pulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,0.7); }
}
