/* ═══════════════════════════════════════════════════════
   WARDSCOPE® — GLOBAL STYLESHEET
   wardscope.css  |  wardscope.com
   Link this in every page <head> AFTER Google Fonts:
   <link rel="stylesheet" href="wardscope.css">
   Then remove the <style>...</style> block from the page.
═══════════════════════════════════════════════════════ */

/* ── BRAND COLOURS & TOKENS ────────────────────────── */
:root {
  --nav-bg:  #1A3843;
  --nav-text:#ffffff;
  --accent:  #1579B5;
  --bg:      #F4F7F9;
  --text:    #1A3843;
  --border:  #C8DCF0;
  --muted:   #A4ABB1;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   NAV BAR — 9-column grid, 110px, dark navy
   Add class="ws-nav" to <nav>
   Add class="ws-nav-inner" to inner div
   Add class="ws-nav-links" to <ul>
   Mark current page link with class="active"
═══════════════════════════════════════════════════════ */
.ws-nav {
  background: var(--nav-bg);
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.ws-nav-inner {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  width: 100%;
  height: 110px;
}
.ws-nav-links {
  display: contents;
  list-style: none;
}
.ws-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  height: 110px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transition: background 0.2s;
  padding: 0 0.3rem;
}
.ws-nav-links a:hover,
.ws-nav-links a.active {
  background: #1579B5;
  border-color: #1579B5;
}

/* Hamburger — mobile only */
.ws-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.ws-nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .ws-nav-hamburger { display: flex; }
  .ws-nav-inner { grid-template-columns: 1fr; height: auto; }
  .ws-nav-links { display: none; flex-direction: column; }
  .ws-nav-links.open { display: flex; }
  .ws-nav-links a {
    height: auto;
    padding: 14px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    min-width: unset;
  }
}

/* ── MAIN CONTENT OFFSET ────────────────────────────── */
.main-content { margin-top: 110px; padding-top: 0; }

/* ═══════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 2rem 1rem 0 1rem;
  background: white;
  border-bottom: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-img {
  width: 550px;
  max-width: 90vw;
  height: auto;
  margin: 0 auto;
  display: block;
}
.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: 4px;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.hero-subtitle {
  font-size: 1.6rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hero-desc {
  font-size: 1.6rem;
  color: #444;
  max-width: 680px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SECTION LABEL BAR
═══════════════════════════════════════════════════════ */
.section-label {
  background: var(--bg);
  padding: 0.7rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.section-label span {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  letter-spacing: 0.25em;
  color: var(--text);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   CARDS GRID
═══════════════════════════════════════════════════════ */
.cards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border);
}
.card {
  background: white;
  padding: 2rem 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
  min-height: 280px;
}
.card:last-child { border-right: none; }
.card:hover { background: var(--bg); }
.card.placeholder { cursor: default; opacity: 0.5; }
.card-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 32px;
}
.card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card p {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.card-btn {
  background: var(--text);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.card-btn:hover  { background: var(--accent); }
.card-btn.blue   { background: var(--accent); }
.card-btn.outline {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
}

@media (max-width: 900px) {
  .cards-row { grid-template-columns: repeat(2, 1fr); }
  .card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
}
@media (max-width: 500px) {
  .cards-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: var(--nav-bg);
  color: #A4ABB1;
  padding: 1.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #8EA8B8; text-decoration: none; font-size: 1.3rem; }
.footer-links a:hover { color: #1579B5; }
footer p { font-size: 1.3rem; }

/* ═══════════════════════════════════════════════════════
   STANDARD HERO — logo fixed, page-title and subtitle vary
═══════════════════════════════════════════════════════ */
.ws-hero {
  background: white;
  border-bottom: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem 3rem 1rem;
}
.ws-hero img {
  width: 400px;
  max-width: 80vw;
  height: auto;
  margin: 1rem auto 0.5rem;
  display: block;
  pointer-events: none;
}
.ws-hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
}
.ws-hero-title span { color: var(--accent); }
.ws-hero-subtitle {
  font-size: 1.4rem;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ws-hero-desc {
  font-size: 1.3rem;
  color: #444;
  max-width: 700px;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.ws-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  margin: 0.4rem;
  transition: background 0.2s, transform 0.15s;
}
.ws-hero-btn:hover { background: #1060a0; transform: translateY(-2px); }
.ws-hero-btn.outline {
  background: none;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.ws-hero-btn.outline:hover { background: var(--accent); color: #fff; }

/* ═══════════════════════════════════════════════════════
   8-CARD GRID — 4 columns, centred, equal spacing
═══════════════════════════════════════════════════════ */
.cards-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
  background: var(--bg);
  padding: 2rem 4%;
  gap: 1.5rem;
  justify-items: center;
}
.cards-grid-8 .card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.15s;
  border-right: none;
  min-height: 300px;
}
.cards-grid-8 .card:hover {
  box-shadow: 0 6px 20px rgba(21,121,181,0.15);
  transform: translateY(-2px);
  background: white;
}
@media (max-width: 1100px) { .cards-grid-8 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards-grid-8 { grid-template-columns: 1fr; } }

/* Hero buttons — single row, centred */
.ws-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════
   PC PAGE — PRICING SECTION
═══════════════════════════════════════════════════════ */
.pricing-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 5%;
  background: var(--bg);
  border-bottom: 3px solid var(--accent);
}
.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  justify-content: space-between;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 20px rgba(21,121,181,0.18);
}
.price-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}
.price-amount {
  font-family: 'Orbitron', monospace;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
/* price-sub */
.price-sub {
  font-size: 1.6rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.price-card ul {
  list-style: none;
  width: 100%;
  margin-bottom: 1.5rem;
  flex: 1;
}
.price-card ul li {
  font-size: 2rem;
  color: #444;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.price-card ul li:last-child { border-bottom: none; }
.price-btn {
  background: var(--accent);
  color: white;
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.2s;
  margin-top: auto;
}
.price-btn:hover { background: #1060a0; }

/* System requirements */
.sysreq {
  text-align: center;
  padding: 2rem;
  background: white;
  border-bottom: 1px solid var(--border);
}
.sysreq h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.sysreq p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
@media (max-width: 900px) {
  .pricing-section { grid-template-columns: 1fr; }
}

/* PC feature cards — compact */
.cards-row .card {
  min-height: 180px;
  padding: 1.2rem 1rem;
}
.cards-row .card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.cards-row .card p  { font-size: 1.4rem; margin-bottom: 0; }
.cards-row .card .card-icon-wrap { width: 52px; height: 52px; font-size: 24px; margin-bottom: 0.6rem; }
