/* LD Gaming - Main Stylesheet */
/* ============================= */

:root {
  --ld-primary: #0a0e1a;
  --ld-secondary: #111827;
  --ld-accent: #00d4ff;
  --ld-accent2: #7c3aed;
  --ld-accent3: #f59e0b;
  --ld-text: #e2e8f0;
  --ld-text-muted: #94a3b8;
  --ld-border: rgba(255,255,255,0.08);
  --ld-card-bg: rgba(17, 24, 39, 0.85);
  --ld-glass: rgba(255,255,255,0.04);
  --ld-gradient-hero: linear-gradient(135deg, #0a0e1a 0%, #1a0533 50%, #0a1628 100%);
  --ld-gradient-accent: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --ld-gradient-card: linear-gradient(145deg, rgba(17,24,39,0.9) 0%, rgba(10,14,26,0.95) 100%);
  --ld-shadow: 0 20px 60px rgba(0,0,0,0.5);
  --ld-shadow-glow: 0 0 40px rgba(0,212,255,0.15);
  --ld-radius: 12px;
  --ld-radius-lg: 20px;
  --ld-font-display: 'Rajdhani', sans-serif;
  --ld-font-body: 'Source Serif 4', serif;
  --ld-font-ui: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--ld-primary);
  color: var(--ld-text);
  font-family: var(--ld-font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========================= UTILITY ========================= */
.ld-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ld-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.ld-section { padding: 80px 0; }
.ld-section-sm { padding: 50px 0; }
.ld-text-accent { color: var(--ld-accent); }
.ld-text-accent2 { color: var(--ld-accent2); }
.ld-text-accent3 { color: var(--ld-accent3); }
.ld-text-muted { color: var(--ld-text-muted); }

.ld-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--ld-font-ui);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--ld-accent);
  background: rgba(0,212,255,0.08);
  margin-bottom: 16px;
}

.ld-badge-purple {
  border-color: rgba(124,58,237,0.4);
  color: #a78bfa;
  background: rgba(124,58,237,0.1);
}

.ld-badge-amber {
  border-color: rgba(245,158,11,0.4);
  color: var(--ld-accent3);
  background: rgba(245,158,11,0.1);
}

.ld-divider {
  width: 60px;
  height: 3px;
  background: var(--ld-gradient-accent);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.ld-divider-center { margin: 16px auto 24px; }

/* ========================= TYPOGRAPHY ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ld-font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ld-heading-xl {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: var(--ld-font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ld-heading-lg {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-family: var(--ld-font-display);
  font-weight: 700;
}

.ld-heading-md {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-family: var(--ld-font-display);
}

.ld-lead {
  font-size: 1.15rem;
  color: var(--ld-text-muted);
  line-height: 1.8;
  font-family: var(--ld-font-ui);
}

/* ========================= BUTTONS ========================= */
.ld-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--ld-font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.ld-btn-primary {
  background: var(--ld-gradient-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,212,255,0.3);
}

.ld-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,212,255,0.5);
  color: #fff;
  text-decoration: none;
}

.ld-btn-outline {
  background: transparent;
  border: 1px solid var(--ld-border);
  color: var(--ld-text);
}

.ld-btn-outline:hover {
  border-color: var(--ld-accent);
  color: var(--ld-accent);
  background: rgba(0,212,255,0.05);
  text-decoration: none;
  transform: translateY(-2px);
}

.ld-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--ld-text);
  border: 1px solid var(--ld-border);
}

.ld-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.ld-btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.ld-btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ========================= NAVIGATION ========================= */
.ld-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ld-border);
  transition: all 0.3s ease;
}

.ld-navbar.ld-scrolled {
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.ld-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ld-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ld-gradient-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ld-font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  letter-spacing: -1px;
}

