/* ================================================================
   LOCKCAR FUTURISTIC DESIGN SYSTEM — lockcar-futuristic.css
   Version: 1.0 | AZFO Ltd / lockcar.co.uk
   Load this file ONCE via WordPress (Appearance > Theme > Additional CSS
   or enqueue in functions.php). Then any .lc-page block will render correctly.
================================================================ */

/* ── CSS Variables ── */
:root {
  --lc-dark:         #0a0d14;
  --lc-darker:       #060810;
  --lc-card:         #111520;
  --lc-card-hover:   #161c2a;
  --lc-border:       rgba(0, 200, 255, 0.15);
  --lc-border-glow:  rgba(0, 200, 255, 0.40);
  --lc-cyan:         #00c8ff;
  --lc-cyan-dim:     rgba(0, 200, 255, 0.08);
  --lc-green:        #00ff9d;
  --lc-green-dim:    rgba(0, 255, 157, 0.08);
  --lc-orange:       #ff6b35;
  --lc-red:          #ff3355;
  --lc-text:         #e0e8f0;
  --lc-text-muted:   #7a8fa8;
  --lc-text-dim:     #4a5a6a;
  --lc-grad:         linear-gradient(135deg, #00c8ff 0%, #0066ff 50%, #00ff9d 100%);
  --lc-grad-subtle:  linear-gradient(135deg, rgba(0,200,255,0.1) 0%, rgba(0,102,255,0.05) 100%);
  --lc-font:         'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --lc-mono:         'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  --lc-r:            12px;
  --lc-r-lg:         20px;
  --lc-shadow:       0 8px 32px rgba(0, 0, 0, 0.5);
  --lc-glow:         0 0 30px rgba(0, 200, 255, 0.15);
  --lc-max-width:    1100px;
}


/* ================================================================
   RESET & BASE
================================================================ */
.lc-page *,
.lc-page *::before,
.lc-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.lc-page {
  font-family: var(--lc-font);
  background: var(--lc-dark);
  color: var(--lc-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lc-page a {
  color: var(--lc-cyan);
  text-decoration: none;
  transition: opacity 0.2s;
}
.lc-page a:hover { opacity: 0.8; text-decoration: underline; }

.lc-page img {
  max-width: 100%;
  border-radius: var(--lc-r);
  display: block;
  height: auto;
}

.lc-page ul,
.lc-page ol { list-style: none; }


/* ================================================================
   LAYOUT
================================================================ */
.lc-wrap-page {
  max-width: var(--lc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.lc-section {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.lc-section:last-child { border-bottom: none; }

.lc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lc-border), transparent);
  margin: 1px 0;
}


/* ================================================================
   HERO
================================================================ */
.lc-hero-page {
  position: relative;
  background: var(--lc-darker);
  overflow: hidden;
  padding: 88px 24px 72px;
  text-align: center;
  border-bottom: 1px solid var(--lc-border);
}

/* Glow & grid overlay */
.lc-hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,   rgba(0,200,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%,  rgba(0,102,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.lc-hero-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.lc-hero-tag {
  display: inline-block;
  background: var(--lc-cyan-dim);
  border: 1px solid var(--lc-border-glow);
  color: var(--lc-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.lc-hero-h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto 20px;
}
.lc-hero-h1 em {
  font-style: normal;
  background: var(--lc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lc-hero-lead {
  font-size: 1.15rem;
  color: var(--lc-text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.lc-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.lc-hero-meta span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--lc-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.80rem;
  color: var(--lc-text-muted);
}


/* ================================================================
   TABLE OF CONTENTS
================================================================ */
.lc-toc {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  padding: 24px 28px;
  margin-bottom: 0;
}
.lc-toc h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--lc-cyan);
  margin-bottom: 14px;
}
.lc-toc ol {
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lc-toc li {
  counter-increment: toc;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.88rem;
}
.lc-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: #02baea;
  font-size: 0.72rem;
  font-family: var(--lc-mono);
  flex-shrink: 0;
}
.lc-toc a { color: var(--lc-text-muted); }
.lc-toc a:hover { color: var(--lc-cyan); text-decoration: none; }


/* ================================================================
   TYPOGRAPHY
================================================================ */
.lc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lc-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lc-section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--lc-cyan);
}

.lc-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.lc-h2 em {
  font-style: normal;
  background: var(--lc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lc-h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lc-text);
}

.lc-p {
  color: var(--lc-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 1rem;
}
.lc-p:last-child { margin-bottom: 0; }


/* ================================================================
   GRID SYSTEM
================================================================ */
.lc-grid-2 { display: grid; grid-template-columns: 1fr 1fr;          gap: 32px; align-items: start; }
.lc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr);   gap: 24px; }
.lc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr);   gap: 20px; }

.lc-grid-2-wide { display: grid; grid-template-columns: 1fr 1.4fr;   gap: 48px; align-items: center; }

@media (max-width: 900px) {
  .lc-grid-3, .lc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .lc-grid-2,
  .lc-grid-2-wide,
  .lc-grid-3,
  .lc-grid-4 { grid-template-columns: 1fr; }
}


/* ================================================================
   STAT CARDS
================================================================ */
.lc-stat-card {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.lc-stat-card:hover {
  border-color: var(--lc-border-glow);
  box-shadow: var(--lc-glow);
}
.lc-stat-card .num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--lc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.lc-stat-card .label {
  font-size: 0.82rem;
  color: var(--lc-text-muted);
  line-height: 1.4;
}


/* ================================================================
   FEATURE CARDS
================================================================ */
.lc-feature-card {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.lc-feature-card:hover {
  border-color: var(--lc-border-glow);
  transform: translateY(-2px);
  box-shadow: var(--lc-glow);
}
.lc-feature-card .icon {
  width: 48px;
  height: 48px;
  background: var(--lc-cyan-dim);
  border: 1px solid var(--lc-border-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.lc-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lc-text);
}
.lc-feature-card p {
  font-size: 0.87rem;
  color: var(--lc-text-muted);
  line-height: 1.6;
}


/* ================================================================
   IMAGE PLACEHOLDERS (replace with real <img> tags)
================================================================ */
.lc-img-placeholder {
  background: var(--lc-card);
  border: 2px dashed var(--lc-border);
  border-radius: var(--lc-r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: var(--lc-text-muted);
  gap: 10px;
  min-height: 240px;
}
.lc-img-placeholder .lc-img-icon { font-size: 2.5rem; opacity: 0.5; }
.lc-img-placeholder strong { color: var(--lc-cyan); font-size: 0.9rem; }
.lc-img-placeholder p { font-size: 0.78rem; opacity: 0.6; max-width: 260px; line-height: 1.5; }


/* ================================================================
   COMPARISON TABLE
================================================================ */
.lc-table-wrap { overflow-x: auto; margin: 32px 0; }

.lc-compare-table { width: 100%; border-collapse: collapse; }
.lc-compare-table th,
.lc-compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  white-space: nowrap;
}
.lc-compare-table thead th {
  background: var(--lc-card);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lc-text-muted);
  position: sticky;
  top: 0;
}
.lc-compare-table thead th:nth-child(2) { color: var(--lc-cyan); }
.lc-compare-table thead th:nth-child(3) { color: var(--lc-text-dim); }
.lc-compare-table tr:hover td { background: rgba(255, 255, 255, 0.02); }
.lc-compare-table td:first-child { color: var(--lc-text); font-weight: 600; white-space: normal; }
.lc-compare-table td:nth-child(2) { color: var(--lc-green); }
.lc-compare-table td:nth-child(3) { color: var(--lc-text-dim); }

.lc-check { color: var(--lc-green); font-weight: 700; }
.lc-cross { color: var(--lc-red); opacity: 0.6; }

.lc-win-badge {
  display: inline-block;
  background: var(--lc-green-dim);
  border: 1px solid rgba(0, 255, 157, 0.3);
  color: var(--lc-green);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
}


/* ================================================================
   ALERT & CALLOUT BOXES
================================================================ */
.lc-alert-box {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-left: 4px solid var(--lc-orange);
  border-radius: var(--lc-r);
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.lc-alert-box .icon { font-size: 1.3rem; margin-top: 1px; flex-shrink: 0; }
.lc-alert-box p { font-size: 0.9rem; color: var(--lc-text); line-height: 1.6; margin: 0; }

/* Info variant (blue) */
.lc-alert-box.info {
  background: var(--lc-cyan-dim);
  border-color: var(--lc-border-glow);
  border-left-color: var(--lc-cyan);
}

.lc-callout {
  background: var(--lc-cyan-dim);
  border: 1px solid var(--lc-border-glow);
  border-radius: var(--lc-r-lg);
  padding: 28px 32px;
  margin: 32px 0;
}
.lc-callout-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lc-cyan);
  margin-bottom: 10px;
}
.lc-callout p { color: var(--lc-text); font-size: 1rem; line-height: 1.7; margin: 0; }


/* ================================================================
   PRODUCT CARDS
================================================================ */
.lc-product-card {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.lc-product-card:hover {
  border-color: var(--lc-border-glow);
  box-shadow: var(--lc-glow);
  transform: translateY(-3px);
}
.lc-product-card.featured { border-color: rgba(0, 200, 255, 0.4); }

.lc-product-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--lc-darker);
  border-radius: 0;
  display: block;
}

.lc-product-card-body { padding: 22px; }

.lc-product-badge {
  display: inline-block;
  background: var(--lc-cyan-dim);
  border: 1px solid var(--lc-border-glow);
  color: var(--lc-cyan);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.lc-product-badge.green {
  background: var(--lc-green-dim);
  border-color: rgba(0, 255, 157, 0.3);
  color: var(--lc-green);
}
.lc-product-badge.orange {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.3);
  color: var(--lc-orange);
}

.lc-product-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; color: var(--lc-text); }

