/* =========================================================
   SOKONI Legal & Public Pages — Shared Stylesheet v1.0
   Used by: about, contact, faq, cookie-policy, refund-policy,
            returns-policy, seller-terms, provider-terms,
            community-guidelines, payment-security, careers,
            press, privacy, terms, data-deletion, help
   ========================================================= */

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

:root {
  --accent:   #71ff00;
  --bg:       #0a0a0a;
  --surface:  rgba(255,255,255,.04);
  --border:   rgba(255,255,255,.08);
  --text:     #e0e0e0;
  --muted:    rgba(255,255,255,.55);
  --green-lt: rgba(113,255,0,.08);
  --green-br: rgba(113,255,0,.15);
  --blue:     #1565c0;
  --gold:     #f9a825;
  --red:      #c62828;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Top nav ───────────────────────────────────────────── */
.sk-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.sk-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.sk-nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.sk-nav-logo img { width: 32px; height: 32px; border-radius: 8px; object-fit: contain; }
.sk-nav-logo span { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -.3px; }
.sk-nav-links { display: flex; align-items: center; gap: 20px; }
.sk-nav-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: color .18s;
}
.sk-nav-links a:hover { color: #fff; }
.sk-nav-links a.active { color: var(--accent); }
.sk-nav-home-btn {
  background: var(--accent); color: #000;
  padding: 8px 18px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: opacity .18s;
}
.sk-nav-home-btn:hover { opacity: .85; color: #000; }
@media (max-width: 640px) { .sk-nav-links { display: none; } }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0d1a00 0%, #0a0a0a 60%);
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(113,255,0,.1);
}
.hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(113,255,0,.1);
  border: 1px solid rgba(113,255,0,.2);
  border-radius: 20px;
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 46px);
  color: #fff; font-weight: 800;
  margin-bottom: 12px; line-height: 1.15;
}
.hero p { color: var(--muted); font-size: 14px; }
.hero p a { color: var(--accent); text-decoration: none; }

/* ── Page layout ───────────────────────────────────────── */
.page { max-width: 880px; margin: 0 auto; padding: 48px 24px 80px; }
.page-wide { max-width: 1100px; margin: 0 auto; padding: 48px 24px 80px; }

/* ── Table of contents ─────────────────────────────────── */
.toc {
  background: rgba(113,255,0,.04);
  border: 1px solid rgba(113,255,0,.1);
  border-radius: 14px; padding: 24px 28px; margin-bottom: 40px;
}
.toc-label {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 1px; color: var(--accent);
  font-weight: 700; margin-bottom: 14px;
}
.toc ol { padding-left: 18px; columns: 2; gap: 16px; }
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 14px; transition: color .18s; }
.toc a:hover { color: var(--accent); }
@media (max-width: 500px) { .toc ol { columns: 1; } }

