/* Virtual Vanguards - landing
   Shared by: ar/privacy-policy.html, ar/terms.html, privacy-policy.html, terms.html, tr/privacy-policy.html, tr/terms.html
   Edit here, not in the HTML. */

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

    :root {
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --secondary: #06b6d4;
      --dark: #0f172a;
      --darker: #020617;
      --card-bg: #0d1526;
      --border: rgba(255,255,255,0.08);
      --text-light: #cbd5e1;
      --text-muted: #94a3b8;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--darker);
      color: #fff;
      overflow-x: hidden;
      line-height: 1.7;
    }

    /* ===== NAV ===== */
    nav {
      position: fixed; top: 0; width: 100%;
      padding: 1.25rem 2rem;
      background: rgba(2, 6, 23, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    nav.scrolled {
      background: rgba(15, 23, 42, 0.97);
      padding: 0.9rem 2rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }

    .nav-container {
      max-width: 1400px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
    }

    .logo {
      font-size: 1.5rem; font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; text-decoration: none;
      letter-spacing: -0.5px;
    }

    .nav-back {
      display: inline-flex; align-items: center; gap: 0.5rem;
      color: var(--text-light); text-decoration: none;
      font-size: 0.9rem; font-weight: 500;
      padding: 0.55rem 1.25rem;
      border: 1px solid var(--border);
      border-radius: 50px;
      transition: all 0.25s;
    }

    .nav-back:hover {
      color: #fff;
      border-color: rgba(99,102,241,0.5);
      background: rgba(99,102,241,0.1);
    }

    /* ===== HERO ===== */
    .policy-hero {
      padding: 9rem 2rem 4rem;
      background: linear-gradient(180deg, rgba(99,102,241,0.08) 0%, transparent 100%);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }

    .policy-hero .tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(99,102,241,0.1);
      border: 1px solid rgba(99,102,241,0.3);
      padding: 0.45rem 1rem; border-radius: 50px;
      font-size: 0.82rem; font-weight: 600;
      color: var(--primary); margin-bottom: 1.5rem;
    }

    .policy-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 900; letter-spacing: -1.5px;
      line-height: 1.15; margin-bottom: 1rem;
    }

    .gradient-text {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .policy-hero .meta {
      color: var(--text-muted); font-size: 0.95rem;
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    }

    .policy-hero .meta i { color: var(--secondary); }

    /* ===== CONTENT LAYOUT ===== */
    .policy-content {
      max-width: 820px; margin: 0 auto;
      padding: 4rem 2rem 5rem;
    }

    /* Table of contents */
    .toc {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem 2rem;
      margin-bottom: 3.5rem;
    }

    .toc h2 {
      font-size: 1rem; font-weight: 700;
      color: var(--text-light); text-transform: uppercase;
      letter-spacing: 0.08em; margin-bottom: 1rem;
    }

    .toc ol {
      list-style: none; counter-reset: toc-counter;
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1.5rem;
    }

    .toc ol li {
      counter-increment: toc-counter;
      display: flex; align-items: center; gap: 0.6rem;
    }

    .toc ol li::before {
      content: counter(toc-counter, decimal-leading-zero);
      font-size: 0.75rem; font-weight: 700;
      color: var(--primary); flex-shrink: 0;
    }

    .toc ol li a {
      color: var(--text-light); text-decoration: none;
      font-size: 0.9rem; transition: color 0.2s;
    }

    .toc ol li a:hover { color: var(--secondary); }

    /* Section blocks */
    .policy-section {
      margin-bottom: 3rem;
      scroll-margin-top: 90px;
    }

    .section-header {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.25rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .section-icon {
      width: 42px; height: 42px; flex-shrink: 0;
      background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(6,182,212,0.2));
      border: 1px solid rgba(99,102,241,0.3);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--primary);
    }

    .policy-section h2 {
      font-size: 1.35rem; font-weight: 700;
      color: #fff;
    }

    .policy-section p {
      color: var(--text-light);
      font-size: 0.97rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .policy-section p:last-child { margin-bottom: 0; }

    .policy-section ul {
      list-style: none; margin: 0.75rem 0 1rem 0;
    }

    .policy-section ul li {
      color: var(--text-light);
      font-size: 0.97rem;
      padding: 0.4rem 0 0.4rem 1.6rem;
      position: relative;
      line-height: 1.7;
    }

    .policy-section ul li::before {
      content: '';
      position: absolute; left: 0; top: 0.75rem;
      width: 7px; height: 7px; border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
    }

    .policy-section ul li strong {
      color: #fff; font-weight: 600;
    }

    /* Highlight box */
    .highlight-box {
      background: rgba(99,102,241,0.08);
      border: 1px solid rgba(99,102,241,0.25);
      border-left: 3px solid var(--primary);
      border-radius: 0 12px 12px 0;
      padding: 1.1rem 1.4rem;
      margin: 1.25rem 0;
      color: var(--text-light);
      font-size: 0.93rem;
      line-height: 1.75;
    }

    .highlight-box strong { color: #fff; }

    /* External link styling */
    .policy-section a {
      color: var(--secondary);
      text-decoration: none;
      border-bottom: 1px solid rgba(6,182,212,0.3);
      transition: border-color 0.2s;
    }

    .policy-section a:hover { border-color: var(--secondary); }

    /* Contact card */
    .contact-card {
      background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(6,182,212,0.08));
      border: 1px solid rgba(99,102,241,0.25);
      border-radius: 16px;
      padding: 2rem;
      display: flex; align-items: center; gap: 1.5rem;
      margin-top: 1rem;
    }

    .contact-card-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: var(--primary);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: #fff;
    }

    .contact-card h3 {
      font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem;
    }

    .contact-card p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

    .contact-card a {
      display: inline-block; margin-top: 0.5rem;
      color: var(--secondary); font-weight: 600;
      font-size: 0.95rem; border: none;
    }

    /* ===== FOOTER ===== */
    footer {
      padding: 4rem 2rem 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-grid {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }

    .footer-about h3 {
      font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-about p { color: var(--text-light); line-height: 1.8; font-size: 0.93rem; }

    .footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

    .footer-social a {
      width: 40px; height: 40px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-light); text-decoration: none;
      transition: all 0.3s; font-size: 1rem;
    }

    .footer-links h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
    .footer-links ul { list-style: none; }
    .footer-links a {
      color: var(--text-light); text-decoration: none;
      display: block; padding: 0.5rem 0;
      font-size: 0.9rem; transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--primary); border: none; }

    .footer-bottom {
      max-width: 1400px; margin: 0 auto;
      padding-top: 2rem;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center; color: var(--text-muted);
      font-size: 0.87rem;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .policy-hero { padding: 8rem 1.25rem 3rem; }
      .policy-content { padding: 3rem 1.25rem 4rem; }
      .toc ol { grid-template-columns: 1fr; }
      .contact-card { flex-direction: column; text-align: center; }
      .footer-grid { grid-template-columns: 1fr; }
    }


