/* ═══════════════════════════════════════════════════════════════════════════
   THWART ANTIVIRUS — Military-Grade Site CSS
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg:        #0b1711;
  --bg2:       #0f1e14;
  --panel:     #132318;
  --panel2:    #1a3426;
  --border:    #2a5038;
  --border2:   #3a6b4e;
  --green:     #2f8f5b;
  --green2:    #3daa6e;
  --green-lt:  #6fcf97;
  --gold:      #d4af37;
  --gold2:     #f0c940;
  --txt:       #e8f5e9;
  --txt2:      #b8d4be;
  --muted:     #7a9e85;
  --danger:    #e05252;
  --warn:      #e09a2a;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.45);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-lt); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--txt);
  margin-top: 0;
}

/* ── Top Strip ─────────────────────────────────────────────────────────── */
.top-strip {
  background: #060e09;
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .4px;
}
.top-strip a { color: var(--muted); }
.top-strip a:hover { color: var(--green-lt); }

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.nav-shell {
  background: rgba(11,23,17,.97) !important;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 10px 0;
}
.nav-shell .navbar-brand span {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--green-lt);
}
.nav-shell .nav-link {
  color: var(--txt2) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 14px !important;
  transition: color .2s;
}
.nav-shell .nav-link:hover,
.nav-shell .nav-link.active { color: var(--green-lt) !important; }
.nav-shell .btn-outline-success {
  border-color: var(--green);
  color: var(--green-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}
.nav-shell .btn-outline-success:hover { background: var(--green); color: #fff; }
.nav-shell .btn-success {
  background: var(--green);
  border-color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}
.nav-shell .btn-success:hover { background: var(--green2); border-color: var(--green2); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060e09 0%, #0b1711 40%, #0f2318 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(47,143,91,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,175,55,.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(47,143,91,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,143,91,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47,143,91,.12);
  border: 1px solid var(--border2);
  border-radius: 30px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-lt);
  margin-bottom: 20px;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--green-lt);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.7); }
}
.hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green-lt); }
.hero h1 .gold   { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--txt2);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── Stat Counters ──────────────────────────────────────────────────────── */
.stat-strip {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-lt);
  line-height: 1;
}
.stat-num .unit { font-size: 1.2rem; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; margin-top: 4px; }

/* ── Section Helpers ────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--bg2); }
.section-panel { background: var(--panel); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--txt2);
  font-size: 1rem;
  max-width: 600px;
}

/* ── Feature Cards ──────────────────────────────────────────────────────── */
.feat-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.feat-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(47,143,91,.18);
}
.feat-icon {
  width: 52px; height: 52px;
  background: rgba(47,143,91,.12);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat-icon svg, .feat-icon i { width: 26px; height: 26px; stroke: var(--green-lt); fill: none; stroke-width: 1.6; }
.feat-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: .9rem; color: var(--txt2); margin: 0; }