/* ── Sections ──────────────────────────────────────────── */
.section { margin-bottom: 40px; }
.section h2 {
  font-size: 21px; color: #fff; font-weight: 700;
  padding-left: 14px; border-left: 3px solid var(--accent);
  margin-bottom: 20px;
}
.section h3 { font-size: 16px; color: rgba(255,255,255,.85); font-weight: 600; margin: 24px 0 10px; }
.section h4 { font-size: 14px; color: var(--accent); font-weight: 700; margin: 16px 0 8px; text-transform: uppercase; letter-spacing: .5px; }
.section p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.section li { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 5px; }
.section ul { padding-left: 20px; margin-bottom: 14px; }
.section ol { padding-left: 20px; margin-bottom: 14px; }
.section a { color: var(--accent); text-decoration: none; }
.section a:hover { text-decoration: underline; }
.section strong { color: #fff; }

.divider { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* ── Cards & boxes ─────────────────────────────────────── */
.info-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 26px; margin: 20px 0;
}
.info-card h3 { font-size: 15px; color: #fff; font-weight: 700; margin-bottom: 10px; }
.info-card p, .info-card li { font-size: 14px; color: var(--muted); line-height: 1.7; }
.info-card ul { padding-left: 18px; }
.info-card a { color: var(--accent); text-decoration: none; }

.contact-card {
  background: rgba(113,255,0,.05);
  border: 1px solid rgba(113,255,0,.12);
  border-radius: 14px; padding: 24px 28px; margin: 20px 0;
}
.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 6px; }
.contact-card a { color: var(--accent); text-decoration: none; }
.contact-card strong { color: #fff; }

.highlight-box {
  background: rgba(113,255,0,.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px; margin: 20px 0;
}
.highlight-box p { font-size: 14px; color: var(--muted); margin: 0; }

.warning-box {
  background: rgba(198,40,40,.06);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px; margin: 20px 0;
}
.warning-box p { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }

/* ── Badge chips ───────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 2px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.badge-g { background: rgba(113,255,0,.15); color: var(--accent); border: 1px solid rgba(113,255,0,.25); }
.badge-b { background: rgba(21,101,192,.2); color: #64b5f6; border: 1px solid rgba(21,101,192,.3); }
.badge-y { background: rgba(249,168,37,.15); color: var(--gold); border: 1px solid rgba(249,168,37,.25); }
.badge-r { background: rgba(198,40,40,.15); color: #ef9a9a; border: 1px solid rgba(198,40,40,.25); }

/* ── Grid layouts ──────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px; margin: 24px 0;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin: 24px 0;
}
@media (max-width: 700px) { .card-grid-3 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
}
.feature-card .fc-icon { font-size: 28px; margin-bottom: 12px; }
.feature-card h3 { font-size: 15px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FAQ accordion ─────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; background: var(--surface);
  border: none; cursor: pointer; text-align: left;
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  color: #fff; font-size: 15px; font-weight: 600;
  transition: background .18s;
}
.faq-q:hover { background: rgba(255,255,255,.06); }
.faq-q .faq-arrow { color: var(--accent); font-size: 18px; transition: transform .25s; flex-shrink: 0; margin-left: 12px; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 20px 18px;
  font-size: 14px; color: var(--muted); line-height: 1.75;
}
.faq-a.open { display: block; }
.faq-a a { color: var(--accent); text-decoration: none; }

/* ── Contact icons ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px; margin: 24px 0;
}
.contact-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 18px; text-align: center;
  text-decoration: none; transition: border-color .2s, background .2s;
  display: block;
}
.contact-tile:hover { border-color: rgba(113,255,0,.3); background: rgba(113,255,0,.04); }
.contact-tile .ct-icon { font-size: 32px; margin-bottom: 10px; }
.contact-tile .ct-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-tile .ct-value { font-size: 12px; color: var(--accent); word-break: break-all; }
.contact-tile .ct-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }

/* ── Team / profile cards ──────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin: 24px 0; }
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 16px; text-align: center;
}
.team-card .tc-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-lt); border: 2px solid rgba(113,255,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin: 0 auto 12px;
}
.team-card .tc-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.team-card .tc-role { font-size: 12px; color: var(--muted); }

/* ── Timeline ──────────────────────────────────────────── */
.timeline { margin: 24px 0; }
.tl-item { display: flex; gap: 16px; margin-bottom: 24px; position: relative; }
.tl-item::before {
  content: ''; position: absolute; left: 12px; top: 28px;
  width: 1px; height: calc(100% + 8px);
  background: var(--border);
}
.tl-item:last-child::before { display: none; }
.tl-dot {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-lt); border: 2px solid rgba(113,255,0,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--accent); font-weight: 800;
  margin-top: 2px; z-index: 1;
}
.tl-content { flex: 1; }
.tl-year { font-size: 12px; color: var(--accent); font-weight: 700; margin-bottom: 2px; }
.tl-desc { font-size: 14px; color: var(--muted); }

/* ── Stat blocks ───────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; margin: 28px 0; }
.stat-block { text-align: center; }
.stat-block .sb-num { font-size: 32px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-block .sb-label { font-size: 13px; color: var(--muted); }

/* ── Trust pills (payment security) ───────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.trust-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 18px; display: flex;
  align-items: flex-start; gap: 14px;
}
.trust-tile .tt-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.trust-tile h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.trust-tile p { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── Job listings ──────────────────────────────────────── */
.job-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 26px; margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.job-card:hover { border-color: rgba(113,255,0,.3); background: rgba(113,255,0,.04); }
.job-card .jc-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.job-card .jc-meta { font-size: 12px; color: var(--muted); }
.job-card .jc-type { font-size: 12px; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── Comprehensive footer ──────────────────────────────── */
.sk-footer {
  background: rgba(255,255,255,.025);
  border-top: 1px solid var(--border);
  padding: 40px 24px 28px;
}
.sk-footer-inner { max-width: 1100px; margin: 0 auto; }
.sk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
@media (max-width: 800px) { .sk-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sk-footer-grid { grid-template-columns: 1fr; } }

.sk-footer-brand .fb-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-bottom: 10px; }
.sk-footer-brand .fb-logo img { width: 28px; height: 28px; object-fit: contain; }
.sk-footer-brand .fb-logo span { font-size: 16px; font-weight: 800; color: #fff; }
.sk-footer-brand .fb-tagline { font-size: 13px; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.sk-footer-brand .fb-social { display: flex; gap: 10px; flex-wrap: wrap; }
.sk-footer-brand .fb-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none;
  transition: border-color .18s;
}
.sk-footer-brand .fb-social a:hover { border-color: rgba(113,255,0,.4); }

.sk-footer-col h4 {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 14px;
}
.sk-footer-col a {
  display: block; color: var(--muted);
  text-decoration: none; font-size: 13px;
  margin-bottom: 9px; transition: color .18s;
}
.sk-footer-col a:hover { color: #fff; }

.sk-footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.sk-footer-bottom .fb-copy { font-size: 12px; color: rgba(255,255,255,.3); }
.sk-footer-bottom .fb-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.sk-footer-bottom .fb-trust span {
  font-size: 11px; color: rgba(255,255,255,.3);
  display: flex; align-items: center; gap: 5px;
}