/* ===== LANDING PAGE ======================================================
   Built on the legal-page chrome so nav and footer are identical to the rest
   of the site. Everything below is landing-page only.                      */

.lp-wrap { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.lp-narrow { max-width: 820px; }

/* ---- hero --------------------------------------------------------------- */
.lp-hero {
  position: relative; overflow: hidden;
  padding: 9rem 0 5rem; text-align: center;
}
.lp-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.lp-orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: .35;
}
.lp-orb-1 { width: 520px; height: 520px; background: var(--primary); top: -180px; left: -120px; }
.lp-orb-2 { width: 460px; height: 460px; background: var(--secondary); top: -80px; right: -140px; opacity: .22; }

.lp-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -.02em; margin: 1.4rem 0 1.3rem;
}
.lp-lede {
  max-width: 720px; margin: 0 auto 2.2rem;
  color: var(--text-light); font-size: 1.09rem; line-height: 1.8;
}

.lp-cta-row { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.lp-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.7rem; border-radius: 999px;
  font-size: .97rem; font-weight: 700; text-decoration: none;
  border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s;
}
.lp-btn i { font-size: .82em; transition: transform .2s; }
.lp-btn:hover i { transform: translateX(3px); }
.lp-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 10px 30px rgba(99,102,241,.32);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(99,102,241,.42); }
.lp-btn-ghost {
  background: rgba(255,255,255,.04); color: #fff;
  border-color: rgba(255,255,255,.14);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.09); }