/* ── Pricing Cards ──────────────────────────────────────────────────────── */
.price-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  transition: border-color .25s, box-shadow .25s;
}
.price-card.featured {
  border-color: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 8px 40px rgba(47,143,91,.22);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 20px;
}
.price-plan { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--txt); line-height: 1; }
.price-amount .currency { font-size: 1.4rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--txt2); }
.price-amount .period { font-size: .95rem; color: var(--muted); font-weight: 400; }
.price-desc { font-size: .85rem; color: var(--muted); margin: 10px 0 20px; }
.price-features { list-style: none; padding: 0; margin: 0 0 auto; flex: 1; }
.price-features li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--txt2);
  display: flex; align-items: center; gap: 10px;
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; }
.price-card .price-btn { margin-top: 28px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-mil {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn-mil:hover { background: var(--green2); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(47,143,91,.35); }
.btn-mil-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--green-lt);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-mil-outline:hover { background: var(--green); color: #fff; }
.btn-gold {
  background: var(--gold);
  color: #0b1711;
  border: none;
  border-radius: var(--radius);
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { background: var(--gold2); color: #0b1711; }

/* ── Alert / Notice Boxes ───────────────────────────────────────────────── */
.alert-mil {
  background: rgba(47,143,91,.1);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--green-lt);
  font-size: .9rem;
}
.alert-danger-mil {
  background: rgba(224,82,82,.1);
  border: 1px solid rgba(224,82,82,.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #ffb5b5;
  font-size: .9rem;
}
.alert-warn-mil {
  background: rgba(224,154,42,.1);
  border: 1px solid rgba(224,154,42,.4);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #ffd580;
  font-size: .9rem;
}

/* ── Cards / Panels ─────────────────────────────────────────────────────── */
.card-mil {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-mil-sm {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-mil label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-mil input,
.form-mil select,
.form-mil textarea {
  width: 100%;
  background: #0c1812;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--txt);
  padding: 11px 14px;
  font-size: 14px;
  transition: border-color .2s;
  outline: none;
}
.form-mil input:focus,
.form-mil select:focus,
.form-mil textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(47,143,91,.15); }
.form-mil textarea { resize: vertical; min-height: 110px; }
.form-mil select option { background: #0c1812; }

/* ── Tables ─────────────────────────────────────────────────────────────── */
.table-mil {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.table-mil th {
  background: var(--panel);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.table-mil td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--txt2);
  vertical-align: middle;
}
.table-mil tr:last-child td { border-bottom: none; }
.table-mil tr:hover td { background: rgba(47,143,91,.05); }

/* ── Badges ─────────────────────────────────────────────────────────────── */
.badge-mil {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .4px;
}
.badge-green  { background: rgba(47,143,91,.2);  color: var(--green-lt); border: 1px solid rgba(47,143,91,.4); }
.badge-gold   { background: rgba(212,175,55,.15); color: var(--gold2);   border: 1px solid rgba(212,175,55,.4); }
.badge-red    { background: rgba(224,82,82,.15);  color: #ffb5b5;        border: 1px solid rgba(224,82,82,.4); }
.badge-muted  { background: rgba(122,158,133,.1); color: var(--muted);   border: 1px solid rgba(122,158,133,.3); }

/* ── Tabs ───────────────────────────────────────────────────────────────── */
.tabs-mil { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .4px;
  padding: 10px 18px;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px;
}
.tab-btn.active { color: var(--green-lt); border-bottom-color: var(--green); }
.tab-btn:hover { color: var(--txt); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ── Checkout Steps ─────────────────────────────────────────────────────── */
.checkout-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.checkout-step .step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.checkout-step.done .step-num { background: var(--green); border-color: var(--green); color: #fff; }
.checkout-step.active .step-num { background: var(--panel2); border-color: var(--green); color: var(--green-lt); }
.checkout-step.active { color: var(--txt); }
.step-divider { flex: 1; height: 1px; background: var(--border); }

/* ── Certification Grid ─────────────────────────────────────────────────── */
.cert-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.cert-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.cert-card img { width: 100%; height: 180px; object-fit: contain; background: #0c1812; padding: 20px; }
.cert-card-body { padding: 16px 18px; }
.cert-card-body h5 { font-size: .95rem; margin-bottom: 4px; }
.cert-card-body .cert-meta { font-size: .8rem; color: var(--muted); }

/* ── Vendor Benefits ────────────────────────────────────────────────────── */
.benefit-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  height: 100%;
  transition: border-color .25s;
}
.benefit-card:hover { border-color: var(--gold); }
.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.footer-shell {
  background: #060e09;
  color: var(--txt2);
  padding-top: 0;
}
.footer-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-shell a {
  display: block;
  color: var(--txt2);
  font-size: 13px;
  margin-bottom: 7px;
  transition: color .2s;
}
.footer-shell a:hover { color: var(--green-lt); }

/* ── Ticket Thread ──────────────────────────────────────────────────────── */
.ticket-msg {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.ticket-msg.admin-reply { border-left: 3px solid var(--gold); }
.ticket-msg.client-reply { border-left: 3px solid var(--green); }
.ticket-meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; }

/* ── Download Page ──────────────────────────────────────────────────────── */
.dl-card {
  background: var(--panel2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: border-color .25s;
}
.dl-card:hover { border-color: var(--green); }
.dl-icon { font-size: 3rem; margin-bottom: 14px; }
.dl-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.dl-card p { font-size: .88rem; color: var(--muted); margin-bottom: 20px; }

/* ── KPI Cards ──────────────────────────────────────────────────────────── */
.kpi-card {
  background: linear-gradient(160deg, rgba(26,52,38,.9), rgba(19,35,24,.95));
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.kpi-label { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.kpi-value { font-size: 2rem; font-weight: 900; color: var(--txt); line-height: 1; }
.kpi-sub { font-size: .8rem; color: var(--muted); margin-top: 4px; }

/* ── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #060e09 0%, #0b1711 60%, #0f2318 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(47,143,91,.09) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: var(--txt2); font-size: 1rem; max-width: 600px; margin: 0; }

/* ── Scrollbar ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── Utilities ──────────────────────────────────────────────────────────── */
.text-green  { color: var(--green-lt) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted-mil { color: var(--muted) !important; }
.text-danger-mil { color: var(--danger) !important; }
.bg-panel    { background: var(--panel) !important; }
.bg-panel2   { background: var(--panel2) !important; }
.border-mil  { border-color: var(--border) !important; }
.divider-mil { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.mono        { font-family: 'Courier New', monospace; letter-spacing: .5px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero { min-height: auto; padding: 80px 0 60px; }
  .section { padding: 56px 0; }
  .nav-shell .nav-link { padding: 8px 12px !important; }
}
@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .stat-num { font-size: 1.7rem; }
  .price-card { margin-bottom: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-mil, .hero-cta .btn-mil-outline { text-align: center; justify-content: center; }
}