.ld-brand-text {
  font-family: var(--ld-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.ld-brand-text span { color: var(--ld-accent); }

.ld-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.ld-nav-links a {
  font-family: var(--ld-font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ld-text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.ld-nav-links a:hover,
.ld-nav-links a.active {
  color: var(--ld-accent);
  background: rgba(0,212,255,0.08);
}

.ld-nav-cta { margin-left: 12px; }

.ld-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.ld-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ld-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ld-mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid var(--ld-border);
  z-index: 999;
}

.ld-mobile-menu.open { display: block; }

.ld-mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--ld-text-muted);
  text-decoration: none;
  font-family: var(--ld-font-ui);
  border-radius: 8px;
  transition: all 0.2s;
}

.ld-mobile-menu a:hover { color: var(--ld-accent); background: rgba(0,212,255,0.08); }

/* ========================= HERO ========================= */
.ld-hero-gaming {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ld-gradient-hero);
}

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

.ld-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,14,26,0.95) 0%,
    rgba(26,5,51,0.7) 50%,
    rgba(10,22,40,0.9) 100%
  );
  z-index: 1;
}

.ld-hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.ld-hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.ld-hero-eyebrow {
  font-family: var(--ld-font-ui);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ld-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ld-hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ld-accent);
}

.ld-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-family: var(--ld-font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.ld-hero-title .ld-highlight {
  background: var(--ld-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld-hero-subtitle {
  font-size: 1.15rem;
  color: var(--ld-text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-family: var(--ld-font-ui);
}

.ld-hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ld-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--ld-border);
  flex-wrap: wrap;
}

.ld-stat-item { text-align: left; }

.ld-stat-number {
  font-family: var(--ld-font-display);
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--ld-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.ld-stat-label {
  font-family: var(--ld-font-ui);
  font-size: 0.82rem;
  color: var(--ld-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ld-hero-visual {
  position: relative;
  z-index: 2;
}

.ld-hero-img-main {
  width: 100%;
  border-radius: var(--ld-radius-lg);
  border: 1px solid var(--ld-border);
  box-shadow: var(--ld-shadow), var(--ld-shadow-glow);
  object-fit: cover;
  height: 480px;
}

.ld-hero-float-card {
  position: absolute;
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius);
  padding: 16px 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--ld-shadow);
}

.ld-hero-float-card-1 {
  bottom: -20px;
  left: -20px;
  min-width: 200px;
}

.ld-hero-float-card-2 {
  top: 30px;
  right: -20px;
  min-width: 180px;
}

.ld-float-card-title {
  font-family: var(--ld-font-ui);
  font-size: 0.75rem;
  color: var(--ld-text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ld-float-card-value {
  font-family: var(--ld-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ld-accent);
}

.ld-float-card-sub {
  font-family: var(--ld-font-ui);
  font-size: 0.75rem;
  color: var(--ld-text-muted);
  margin-top: 4px;
}

/* ========================= CARDS ========================= */
.ld-card {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.ld-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.ld-card-body { padding: 24px; }

.ld-card-meta {
  font-family: var(--ld-font-ui);
  font-size: 0.78rem;
  color: var(--ld-text-muted);
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ld-card-title {
  font-family: var(--ld-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ld-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.ld-card-excerpt {
  font-size: 0.9rem;
  color: var(--ld-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--ld-font-ui);
}

/* ========================= QUIZ/TESTS ========================= */
.ld-test-container {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.ld-test-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ld-gradient-accent);
}

.ld-test-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}

.ld-test-title {
  font-family: var(--ld-font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.ld-test-category {
  font-family: var(--ld-font-ui);
  font-size: 0.75rem;
  color: var(--ld-text-muted);
  margin-top: 4px;
}

.ld-test-progress {
  margin-bottom: 28px;
}

.ld-progress-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.ld-progress-bar-fill {
  height: 100%;
  background: var(--ld-gradient-accent);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.ld-progress-label {
  font-family: var(--ld-font-ui);
  font-size: 0.78rem;
  color: var(--ld-text-muted);
  display: flex;
  justify-content: space-between;
}

.ld-question-text {
  font-family: var(--ld-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.ld-quiz-options {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.ld-quiz-option {
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--ld-font-ui);
  font-size: 0.9rem;
  color: var(--ld-text);
  transition: all 0.2s ease;
  text-align: left;
  width: 100%;
}

.ld-quiz-option:hover {
  background: rgba(0,212,255,0.08);
  border-color: rgba(0,212,255,0.3);
  color: var(--ld-accent);
}

.ld-quiz-option.ld-correct {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.4);
  color: #34d399;
}

.ld-quiz-option.ld-incorrect {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.3);
  color: #f87171;
}

.ld-quiz-option:disabled { cursor: default; }

.ld-quiz-result {
  text-align: center;
  padding: 24px 0 8px;
}

.ld-result-score {
  font-family: var(--ld-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--ld-gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ld-result-message {
  font-family: var(--ld-font-ui);
  font-size: 1rem;
  color: var(--ld-text-muted);
  margin: 12px 0 24px;
}

/* ========================= ARTICLES ========================= */
.ld-article-layout {
  max-width: 820px;
  margin: 0 auto;
}

.ld-article-layout h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 20px;
}

.ld-article-layout h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin: 40px 0 16px;
  color: var(--ld-text);
}

.ld-article-layout h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--ld-accent);
}

.ld-article-layout p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.85;
}

.ld-article-layout ul, .ld-article-layout ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.ld-article-layout li {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.ld-article-layout blockquote {
  border-left: 3px solid var(--ld-accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: rgba(0,212,255,0.04);
  border-radius: 0 8px 8px 0;
  color: var(--ld-text-muted);
  font-style: italic;
  font-size: 1.05rem;
}

.ld-article-img {
  width: 100%;
  border-radius: var(--ld-radius-lg);
  margin: 32px 0;
  border: 1px solid var(--ld-border);
  display: block;
}

.ld-article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--ld-border);
  border-bottom: 1px solid var(--ld-border);
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ld-article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ld-author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ld-border);
}

.ld-author-name {
  font-family: var(--ld-font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ld-text);
}

.ld-author-role {
  font-family: var(--ld-font-ui);
  font-size: 0.78rem;
  color: var(--ld-text-muted);
}

.ld-article-date {
  font-family: var(--ld-font-ui);
  font-size: 0.82rem;
  color: var(--ld-text-muted);
}

/* ========================= TEAM ========================= */
.ld-team-member {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.ld-team-member:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
  box-shadow: var(--ld-shadow-glow);
}

.ld-team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--ld-border);
  margin: 0 auto 16px;
  display: block;
}

.ld-team-name {
  font-family: var(--ld-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ld-team-role {
  font-family: var(--ld-font-ui);
  font-size: 0.8rem;
  color: var(--ld-accent);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.ld-team-bio {
  font-family: var(--ld-font-ui);
  font-size: 0.88rem;
  color: var(--ld-text-muted);
  line-height: 1.6;
}

/* ========================= TESTIMONIALS ========================= */
.ld-testimonial-card {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.ld-testimonial-card:hover {
  border-color: rgba(0,212,255,0.15);
  transform: translateY(-3px);
}

.ld-testimonial-stars {
  color: var(--ld-accent3);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.ld-testimonial-text {
  font-size: 0.92rem;
  color: var(--ld-text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: var(--ld-font-ui);
  font-style: italic;
}

.ld-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ld-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ld-border);
}

.ld-testimonial-name {
  font-family: var(--ld-font-ui);
  font-weight: 600;
  font-size: 0.9rem;
}

.ld-testimonial-handle {
  font-family: var(--ld-font-ui);
  font-size: 0.78rem;
  color: var(--ld-text-muted);
}

/* ========================= SECTION HEADERS ========================= */
.ld-section-header {
  margin-bottom: 56px;
}

.ld-section-header.ld-centered { text-align: center; }

.ld-section-title {
  font-family: var(--ld-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ld-section-lead {
  font-family: var(--ld-font-ui);
  font-size: 1.05rem;
  color: var(--ld-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.ld-section-header.ld-centered .ld-section-lead {
  margin: 0 auto;
}

/* ========================= INFO BLOCKS ========================= */
.ld-info-block {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  height: 100%;
}

.ld-info-block:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-3px);
}

.ld-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  background: var(--ld-gradient-accent);
  color: #fff;
}

.ld-info-block-title {
  font-family: var(--ld-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ld-info-block-text {
  font-family: var(--ld-font-ui);
  font-size: 0.9rem;
  color: var(--ld-text-muted);
  line-height: 1.7;
}

/* ========================= IMAGE GALLERY ========================= */
.ld-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.ld-gallery-item {
  border-radius: var(--ld-radius);
  overflow: hidden;
  position: relative;
}

.ld-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ld-gallery-item:hover img { transform: scale(1.05); }

.ld-gallery-item-lg { grid-column: span 8; height: 360px; }
.ld-gallery-item-sm { grid-column: span 4; height: 170px; }

/* ========================= FOOTER ========================= */
.ld-footer {
  background: #050810;
  border-top: 1px solid var(--ld-border);
  padding: 70px 0 0;
}

.ld-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.ld-footer-brand-desc {
  font-family: var(--ld-font-ui);
  font-size: 0.88rem;
  color: var(--ld-text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.ld-footer-social {
  display: flex;
  gap: 10px;
}

.ld-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ld-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.ld-footer-social a:hover {
  border-color: var(--ld-accent);
  color: var(--ld-accent);
  background: rgba(0,212,255,0.08);
}

.ld-footer-col-title {
  font-family: var(--ld-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--ld-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ld-footer-links { list-style: none; }

.ld-footer-links li { margin-bottom: 10px; }

.ld-footer-links a {
  font-family: var(--ld-font-ui);
  font-size: 0.88rem;
  color: var(--ld-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ld-footer-links a:hover { color: var(--ld-accent); }

.ld-footer-bottom {
  border-top: 1px solid var(--ld-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ld-footer-copy {
  font-family: var(--ld-font-ui);
  font-size: 0.82rem;
  color: var(--ld-text-muted);
}

.ld-footer-legal {
  display: flex;
  gap: 20px;
  list-style: none;
}

.ld-footer-legal a {
  font-family: var(--ld-font-ui);
  font-size: 0.82rem;
  color: var(--ld-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ld-footer-legal a:hover { color: var(--ld-accent); }

/* ========================= CONTACT FORM ========================= */
.ld-contact-form {
  background: var(--ld-card-bg);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 40px;
}

.ld-form-group { margin-bottom: 24px; }

.ld-form-label {
  display: block;
  font-family: var(--ld-font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ld-text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ld-form-input,
.ld-form-textarea,
.ld-form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--ld-text);
  font-family: var(--ld-font-ui);
  font-size: 0.92rem;
  transition: all 0.2s ease;
  outline: none;
}

.ld-form-input:focus,
.ld-form-textarea:focus {
  border-color: var(--ld-accent);
  background: rgba(0,212,255,0.04);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
}

.ld-form-textarea { min-height: 140px; resize: vertical; }

.ld-form-captcha {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ld-border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

/* ========================= TABS ========================= */
.ld-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 28px;
  border: 1px solid var(--ld-border);
}

.ld-tab-btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--ld-text-muted);
  border-radius: 7px;
  cursor: pointer;
  font-family: var(--ld-font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.ld-tab-btn.active {
  background: var(--ld-gradient-accent);
  color: #fff;
}

.ld-tab-pane { display: none; }
.ld-tab-pane.active { display: block; }

/* ========================= ACCORDION ========================= */
.ld-accordion-item {
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.ld-accordion-trigger {
  width: 100%;
  padding: 18px 22px;
  background: var(--ld-card-bg);
  border: none;
  color: var(--ld-text);
  font-family: var(--ld-font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.ld-accordion-trigger:hover { background: rgba(0,212,255,0.05); }
.ld-accordion-trigger i { transition: transform 0.3s; color: var(--ld-accent); }
.ld-accordion-trigger.open i { transform: rotate(180deg); }

.ld-accordion-content {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-family: var(--ld-font-ui);
  font-size: 0.92rem;
  color: var(--ld-text-muted);
  line-height: 1.7;
  background: rgba(0,0,0,0.2);
}

.ld-accordion-content.open {
  max-height: 500px;
  padding: 16px 22px 20px;
}

/* ========================= TIMELINE ========================= */
.ld-timeline {
  position: relative;
  padding: 0 0 0 36px;
}

.ld-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ld-accent), var(--ld-accent2));
}

.ld-timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.ld-timeline-dot {
  position: absolute;
  left: -32px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ld-accent);
  box-shadow: 0 0 12px rgba(0,212,255,0.5);
}

.ld-timeline-year {
  font-family: var(--ld-font-display);
  font-size: 0.85rem;
  color: var(--ld-accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.ld-timeline-title {
  font-family: var(--ld-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ld-timeline-text {
  font-family: var(--ld-font-ui);
  font-size: 0.9rem;
  color: var(--ld-text-muted);
  line-height: 1.6;
}

/* ========================= PAGE HERO ========================= */
.ld-page-hero {
  padding: 140px 0 70px;
  background: linear-gradient(180deg, rgba(26,5,51,0.4) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.ld-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.ld-breadcrumb {
  font-family: var(--ld-font-ui);
  font-size: 0.82rem;
  color: var(--ld-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ld-breadcrumb a { color: var(--ld-text-muted); text-decoration: none; }
.ld-breadcrumb a:hover { color: var(--ld-accent); }
.ld-breadcrumb i { font-size: 0.7rem; }

/* ========================= COOKIE BANNER ========================= */
.ld-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--ld-secondary);
  border: 1px solid var(--ld-border);
  border-radius: var(--ld-radius-lg);
  padding: 24px 28px;
  z-index: 9999;
  box-shadow: var(--ld-shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

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

.ld-cookie-title {
  font-family: var(--ld-font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ld-cookie-text {
  font-family: var(--ld-font-ui);
  font-size: 0.85rem;
  color: var(--ld-text-muted);
  line-height: 1.6;
}

.ld-cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ========================= LEGAL PAGES ========================= */
.ld-legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.ld-legal-content h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ld-border);
}

.ld-legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--ld-accent);
}

.ld-legal-content p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: #cbd5e1;
  font-family: var(--ld-font-ui);
  line-height: 1.8;
}

.ld-legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.ld-legal-content li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #cbd5e1;
  font-family: var(--ld-font-ui);
  line-height: 1.7;
}

/* ========================= SCROLLBAR ========================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ld-primary); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ld-accent); }

/* ========================= RESPONSIVE ========================= */
@media (max-width: 992px) {
  .ld-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ld-hero-visual { display: none; }
}

@media (max-width: 768px) {
  .ld-nav-links, .ld-nav-cta { display: none; }
  .ld-hamburger { display: flex; }
  .ld-footer-grid { grid-template-columns: 1fr; }
  .ld-hero-stats { gap: 24px; }
  .ld-gallery-item-lg { grid-column: span 12; }
  .ld-gallery-item-sm { grid-column: span 6; }
  .ld-contact-form { padding: 24px; }
  .ld-test-container { padding: 24px; }
  .ld-tabs { flex-direction: column; }
}

@media (max-width: 480px) {
  .ld-gallery-item-sm { grid-column: span 12; }
  .ld-hero-cta-group { flex-direction: column; }
  .ld-hero-cta-group .ld-btn { width: 100%; justify-content: center; }
}


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

html{
  overflow-x: hidden;
}