.lp-btn-lg { padding: 1.1rem 2.2rem; font-size: 1.02rem; }

.lp-reassure {
  margin-top: 1.2rem; color: var(--text-muted);
  font-size: .87rem; display: flex; align-items: center;
  justify-content: center; gap: .45rem;
}
.lp-reassure i { color: #34d399; }

.lp-chips {
  list-style: none; margin: 2.8rem auto 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
}
.lp-chips li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--text-light); font-size: .86rem;
}
.lp-chips i { color: var(--secondary); font-size: .9em; }

/* ---- sections ----------------------------------------------------------- */
.lp-section { padding: 5.5rem 0; }
.lp-alt { background: rgba(255,255,255,.015); border-block: 1px solid var(--border); }

.lp-head { max-width: 780px; margin: 0 auto 3.2rem; text-align: center; }
.lp-tag {
  display: inline-block; margin-bottom: 1rem;
  padding: .32rem .85rem; border-radius: 999px;
  background: rgba(99,102,241,.12); border: 1px solid rgba(99,102,241,.3);
  color: #c7c9ff; font-size: .74rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase;
}
.lp-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800;
  line-height: 1.25; letter-spacing: -.015em; margin-bottom: 1rem; color: #fff;
}
.lp-head p { color: var(--text-light); font-size: 1.02rem; line-height: 1.8; }

/* ---- problem grid ------------------------------------------------------- */
.lp-problems { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.lp-problem {
  padding: 1.9rem; border-radius: 16px;
  background: var(--card-bg); border: 1px solid var(--border);
}
.lp-problem-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 1.1rem;
  background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.22);
  color: #f87171; font-size: 1.05rem;
}
.lp-problem h3 { font-size: 1.06rem; font-weight: 700; color: #fff; margin-bottom: .6rem; }
.lp-problem p { color: var(--text-light); font-size: .93rem; line-height: 1.75; }

/* ---- service cards ------------------------------------------------------ */
.lp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.lp-card {
  padding: 2rem; border-radius: 18px;
  background: var(--card-bg); border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
.lp-card:hover { border-color: rgba(99,102,241,.42); transform: translateY(-3px); }
.lp-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 1.2rem;
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(6,182,212,.14));
  border: 1px solid rgba(99,102,241,.26); color: #a5b4fc; font-size: 1.15rem;
}
.lp-card h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.lp-card > p { color: var(--text-light); font-size: .94rem; line-height: 1.75; margin-bottom: 1.1rem; }
.lp-examples { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); padding-top: 1rem; }
.lp-examples li {
  display: flex; align-items: flex-start; gap: .55rem;
  color: var(--text-muted); font-size: .87rem; padding: .28rem 0;
}
.lp-examples i { color: var(--secondary); font-size: .75em; margin-top: .38em; }

/* ---- principles --------------------------------------------------------- */
.lp-principles { display: grid; gap: 1.4rem; max-width: 900px; margin: 0 auto; }
.lp-principle {
  display: flex; gap: 1.3rem; padding: 2rem; border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(6,182,212,.05));
  border: 1px solid rgba(99,102,241,.2);
}
.lp-principle-icon {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(99,102,241,.16); color: #a5b4fc; font-size: 1.1rem;
}
.lp-principle h3 { font-size: 1.08rem; font-weight: 700; color: #fff; margin-bottom: .55rem; }
.lp-principle p { color: var(--text-light); font-size: .94rem; line-height: 1.78; }

/* ---- process ------------------------------------------------------------ */
.lp-steps { list-style: none; margin: 0 auto; padding: 0; max-width: 860px; }
.lp-step { display: flex; gap: 1.5rem; padding-bottom: 2.4rem; position: relative; }
.lp-step:not(:last-child)::before {
  content: ''; position: absolute; left: 23px; top: 52px; bottom: 8px;
  width: 1px; background: linear-gradient(180deg, rgba(99,102,241,.5), transparent);
}
.lp-step-no {
  flex-shrink: 0; width: 47px; height: 47px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card-bg); border: 1px solid rgba(99,102,241,.35);
  color: #a5b4fc; font-weight: 800; font-size: .87rem; z-index: 1;
}
.lp-step-body h3 {
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: .5rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: .7rem;
}
.lp-step-time {
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: var(--text-muted); padding: .2rem .6rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
}
.lp-step-body p { color: var(--text-light); font-size: .95rem; line-height: 1.78; }

