/* ============================================================
   LaptopChipLevel — Main Stylesheet
   lcl-style.css
   ============================================================ */

:root {
  --lcl-graphite: #0f1117;
  --lcl-graphite-mid: #1a1d27;
  --lcl-graphite-light: #252836;
  --lcl-blue-deep: #0d2b5e;
  --lcl-blue-mid: #1a4891;
  --lcl-blue-accent: #2563eb;
  --lcl-neon: #00d4ff;
  --lcl-neon-dim: rgba(0, 212, 255, 0.15);
  --lcl-white: #ffffff;
  --lcl-off-white: #f0f4f8;
  --lcl-text-body: #c8cdd8;
  --lcl-text-muted: #7a8394;
  --lcl-border: rgba(255,255,255,0.07);
  --lcl-card-bg: rgba(26, 29, 39, 0.85);
  --lcl-success: #22c55e;
  --lcl-warning: #f59e0b;
  --lcl-danger: #ef4444;
  --lcl-radius: 12px;
  --lcl-radius-lg: 20px;
  --lcl-shadow: 0 8px 32px rgba(0,0,0,0.45);
  --lcl-shadow-neon: 0 0 30px rgba(0, 212, 255, 0.12);
  --lcl-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--lcl-graphite);
  color: var(--lcl-text-body);
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', 'Space Grotesk', sans-serif;
  color: var(--lcl-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1em; }
a { color: var(--lcl-neon); text-decoration: none; transition: var(--lcl-transition); }
a:hover { color: var(--lcl-white); }

/* ── Utility ─────────────────────────────────────────────── */

.lcl-section { padding: 90px 0; }
.lcl-section-sm { padding: 60px 0; }
.lcl-section-dark { background: var(--lcl-graphite); }
.lcl-section-mid { background: var(--lcl-graphite-mid); }
.lcl-section-card { background: var(--lcl-graphite-light); }

.lcl-text-neon { color: var(--lcl-neon); }
.lcl-text-muted { color: var(--lcl-text-muted); }
.lcl-text-white { color: var(--lcl-white); }

.lcl-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lcl-neon);
  background: var(--lcl-neon-dim);
  border: 1px solid rgba(0, 212, 255, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.lcl-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--lcl-neon), var(--lcl-blue-accent));
  border-radius: 3px;
  margin: 1rem 0 1.5rem;
}

/* ── Navigation ───────────────────────────────────────────── */

.lcl-navbar {
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lcl-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--lcl-transition);
}

.lcl-navbar-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--lcl-white) !important;
  letter-spacing: -0.03em;
}

.lcl-navbar-brand span {
  color: var(--lcl-neon);
}

.lcl-nav-link {
  color: var(--lcl-text-body) !important;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 1.5rem 1rem !important;
  transition: var(--lcl-transition);
  position: relative;
}

.lcl-nav-link:hover,
.lcl-nav-link.active {
  color: var(--lcl-neon) !important;
}

.lcl-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--lcl-neon);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.lcl-nav-link:hover::after,
.lcl-nav-link.active::after {
  transform: scaleX(1);
}

.lcl-btn-nav {
  background: linear-gradient(135deg, var(--lcl-blue-accent), var(--lcl-neon));
  color: var(--lcl-graphite) !important;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  padding: 9px 22px !important;
  border-radius: 8px;
  margin-left: 0.5rem;
  transition: var(--lcl-transition);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.lcl-btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
}

.navbar-toggler {
  border-color: var(--lcl-border);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200,205,216,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Buttons ──────────────────────────────────────────────── */

.lcl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lcl-blue-accent), var(--lcl-neon));
  color: var(--lcl-graphite);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: var(--lcl-radius);
  border: none;
  cursor: pointer;
  transition: var(--lcl-transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.lcl-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
  color: var(--lcl-graphite);
}

.lcl-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--lcl-neon);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 26px;
  border-radius: var(--lcl-radius);
  border: 1px solid rgba(0, 212, 255, 0.4);
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-btn-outline:hover {
  background: var(--lcl-neon-dim);
  border-color: var(--lcl-neon);
  color: var(--lcl-neon);
  transform: translateY(-2px);
}

/* ── Cards ────────────────────────────────────────────────── */

.lcl-card {
  background: var(--lcl-card-bg);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 2rem;
  transition: var(--lcl-transition);
  backdrop-filter: blur(10px);
}

.lcl-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: var(--lcl-shadow-neon);
  transform: translateY(-4px);
}

.lcl-card-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--lcl-blue-deep), var(--lcl-blue-accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--lcl-neon);
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ── Hero ─────────────────────────────────────────────────── */