.lc-product-price {
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--lc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 10px 0;
  line-height: 1;
}

.lc-product-sub { font-size: 0.82rem; color: var(--lc-text-muted); margin-bottom: 14px; }

.lc-product-features { list-style: none; margin: 0 0 20px; }
.lc-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--lc-text-muted);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lc-product-features li:last-child { border-bottom: none; }
.lc-product-features li::before {
  content: '✓';
  color: var(--lc-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ================================================================
   BUTTONS
================================================================ */
.lc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.lc-btn-primary {
  background: var(--lc-grad);
  color: #000 !important;
}
.lc-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; background: #25D366 !important; color: #fff !important;}

.lc-btn-outline {
  background: transparent;
  border: 1.5px solid var(--lc-border-glow);
  color: var(--lc-cyan) !important;
}
.lc-btn-outline:hover { background: var(--lc-cyan-dim); text-decoration: none; }

.lc-btn-sm { padding: 10px 20px; font-size: 0.85rem; }


/* ================================================================
   CTA BLOCK
================================================================ */
.lc-cta-block {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lc-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,200,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.lc-cta-block h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.lc-cta-block p {
  color: var(--lc-text-muted);
  margin-bottom: 28px;
  font-size: 1rem;
  position: relative;
  z-index: 1;
}
.lc-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.lc-price-hero {
  font-size: 3.2rem;
  font-weight: 900;
  background: var(--lc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.lc-price-sub {
  font-size: 0.85rem;
  color: var(--lc-text-muted);
  margin-top: 4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}


/* ================================================================
   FAQ
================================================================ */
.lc-faq-list { display: flex; flex-direction: column; gap: 12px; }

.lc-faq-item {
  background: var(--lc-card);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.lc-faq-item:hover { border-color: var(--lc-border-glow); }

.lc-faq-q {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--lc-text);
  user-select: none;
}
.lc-faq-q::after { content: '+'; color: var(--lc-cyan); font-size: 1.4rem; flex-shrink: 0; line-height: 1; }

.lc-faq-a {
  padding: 0 22px 18px;
  color: var(--lc-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ================================================================
   TIMELINE
================================================================ */
.lc-timeline { display: flex; flex-direction: column; }
.lc-timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.lc-timeline-item:last-child { padding-bottom: 0; }

.lc-timeline-dot {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--lc-cyan);
  border-radius: 50%;
  margin-top: 5px;
  box-shadow: 0 0 12px var(--lc-cyan);
  position: relative;
  z-index: 1;
}
.lc-timeline-line {
  position: absolute;
  left: 6px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: var(--lc-border);
}
.lc-timeline-item:last-child .lc-timeline-line { display: none; }

.lc-timeline-content h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--lc-text);
}
.lc-timeline-content p {
  font-size: 0.83rem;
  color: var(--lc-text-muted);
  line-height: 1.5;
}


/* ================================================================
   SPEED DEMO WIDGET
================================================================ */
.lc-speed-demo {
  background: var(--lc-darker);
  border: 1px solid var(--lc-border);
  border-radius: var(--lc-r-lg);
  padding: 28px;
  font-family: var(--lc-mono);
}
.lc-speed-demo .speed-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--lc-text-dim);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--lc-mono);
}
.lc-speed-demo .speed-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--lc-green);
  line-height: 1;
}
.lc-speed-demo .speed-limit {
  font-size: 0.8rem;
  color: var(--lc-text-muted);
  margin-top: 4px;
}
.lc-speed-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin: 16px 0;
  overflow: hidden;
}
.lc-speed-fill {
  height: 100%;
  background: var(--lc-grad);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.lc-speed-status {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--lc-border);
  margin-top: 4px;
}
.lc-speed-status-item .s-label {
  font-size: 0.68rem;
  color: var(--lc-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
.lc-speed-status-item .s-val {
  font-size: 0.9rem;
  font-weight: 700;
}
.lc-speed-status-item .s-val.green { color: var(--lc-green); }
.lc-speed-status-item .s-val.cyan  { color: var(--lc-cyan); }


/* ================================================================
   ABOUT / TWO-COLUMN ASYMMETRIC
================================================================ */
.lc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .lc-about-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   RESPONSIVE ADJUSTMENTS
================================================================ */
@media (max-width: 768px) {
  .lc-hero-page { padding: 56px 20px 48px; }
  .lc-section    { padding: 40px 0; }
  .lc-cta-block  { padding: 36px 24px; }
  .lc-wrap-page  { padding: 0 16px; }

  .lc-compare-table th,
  .lc-compare-table td { padding: 12px 14px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .lc-hero-h1 { font-size: 1.8rem; }
  .lc-hero-lead { font-size: 1rem; }
  .lc-price-hero { font-size: 2.4rem; }
  .lc-stat-card .num { font-size: 2rem; }
}