/* ---- proof -------------------------------------------------------------- */
.lp-proof {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 3rem; align-items: center;
  padding: 2.8rem; border-radius: 20px;
  background: var(--card-bg); border: 1px solid var(--border);
}
.lp-proof h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.lp-proof p { color: var(--text-light); font-size: .98rem; line-height: 1.8; margin-bottom: 1rem; }
.lp-muted { color: var(--text-muted) !important; font-size: .92rem !important; }
.lp-inline-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--secondary); font-weight: 600; font-size: .95rem; text-decoration: none;
}
.lp-inline-link i { font-size: .78em; transition: transform .2s; }
.lp-inline-link:hover i { transform: translateX(3px); }

.lp-proof-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lp-fact {
  padding: 1.3rem 1rem; border-radius: 14px; text-align: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
}
.lp-fact-value {
  display: block; font-size: 1.7rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-fact-label { display: block; margin-top: .5rem; color: var(--text-muted); font-size: .78rem; line-height: 1.4; }

/* ---- deliverables ------------------------------------------------------- */
.lp-deliverables { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.lp-deliverables li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: 1.1rem 1.35rem; border-radius: 13px;
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--text-light); font-size: .96rem; line-height: 1.7;
}
.lp-deliverables i { color: #34d399; margin-top: .28em; flex-shrink: 0; }

/* ---- faq ---------------------------------------------------------------- */
.lp-faq { display: grid; gap: .8rem; }
.lp-faq-item {
  border-radius: 14px; background: var(--card-bg);
  border: 1px solid var(--border); overflow: hidden;
}
.lp-faq-item[open] { border-color: rgba(99,102,241,.35); }
.lp-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; cursor: pointer; list-style: none;
  color: #fff; font-weight: 650; font-size: 1rem; line-height: 1.5;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary i { color: var(--primary); font-size: .82rem; transition: transform .25s; flex-shrink: 0; }
.lp-faq-item[open] summary i { transform: rotate(45deg); }
.lp-faq-answer { padding: 0 1.5rem 1.4rem; }
.lp-faq-answer p { color: var(--text-light); font-size: .95rem; line-height: 1.8; margin: 0; }

/* ---- final cta ---------------------------------------------------------- */
.lp-final { padding: 5.5rem 0 6.5rem; text-align: center; }
.lp-final h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 900;
  color: #fff; margin-bottom: 1rem; letter-spacing: -.015em;
}
.lp-final > .lp-wrap > p {
  color: var(--text-light); font-size: 1.03rem; line-height: 1.8;
  max-width: 620px; margin: 0 auto 2rem;
}

/* ---- rtl ---------------------------------------------------------------- */
[dir="rtl"] .lp-step:not(:last-child)::before { left: auto; right: 23px; }
[dir="rtl"] .lp-examples i, [dir="rtl"] .lp-deliverables i { margin-left: 0; }
[dir="rtl"] .lp-btn:hover i, [dir="rtl"] .lp-inline-link:hover i { transform: translateX(-3px); }

/* ---- responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .lp-proof { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}
@media (max-width: 768px) {
  .lp-wrap { padding: 0 1.25rem; }
  .lp-hero { padding: 7rem 0 3.5rem; }
  .lp-section { padding: 4rem 0; }
  .lp-cta-row { flex-direction: column; }
  .lp-btn { justify-content: center; }
  .lp-principle { flex-direction: column; gap: 1rem; }
  .lp-proof-facts { grid-template-columns: 1fr 1fr; }
  .lp-final { padding: 4rem 0 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-btn, .lp-card, .lp-btn i, .lp-inline-link i { transition: none; }
  .lp-btn-primary:hover, .lp-card:hover { transform: none; }
}