.lcl-hero-repair-lab {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--lcl-graphite);
}

.lcl-hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.lcl-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 43, 94, 0.6) 0%, transparent 70%),
              linear-gradient(180deg, transparent 50%, var(--lcl-graphite) 100%);
  z-index: 1;
}

.lcl-hero-content {
  position: relative;
  z-index: 2;
}

.lcl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lcl-neon);
  margin-bottom: 1.5rem;
}

.lcl-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lcl-neon);
  border-radius: 50%;
  animation: lcl-pulse 2s infinite;
}

.lcl-hero-title {
  margin-bottom: 1.2rem;
}

.lcl-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--lcl-neon), var(--lcl-blue-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lcl-hero-sub {
  font-size: 1.1rem;
  color: var(--lcl-text-body);
  max-width: 500px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}

.lcl-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--lcl-border);
}

.lcl-hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--lcl-white);
  display: block;
  line-height: 1;
}

.lcl-hero-stat-num span { color: var(--lcl-neon); }

.lcl-hero-stat-label {
  font-size: 0.78rem;
  color: var(--lcl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
}

.lcl-hero-image-wrap {
  position: relative;
  z-index: 2;
}

.lcl-hero-image-main {
  border-radius: var(--lcl-radius-lg);
  overflow: hidden;
  box-shadow: var(--lcl-shadow), 0 0 60px rgba(0, 212, 255, 0.1);
  border: 1px solid var(--lcl-border);
}

.lcl-hero-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.lcl-hero-float-card {
  position: absolute;
  background: rgba(15, 17, 23, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lcl-hero-float-card-1 {
  bottom: -20px;
  left: -30px;
}

.lcl-hero-float-card-2 {
  top: 20px;
  right: -25px;
}

.lcl-float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lcl-blue-deep), var(--lcl-blue-accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcl-neon);
  font-size: 1rem;
  flex-shrink: 0;
}

.lcl-float-label {
  font-size: 0.72rem;
  color: var(--lcl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lcl-float-value {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lcl-white);
}

/* ── SVG circuit dividers ─────────────────────────────────── */

.lcl-svg-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.lcl-svg-divider svg { display: block; }

/* ── Services grid ────────────────────────────────────────── */

.lcl-service-chip-level,
.lcl-service-card {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 2rem;
  transition: var(--lcl-transition);
  height: 100%;
}

.lcl-service-chip-level:hover,
.lcl-service-card:hover {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.08);
  transform: translateY(-4px);
}

.lcl-service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 43, 94, 0.8), rgba(37, 99, 235, 0.5));
  border: 1px solid rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--lcl-neon);
  margin-bottom: 1.2rem;
}

/* ── Repair Process Timeline ──────────────────────────────── */

.lcl-repair-process-timeline {
  position: relative;
}

.lcl-timeline-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.lcl-timeline-step:last-child { margin-bottom: 0; }

.lcl-timeline-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.lcl-timeline-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lcl-blue-accent), var(--lcl-neon));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--lcl-graphite);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  transition: var(--lcl-transition);
}

.lcl-timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--lcl-blue-accent), transparent);
  margin-top: 6px;
  min-height: 40px;
}

.lcl-timeline-content {
  padding-top: 8px;
  flex: 1;
}

.lcl-timeline-content h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.lcl-timeline-content p {
  font-size: 0.88rem;
  color: var(--lcl-text-muted);
  margin: 0;
}

/* ── Diagnostic Quiz ──────────────────────────────────────── */

.lcl-diagnostic-quiz-box {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.lcl-quiz-progress {
  height: 4px;
  background: var(--lcl-graphite-light);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.lcl-quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--lcl-blue-accent), var(--lcl-neon));
  border-radius: 4px;
  transition: width 0.4s ease;
}

.lcl-quiz-question {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lcl-white);
  margin-bottom: 1.5rem;
}

.lcl-quiz-option {
  background: var(--lcl-graphite);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  padding: 1rem 1.4rem;
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: var(--lcl-transition);
  font-size: 0.9rem;
  color: var(--lcl-text-body);
  display: block;
  width: 100%;
  text-align: left;
}

.lcl-quiz-option:hover {
  border-color: rgba(0, 212, 255, 0.35);
  color: var(--lcl-white);
  background: rgba(0, 212, 255, 0.05);
}

.lcl-quiz-option.selected {
  border-color: var(--lcl-neon);
  background: rgba(0, 212, 255, 0.08);
  color: var(--lcl-neon);
}

