/* ===========================
   WOKI-TOKI.COM — Global CSS
   =========================== */

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

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

:root {
  --o: #f97316;
  --od: #ea580c;
  --surf: #161923;
  --surf2: #1e2235;
  --bdr: #272d45;
  --muted: #7b849e;
  --icom: #1a6fc4;
  --rug: #e8a020;
  --bg: #0c0e15;
  --text: #f0ede8;
  --text-soft: #b0aaa0;
}

body {
  font-family: 'Rubik', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---- NAV ---- */
nav {
  background: rgba(12, 14, 21, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bdr);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo { font-size: 1.35rem; font-weight: 900; color: #fff; text-decoration: none; letter-spacing: -0.5px; }
.logo span { color: var(--o); }

.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--o); color: #fff; border: none;
  padding: 0.45rem 1.1rem; border-radius: 8px;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--od); }

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--o); color: #fff; border: none;
  padding: 0.75rem 1.8rem; border-radius: 9px;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: background 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--od); }

.btn-secondary {
  background: transparent; color: #fff; border: 1.5px solid var(--bdr);
  padding: 0.75rem 1.8rem; border-radius: 9px;
  font-family: 'Rubik', sans-serif; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; transition: border-color 0.2s; text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--muted); }

/* ---- SECTION BASE ---- */
.section { padding: 3.5rem 2rem; }
.section--alt { background: var(--surf); }

.sec-head { text-align: center; margin-bottom: 2.5rem; }
.sec-head h2 { font-size: 1.65rem; font-weight: 700; margin-bottom: 0.4rem; }
.sec-head p { color: var(--muted); font-size: 0.9rem; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(249,115,22,.12); border: 1px solid rgba(249,115,22,.28);
  color: var(--o); font-size: 0.78rem; font-weight: 700;
  padding: 0.28rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.4rem; letter-spacing: 0.04em;
}

/* ---- TAG ---- */
.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 5px;
  background: rgba(249,115,22,.1); color: var(--o);
  letter-spacing: 0.04em;
}

/* ---- FOOTER ---- */
footer {
  background: #07080e;
  border-top: 1px solid var(--bdr);
  padding: 2rem;
  text-align: center;
}
.flogo { font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.flogo span { color: var(--o); }
.ftext { color: var(--muted); font-size: 0.82rem; line-height: 1.8; }
.flinks { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.flinks a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.flinks a:hover { color: var(--o); }
.fcopy { color: var(--muted); font-size: 0.72rem; margin-top: 1.25rem; }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--bdr); margin: 0 2rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .section { padding: 2.5rem 1rem; }
}