.lcl-quiz-result {
  background: linear-gradient(135deg, rgba(13, 43, 94, 0.5), rgba(37, 99, 235, 0.2));
  border: 1px solid rgba(37, 99, 235, 0.4);
  border-radius: var(--lcl-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: none;
}

.lcl-quiz-result.visible { display: block; }

/* ── Team cards ───────────────────────────────────────────── */

.lcl-team-technician-card {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  overflow: hidden;
  transition: var(--lcl-transition);
}

.lcl-team-technician-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--lcl-shadow-neon);
}

.lcl-team-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.lcl-team-technician-card:hover .lcl-team-photo {
  filter: grayscale(0%);
}

.lcl-team-info {
  padding: 1.5rem;
}

.lcl-team-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lcl-white);
  margin-bottom: 0.2rem;
}

.lcl-team-role {
  font-size: 0.8rem;
  color: var(--lcl-neon);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.lcl-team-exp {
  font-size: 0.82rem;
  color: var(--lcl-text-muted);
  margin-top: 0.5rem;
}

/* ── Reviews ──────────────────────────────────────────────── */

.lcl-review-card {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 1.8rem;
  height: 100%;
  transition: var(--lcl-transition);
}

.lcl-review-card:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.lcl-review-stars {
  color: var(--lcl-warning);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.lcl-review-text {
  font-size: 0.9rem;
  color: var(--lcl-text-body);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.lcl-review-author {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--lcl-white);
}

.lcl-review-city {
  font-size: 0.78rem;
  color: var(--lcl-text-muted);
}

/* ── Cost estimator ───────────────────────────────────────── */

.lcl-estimator-box {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 2.5rem;
}

.lcl-estimator-select {
  background: var(--lcl-graphite);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  color: var(--lcl-text-body);
  padding: 12px 16px;
  font-size: 0.9rem;
  width: 100%;
  margin-bottom: 1rem;
  appearance: none;
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-estimator-select:focus {
  outline: none;
  border-color: var(--lcl-neon);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.lcl-complexity-result {
  display: none;
  margin-top: 1.5rem;
  background: var(--lcl-graphite);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  padding: 1.5rem;
}

.lcl-complexity-result.visible { display: block; }

.lcl-complexity-bar-wrap {
  background: var(--lcl-graphite-light);
  border-radius: 100px;
  height: 8px;
  margin: 0.8rem 0;
  overflow: hidden;
}

.lcl-complexity-bar {
  height: 100%;
  border-radius: 100px;
  transition: width 0.7s ease;
}

/* ── Gallery ──────────────────────────────────────────────── */

.lcl-gallery-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--lcl-radius-lg);
}

.lcl-gallery-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcl-gallery-slide {
  flex-shrink: 0;
  width: 100%;
}

.lcl-gallery-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--lcl-radius-lg);
  display: block;
}

.lcl-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 17, 23, 0.85);
  border: 1px solid var(--lcl-border);
  color: var(--lcl-white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--lcl-transition);
  backdrop-filter: blur(10px);
}

.lcl-gallery-btn:hover {
  background: var(--lcl-neon);
  color: var(--lcl-graphite);
  border-color: var(--lcl-neon);
}

.lcl-gallery-prev { left: 16px; }
.lcl-gallery-next { right: 16px; }

.lcl-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.lcl-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lcl-graphite-light);
  border: 1px solid var(--lcl-border);
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-gallery-dot.active {
  background: var(--lcl-neon);
  border-color: var(--lcl-neon);
  width: 20px;
  border-radius: 4px;
}

/* ── Mini tests ───────────────────────────────────────────── */

.lcl-test-panel {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  overflow: hidden;
}

.lcl-test-tabs {
  display: flex;
  border-bottom: 1px solid var(--lcl-border);
}

.lcl-test-tab {
  flex: 1;
  padding: 1rem;
  background: none;
  border: none;
  color: var(--lcl-text-muted);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--lcl-transition);
  text-align: center;
}

.lcl-test-tab.active {
  color: var(--lcl-neon);
  background: rgba(0, 212, 255, 0.05);
  border-bottom: 2px solid var(--lcl-neon);
}

.lcl-test-content { padding: 2rem; }

.lcl-test-pane { display: none; }
.lcl-test-pane.active { display: block; }

.lcl-test-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--lcl-graphite);
  border-radius: var(--lcl-radius);
  margin-bottom: 0.7rem;
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-test-check:hover { background: rgba(255,255,255,0.03); }

.lcl-test-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--lcl-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: var(--lcl-transition);
}

.lcl-test-check.checked .lcl-test-checkbox {
  background: var(--lcl-neon);
  border-color: var(--lcl-neon);
  color: var(--lcl-graphite);
}

.lcl-test-label {
  font-size: 0.88rem;
  color: var(--lcl-text-body);
}

.lcl-test-result-bar {
  height: 6px;
  background: var(--lcl-graphite-light);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 1.5rem;
}

.lcl-test-result-fill {
  height: 100%;
  border-radius: 100px;
  width: 0%;
  transition: width 0.6s ease;
}

/* ── Contact Form ─────────────────────────────────────────── */

.lcl-contact-form-wrap {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 2.5rem;
}

.lcl-form-group { margin-bottom: 1.2rem; }

.lcl-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lcl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.lcl-form-control {
  width: 100%;
  background: var(--lcl-graphite);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  color: var(--lcl-white);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--lcl-transition);
}

.lcl-form-control:focus {
  outline: none;
  border-color: var(--lcl-neon);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.lcl-form-control::placeholder { color: var(--lcl-text-muted); }

textarea.lcl-form-control { resize: vertical; min-height: 130px; }

.lcl-form-error {
  font-size: 0.78rem;
  color: var(--lcl-danger);
  margin-top: 4px;
  display: none;
}

.lcl-form-error.visible { display: block; }

.lcl-captcha-wrap {
  background: var(--lcl-graphite);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.lcl-captcha-q {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lcl-neon);
}

.lcl-captcha-input {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: 8px;
  color: var(--lcl-white);
  padding: 8px 12px;
  width: 80px;
  font-size: 0.9rem;
  text-align: center;
}

.lcl-captcha-input:focus {
  outline: none;
  border-color: var(--lcl-neon);
}

/* ── Info boxes ───────────────────────────────────────────── */

.lcl-info-box {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lcl-info-box-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--lcl-blue-deep), var(--lcl-blue-accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lcl-neon);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Hours table ──────────────────────────────────────────── */

.lcl-hours-table {
  width: 100%;
}

.lcl-hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lcl-border);
  font-size: 0.9rem;
}

.lcl-hours-row:last-child { border-bottom: none; }

.lcl-hours-day { color: var(--lcl-text-muted); }
.lcl-hours-time { color: var(--lcl-white); font-weight: 500; }
.lcl-hours-closed { color: var(--lcl-danger); }

/* ── Articles ─────────────────────────────────────────────── */

.lcl-article-card {
  background: var(--lcl-graphite-mid);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  overflow: hidden;
  transition: var(--lcl-transition);
  height: 100%;
}

.lcl-article-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--lcl-shadow-neon);
}

.lcl-article-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.lcl-article-body { padding: 1.5rem; }

.lcl-article-meta {
  font-size: 0.78rem;
  color: var(--lcl-text-muted);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.lcl-article-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lcl-neon);
  background: var(--lcl-neon-dim);
  padding: 2px 10px;
  border-radius: 100px;
}

.lcl-article-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--lcl-white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.lcl-article-excerpt {
  font-size: 0.86rem;
  color: var(--lcl-text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* ── Article page content ─────────────────────────────────── */

.lcl-article-content {
  max-width: 760px;
  margin: 0 auto;
}

.lcl-article-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.lcl-article-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  color: var(--lcl-neon);
}

.lcl-article-content p {
  color: var(--lcl-text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.lcl-article-content ul,
.lcl-article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.lcl-article-content li {
  color: var(--lcl-text-body);
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.lcl-article-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--lcl-radius-lg);
  margin-bottom: 2.5rem;
  display: block;
}

.lcl-article-inline-img {
  width: 100%;
  border-radius: var(--lcl-radius);
  margin: 1.5rem 0;
  display: block;
}

/* ── Cookie consent ───────────────────────────────────────── */

.lcl-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(26, 29, 39, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--lcl-border);
  border-radius: var(--lcl-radius-lg);
  padding: 1.5rem 2rem;
  max-width: 680px;
  width: calc(100% - 2rem);
  box-shadow: var(--lcl-shadow);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lcl-cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.lcl-cookie-text {
  font-size: 0.85rem;
  color: var(--lcl-text-muted);
  flex: 1;
}

.lcl-cookie-text a { font-weight: 600; }

.lcl-cookie-actions {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.lcl-cookie-accept {
  background: var(--lcl-neon);
  color: var(--lcl-graphite);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-cookie-accept:hover { opacity: 0.85; }

.lcl-cookie-decline {
  background: transparent;
  color: var(--lcl-text-muted);
  border: 1px solid var(--lcl-border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.83rem;
  cursor: pointer;
  transition: var(--lcl-transition);
}

.lcl-cookie-decline:hover { color: var(--lcl-white); border-color: var(--lcl-text-muted); }

/* ── Footer ───────────────────────────────────────────────── */

.lcl-footer {
  background: rgba(10, 12, 18, 0.98);
  border-top: 1px solid var(--lcl-border);
  padding: 70px 0 0;
}

.lcl-footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lcl-white);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  display: block;
}

.lcl-footer-logo span { color: var(--lcl-neon); }

.lcl-footer-desc {
  font-size: 0.85rem;
  color: var(--lcl-text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.lcl-footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lcl-neon);
  margin-bottom: 1.2rem;
}

.lcl-footer-links {
  list-style: none;
  padding: 0;
}

.lcl-footer-links li {
  margin-bottom: 0.5rem;
}

.lcl-footer-links a {
  font-size: 0.87rem;
  color: var(--lcl-text-muted);
  transition: var(--lcl-transition);
}

.lcl-footer-links a:hover { color: var(--lcl-white); padding-left: 4px; }

.lcl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--lcl-text-muted);
}

.lcl-footer-contact-item i {
  color: var(--lcl-neon);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.lcl-footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--lcl-border);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.lcl-footer-copy {
  font-size: 0.8rem;
  color: var(--lcl-text-muted);
}

.lcl-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lcl-footer-legal a {
  font-size: 0.78rem;
  color: var(--lcl-text-muted);
}

.lcl-footer-legal a:hover { color: var(--lcl-white); }

/* ── Page hero (inner pages) ──────────────────────────────── */

.lcl-page-hero {
  background: linear-gradient(180deg, var(--lcl-graphite-mid) 0%, var(--lcl-graphite) 100%);
  border-bottom: 1px solid var(--lcl-border);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.lcl-page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.lcl-breadcrumb {
  font-size: 0.8rem;
  color: var(--lcl-text-muted);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lcl-breadcrumb a { color: var(--lcl-text-muted); }
.lcl-breadcrumb a:hover { color: var(--lcl-neon); }
.lcl-breadcrumb i { font-size: 0.65rem; }

/* ── Counters ─────────────────────────────────────────────── */

.lcl-counter-block {
  text-align: center;
  padding: 2rem;
}

.lcl-counter-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lcl-white);
  line-height: 1;
  display: block;
}

.lcl-counter-num .lcl-suffix { color: var(--lcl-neon); }

.lcl-counter-label {
  font-size: 0.83rem;
  color: var(--lcl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  display: block;
}

/* ── Thank you page ───────────────────────────────────────── */

.lcl-thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.lcl-thankyou-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--lcl-blue-accent), var(--lcl-neon));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--lcl-graphite);
  margin: 0 auto 2rem;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.25);
}

/* ── Legal pages ──────────────────────────────────────────── */

.lcl-legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.lcl-legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--lcl-border);
}

.lcl-legal-content h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--lcl-neon);
}

.lcl-legal-content p,
.lcl-legal-content li {
  font-size: 0.9rem;
  color: var(--lcl-text-body);
  line-height: 1.8;
}

.lcl-legal-content ul,
.lcl-legal-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.lcl-legal-content li { margin-bottom: 0.4rem; }

/* ── About timeline ───────────────────────────────────────── */

.lcl-about-timeline {
  position: relative;
  padding-left: 30px;
}

.lcl-about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--lcl-blue-accent), transparent);
}

.lcl-about-milestone {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.lcl-about-milestone::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lcl-neon);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
}

.lcl-milestone-year {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--lcl-neon);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

/* ── Maps ─────────────────────────────────────────────────── */

.lcl-map-wrap {
  border-radius: var(--lcl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lcl-border);
  height: 380px;
}

.lcl-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}

/* ── CTA Banner ───────────────────────────────────────────── */

.lcl-cta-banner {
  background: linear-gradient(135deg, var(--lcl-blue-deep) 0%, var(--lcl-graphite-mid) 100%);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: var(--lcl-radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lcl-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 992px) {
  .lcl-hero-float-card { display: none; }
  .lcl-hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .lcl-section { padding: 60px 0; }
}

@media (max-width: 768px) {
  .lcl-cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .lcl-cta-banner { padding: 2.5rem 1.5rem; }
  .lcl-footer-bottom { flex-direction: column; text-align: center; }
  .lcl-test-tabs { overflow-x: auto; }
}

@media (max-width: 576px) {
  .lcl-hero-stats { flex-direction: column; gap: 1rem; }
  .lcl-diagnostic-quiz-box { padding: 1.5rem; }
}


.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}

