@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

.lgbjx-root,
.lgbjx-body {
  --lgbjx-primary: #10B981;
  --lgbjx-primary-light: #34D399;
  --lgbjx-primary-dark: #059669;
  --lgbjx-primary-glow: rgba(16, 185, 129, 0.25);
  --lgbjx-secondary: #0F172A;
  --lgbjx-secondary-light: #1E293B;
  --lgbjx-accent: #F59E0B;
  --lgbjx-accent-light: #FBBF24;
  --lgbjx-bg: #F0FDF4;
  --lgbjx-bg-alt: #DCFCE7;
  --lgbjx-surface: #FFFFFF;
  --lgbjx-surface-hover: #F0FDF4;
  --lgbjx-text: #0F172A;
  --lgbjx-text-light: #475569;
  --lgbjx-text-muted: #94A3B8;
  --lgbjx-border: #E2E8F0;
  --lgbjx-border-light: #F1F5F9;
  --lgbjx-radius: 16px;
  --lgbjx-radius-lg: 24px;
  --lgbjx-radius-sm: 10px;
  --lgbjx-radius-full: 9999px;
  --lgbjx-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --lgbjx-shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --lgbjx-shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --lgbjx-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lgbjx-box {
  box-sizing: border-box;
}

.lgbjx-body {
  margin: 0;
  padding: 0;
  background: var(--lgbjx-bg);
  color: var(--lgbjx-text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  box-sizing: border-box;
}

.lgbjx-a {
  text-decoration: none;
  color: inherit;
}

.lgbjx-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lgbjx-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.lgbjx-wrapper {
  min-height: 100vh;
}

/* ===================== PRELOADER ===================== */
.lgbjx-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--lgbjx-secondary) 0%, var(--lgbjx-secondary-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.lgbjx-preloader.lgbjx-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lgbjx-preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--lgbjx-primary);
  border-radius: 50%;
  margin-bottom: 24px;
  animation: lgbjx-spin 0.9s linear infinite;
}

@keyframes lgbjx-spin {
  to { transform: rotate(360deg); }
}

.lgbjx-preloader-text {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: white;
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: lgbjx-pulse-text 1.5s ease-in-out infinite;
}

@keyframes lgbjx-pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ===================== COOKIE BANNER ===================== */
.lgbjx-cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--lgbjx-surface);
  padding: 20px 24px;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--lgbjx-primary);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
}

.lgbjx-cookie-overlay.lgbjx-visible {
  transform: translateY(0);
}

.lgbjx-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.lgbjx-cookie-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.lgbjx-cookie-text {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--lgbjx-text-light);
  line-height: 1.6;
  min-width: 200px;
}

.lgbjx-cookie-text .lgbjx-cookie-link {
  color: var(--lgbjx-primary);
  text-decoration: none;
  font-weight: 600;
}

.lgbjx-cookie-text .lgbjx-cookie-link:hover {
  text-decoration: underline;
}

.lgbjx-cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.lgbjx-btn-cookie {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--lgbjx-radius-full);
  border: none;
  cursor: pointer;
  transition: var(--lgbjx-transition);
}

.lgbjx-btn-cookie-accept {
  background: var(--lgbjx-primary);
  color: white;
}

.lgbjx-btn-cookie-accept:hover {
  background: var(--lgbjx-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--lgbjx-primary-glow);
}

.lgbjx-btn-cookie-reject {
  background: transparent;
  color: var(--lgbjx-text-light);
  border: 2px solid var(--lgbjx-border);
}

.lgbjx-btn-cookie-reject:hover {
  background: var(--lgbjx-bg-alt);
  border-color: var(--lgbjx-text-muted);
}

/* ===================== COOKIE MODAL ===================== */
.lgbjx-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

.lgbjx-modal-overlay.lgbjx-modal-open {
  display: flex;
}

.lgbjx-modal-box {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  box-shadow: var(--lgbjx-shadow-xl);
}

.lgbjx-modal-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.lgbjx-modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 16px;
}

.lgbjx-modal-desc {
  font-size: 16px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
  margin: 0 0 28px;
}

.lgbjx-modal-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lgbjx-modal-close-btn {
  padding: 14px 36px;
  background: var(--lgbjx-primary);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--lgbjx-radius-full);
  cursor: pointer;
  transition: var(--lgbjx-transition);
}

.lgbjx-modal-close-btn:hover {
  background: var(--lgbjx-primary-dark);
}

/* ===================== AFFILIATE BANNER ===================== */
.lgbjx-affiliate-banner {
  background: linear-gradient(90deg, var(--lgbjx-secondary), var(--lgbjx-secondary-light));
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
}

/* ===================== HEADER ===================== */
.lgbjx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lgbjx-border-light);
  transition: var(--lgbjx-transition);
}

.lgbjx-header.lgbjx-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.lgbjx-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.lgbjx-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.lgbjx-header-logo-img {
  height: 44px;
  width: auto;
}

.lgbjx-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lgbjx-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--lgbjx-text-light);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--lgbjx-radius-full);
  transition: var(--lgbjx-transition);
  position: relative;
}

.lgbjx-nav-link:hover {
  color: var(--lgbjx-primary);
  background: var(--lgbjx-primary-glow);
}

.lgbjx-nav-link.lgbjx-active {
  color: white;
  background: var(--lgbjx-primary);
}

.lgbjx-nav-link.lgbjx-active:hover {
  background: var(--lgbjx-primary-dark);
}

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

.lgbjx-hamburger-line {
  width: 26px;
  height: 3px;
  background: var(--lgbjx-text);
  border-radius: 3px;
  transition: var(--lgbjx-transition);
}

.lgbjx-hamburger.lgbjx-open .lgbjx-hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.lgbjx-hamburger.lgbjx-open .lgbjx-hamburger-line:nth-child(2) {
  opacity: 0;
}

.lgbjx-hamburger.lgbjx-open .lgbjx-hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== MOBILE NAV ===================== */
.lgbjx-mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(240, 253, 244, 0.98);
  z-index: 999;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.lgbjx-mobile-nav.lgbjx-open {
  transform: translateX(0);
}

.lgbjx-mobile-nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--lgbjx-text-light);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--lgbjx-radius-sm);
  transition: var(--lgbjx-transition);
  border-bottom: 1px solid var(--lgbjx-border-light);
}

.lgbjx-mobile-nav-link:hover {
  color: var(--lgbjx-primary);
  background: var(--lgbjx-primary-glow);
}

/* ===================== HERO SECTION ===================== */
.lgbjx-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--lgbjx-bg) 0%, var(--lgbjx-bg-alt) 100%);
}

.lgbjx-hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lgbjx-hero-bg-shape-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lgbjx-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.lgbjx-hero-content {
  animation: lgbjx-fadeInUp 0.8s ease-out;
}

@keyframes lgbjx-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lgbjx-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.lgbjx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lgbjx-primary-glow);
  border: 1px solid rgba(16,185,129,0.2);
  color: var(--lgbjx-primary-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--lgbjx-radius-full);
  margin-bottom: 28px;
}

.lgbjx-hero-badge-icon {
  font-size: 16px;
}

.lgbjx-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--lgbjx-text);
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.lgbjx-hero-title .lgbjx-title-accent {
  color: var(--lgbjx-primary);
  display: block;
}

.lgbjx-hero-desc {
  font-size: 18px;
  color: var(--lgbjx-text-light);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 520px;
}

.lgbjx-hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lgbjx-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--lgbjx-text-light);
  font-weight: 500;
}

.lgbjx-hero-meta-icon {
  width: 24px;
  height: 24px;
  background: var(--lgbjx-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

.lgbjx-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lgbjx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--lgbjx-primary), var(--lgbjx-primary-dark));
  padding: 16px 32px;
  border-radius: var(--lgbjx-radius-full);
  text-decoration: none;
  transition: var(--lgbjx-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--lgbjx-primary-glow);
}

.lgbjx-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(16,185,129,0.35);
}

.lgbjx-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--lgbjx-text);
  background: var(--lgbjx-surface);
  padding: 16px 32px;
  border-radius: var(--lgbjx-radius-full);
  text-decoration: none;
  transition: var(--lgbjx-transition);
  border: 2px solid var(--lgbjx-border);
}

.lgbjx-btn-secondary:hover {
  background: var(--lgbjx-surface-hover);
  border-color: var(--lgbjx-primary);
  color: var(--lgbjx-primary);
}

.lgbjx-hero-image-wrap {
  position: relative;
  animation: lgbjx-fadeInRight 0.8s ease-out 0.2s both;
}

.lgbjx-hero-image-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--lgbjx-shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--lgbjx-transition);
}

.lgbjx-hero-image-card:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.lgbjx-hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--lgbjx-radius);
}

.lgbjx-hero-price-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: var(--lgbjx-accent);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--lgbjx-radius-full);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ===================== SECTIONS ===================== */
.lgbjx-section {
  padding: 80px 0;
}

.lgbjx-section.lgbjx-section-alt {
  background: var(--lgbjx-bg-alt);
}

.lgbjx-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lgbjx-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.lgbjx-section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lgbjx-primary);
  margin-bottom: 14px;
}

.lgbjx-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 16px;
  line-height: 1.2;
}

.lgbjx-section-desc {
  font-size: 18px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================== STATS ===================== */
.lgbjx-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lgbjx-stat-item {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--lgbjx-shadow);
  transition: var(--lgbjx-transition);
}

.lgbjx-stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--lgbjx-shadow-lg);
}

.lgbjx-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--lgbjx-primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.lgbjx-stat-label {
  font-size: 14px;
  color: var(--lgbjx-text-light);
  font-weight: 500;
}

/* ===================== FEATURES ===================== */
.lgbjx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.lgbjx-feature-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 32px;
  box-shadow: var(--lgbjx-shadow);
  transition: var(--lgbjx-transition);
  position: relative;
  overflow: hidden;
}

.lgbjx-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lgbjx-shadow-lg);
}

.lgbjx-feature-card-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--lgbjx-primary), var(--lgbjx-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.lgbjx-feature-card:hover .lgbjx-feature-card-before {
  transform: scaleX(1);
}

.lgbjx-feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.lgbjx-feature-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 12px;
}

.lgbjx-feature-desc {
  font-size: 15px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===================== SPECS ===================== */
.lgbjx-specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lgbjx-specs-image-wrap {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 40px;
  box-shadow: var(--lgbjx-shadow-lg);
}

.lgbjx-specs-product-img {
  width: 100%;
  border-radius: var(--lgbjx-radius);
}

.lgbjx-specs-content {
  padding: 20px 0;
}

.lgbjx-specs-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 28px;
}

.lgbjx-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lgbjx-specs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lgbjx-border-light);
}

.lgbjx-specs-row:last-child {
  border-bottom: none;
}

.lgbjx-specs-dot {
  width: 10px;
  height: 10px;
  background: var(--lgbjx-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.lgbjx-specs-label {
  flex: 1;
  font-size: 15px;
  color: var(--lgbjx-text-light);
}

.lgbjx-specs-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--lgbjx-text);
}

/* ===================== COMPARISON ===================== */
.lgbjx-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.lgbjx-compare-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 32px;
  box-shadow: var(--lgbjx-shadow);
  border: 2px solid var(--lgbjx-border);
}

.lgbjx-compare-card.lgbjx-compare-good {
  border-color: var(--lgbjx-primary);
  background: linear-gradient(180deg, rgba(16,185,129,0.05) 0%, var(--lgbjx-surface) 100%);
}

.lgbjx-compare-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 24px;
}

.lgbjx-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgbjx-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--lgbjx-text-light);
  line-height: 1.6;
}

.lgbjx-compare-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.lgbjx-compare-icon.lgbjx-icon-cross {
  background: #FEE2E2;
  color: #EF4444;
}

.lgbjx-compare-icon.lgbjx-icon-check {
  background: #D1FAE5;
  color: var(--lgbjx-primary);
}

/* ===================== PACKAGE BOX ===================== */
.lgbjx-package-box {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 40px;
  box-shadow: var(--lgbjx-shadow);
  border: 2px solid var(--lgbjx-primary);
}

.lgbjx-package-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 24px;
  text-align: center;
}

.lgbjx-package-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lgbjx-package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lgbjx-text-light);
}

.lgbjx-package-check {
  width: 28px;
  height: 28px;
  background: var(--lgbjx-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* ===================== WARRANTY ===================== */
.lgbjx-warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.lgbjx-warranty-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--lgbjx-shadow);
  transition: var(--lgbjx-transition);
}

.lgbjx-warranty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lgbjx-shadow-lg);
}

.lgbjx-warranty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.lgbjx-warranty-value {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--lgbjx-primary);
  display: block;
  margin-bottom: 8px;
}

.lgbjx-warranty-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--lgbjx-text);
  display: block;
  margin-bottom: 8px;
}

.lgbjx-warranty-sub {
  font-size: 14px;
  color: var(--lgbjx-text-muted);
}

/* ===================== QUOTES ===================== */
.lgbjx-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.lgbjx-quote-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 32px;
  box-shadow: var(--lgbjx-shadow);
  display: flex;
  gap: 20px;
  transition: var(--lgbjx-transition);
}

.lgbjx-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lgbjx-shadow-lg);
}

.lgbjx-quote-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--lgbjx-primary), var(--lgbjx-primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.lgbjx-quote-body {
  flex: 1;
}

.lgbjx-quote-stars {
  color: var(--lgbjx-accent);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.lgbjx-quote-text {
  font-size: 15px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
  margin: 0 0 16px;
  font-style: italic;
}

.lgbjx-quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--lgbjx-text);
}

/* ===================== FAQ ===================== */
.lgbjx-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgbjx-faq-item {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  overflow: hidden;
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--lgbjx-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--lgbjx-transition);
}

.lgbjx-faq-question:hover {
  color: var(--lgbjx-primary);
}

.lgbjx-faq-toggle {
  font-size: 24px;
  font-weight: 300;
  color: var(--lgbjx-primary);
  transition: transform 0.3s ease;
}

.lgbjx-faq-item.lgbjx-open .lgbjx-faq-toggle {
  transform: rotate(45deg);
}

.lgbjx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.lgbjx-faq-item.lgbjx-open .lgbjx-faq-answer {
  max-height: 300px;
}

.lgbjx-faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
}

/* ===================== CTA ===================== */
.lgbjx-cta-section {
  background: linear-gradient(135deg, var(--lgbjx-secondary) 0%, var(--lgbjx-secondary-light) 100%);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lgbjx-cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lgbjx-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.lgbjx-cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lgbjx-primary-light);
  margin-bottom: 16px;
  display: block;
}

.lgbjx-cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
  line-height: 1.2;
}

.lgbjx-cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 40px;
}

.lgbjx-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== FOOTER ===================== */
.lgbjx-footer {
  background: var(--lgbjx-secondary);
  padding: 60px 0 30px;
}

.lgbjx-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.lgbjx-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.lgbjx-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lgbjx-footer-logo {
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.lgbjx-footer-logo-img {
  height: 44px;
  width: auto;
}

.lgbjx-footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

.lgbjx-footer-nav-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.lgbjx-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgbjx-footer-nav-item .lgbjx-a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--lgbjx-transition);
}

.lgbjx-footer-nav-item .lgbjx-a:hover {
  color: var(--lgbjx-primary-light);
}

.lgbjx-footer-nav-col {
  display: block;
}

.lgbjx-footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.lgbjx-footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.lgbjx-footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  max-width: 500px;
  text-align: right;
}

/* ===================== PAGE HEADER ===================== */
.lgbjx-page-header {
  background: linear-gradient(135deg, var(--lgbjx-secondary) 0%, var(--lgbjx-secondary-light) 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lgbjx-page-header-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(16,185,129,0.15);
  border-radius: 50%;
}

.lgbjx-page-header-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lgbjx-page-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lgbjx-primary-light);
  margin-bottom: 14px;
}

.lgbjx-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  line-height: 1.2;
}

.lgbjx-page-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0;
}

/* ===================== REVIEW LAYOUT ===================== */
.lgbjx-review-layout {
  display: grid;
  grid-template-columns: 1.3fr 380px;
  gap: 48px;
  align-items: start;
}

.lgbjx-review-image-hero {
  width: 100%;
  border-radius: var(--lgbjx-radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-review-content {
  /* empty class for structure */
}

.lgbjx-review-text {
  font-size: 17px;
  color: var(--lgbjx-text-light);
  line-height: 1.8;
  margin: 0 0 24px;
}

.lgbjx-review-text .lgbjx-first-letter {
  font-size: 56px;
  font-weight: 700;
  color: var(--lgbjx-primary);
  float: left;
  line-height: 0.8;
  margin: 8px 16px 0 0;
}

.lgbjx-pullquote {
  border-left: 4px solid var(--lgbjx-primary);
  background: var(--lgbjx-primary-glow);
  border-radius: 0 var(--lgbjx-radius) var(--lgbjx-radius) 0;
  padding: 28px 32px;
  margin: 36px 0;
}

.lgbjx-pullquote-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--lgbjx-text);
  line-height: 1.5;
  margin: 0 0 12px;
  font-style: italic;
  font-family: 'Outfit', sans-serif;
}

.lgbjx-pullquote-cite {
  font-size: 14px;
  color: var(--lgbjx-text-muted);
  font-style: normal;
  font-weight: 500;
}

.lgbjx-review-sidebar {
  position: sticky;
  top: 100px;
}

.lgbjx-sidebar-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--lgbjx-border);
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-sidebar-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--lgbjx-primary);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.lgbjx-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lgbjx-verdict-item {
  text-align: center;
  padding: 18px 10px;
  background: var(--lgbjx-bg);
  border-radius: var(--lgbjx-radius-sm);
}

.lgbjx-verdict-score {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--lgbjx-primary);
  display: block;
}

.lgbjx-verdict-label {
  font-size: 12px;
  color: var(--lgbjx-text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================== ORDER LAYOUT ===================== */
.lgbjx-order-layout {
  display: grid;
  grid-template-columns: 1.3fr 400px;
  gap: 48px;
  align-items: start;
}

.lgbjx-order-gallery {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-order-main-img {
  width: 100%;
  border-radius: var(--lgbjx-radius);
  margin-bottom: 16px;
}

.lgbjx-order-thumb-row {
  display: flex;
  gap: 12px;
}

.lgbjx-order-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--lgbjx-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--lgbjx-transition);
}

.lgbjx-order-thumb:hover,
.lgbjx-order-thumb.lgbjx-thumb-active {
  border-color: var(--lgbjx-primary);
}

.lgbjx-order-sidebar {
  position: sticky;
  top: 100px;
}

.lgbjx-order-product-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius);
  padding: 32px;
  border: 1px solid var(--lgbjx-border);
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-order-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--lgbjx-secondary), var(--lgbjx-secondary-light));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--lgbjx-radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lgbjx-order-product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 8px;
  line-height: 1.3;
}

.lgbjx-order-product-subtitle {
  font-size: 14px;
  color: var(--lgbjx-text-muted);
  margin: 0 0 24px;
}

.lgbjx-order-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.lgbjx-order-price {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--lgbjx-primary);
}

.lgbjx-order-price-orig {
  font-size: 20px;
  color: var(--lgbjx-text-muted);
  text-decoration: line-through;
}

.lgbjx-order-price-save {
  background: #D1FAE5;
  color: #059669;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--lgbjx-radius-full);
}

.lgbjx-order-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgbjx-order-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--lgbjx-text-light);
}

.lgbjx-order-highlight-dot {
  width: 8px;
  height: 8px;
  background: var(--lgbjx-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.lgbjx-order-divider {
  border: none;
  border-top: 1px solid var(--lgbjx-border);
  margin: 24px 0;
}

.lgbjx-order-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lgbjx-btn-order {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--lgbjx-secondary), var(--lgbjx-secondary-light));
  padding: 18px 32px;
  border-radius: var(--lgbjx-radius-full);
  text-decoration: none;
  transition: var(--lgbjx-transition);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.3);
}

.lgbjx-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
}

.lgbjx-btn-order-secondary {
  display: block;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--lgbjx-text);
  background: transparent;
  padding: 16px 32px;
  border-radius: var(--lgbjx-radius-full);
  text-decoration: none;
  transition: var(--lgbjx-transition);
  border: 2px solid var(--lgbjx-border);
}

.lgbjx-btn-order-secondary:hover {
  border-color: var(--lgbjx-primary);
  color: var(--lgbjx-primary);
}

.lgbjx-order-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--lgbjx-text-muted);
}

.lgbjx-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-sm);
  overflow: hidden;
}

.lgbjx-specs-table-row:nth-child(even) .lgbjx-specs-table-cell {
  background: var(--lgbjx-bg);
}

.lgbjx-specs-table-cell {
  padding: 14px 18px;
  font-size: 15px;
  border-bottom: 1px solid var(--lgbjx-border);
}

.lgbjx-specs-table-cell.lgbjx-cell-label {
  color: var(--lgbjx-text-light);
  font-weight: 500;
  width: 40%;
}

.lgbjx-specs-table-cell.lgbjx-cell-value {
  color: var(--lgbjx-text);
  font-weight: 600;
}

/* ===================== CONTACT PAGE ===================== */
.lgbjx-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lgbjx-contact-info-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 40px;
  border: 1px solid var(--lgbjx-border);
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-contact-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 0 0 28px;
}

.lgbjx-contact-detail-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.lgbjx-contact-detail-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--lgbjx-primary-glow), rgba(16,185,129,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.lgbjx-contact-detail-content {
  display: flex;
  flex-direction: column;
}

.lgbjx-contact-detail-label {
  font-size: 12px;
  color: var(--lgbjx-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.lgbjx-contact-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--lgbjx-text);
  line-height: 1.6;
}

.lgbjx-contact-detail-value .lgbjx-contact-link {
  color: var(--lgbjx-primary);
  text-decoration: none;
  font-weight: 600;
}

.lgbjx-contact-detail-value .lgbjx-contact-link:hover {
  text-decoration: underline;
}

.lgbjx-contact-form-card {
  background: var(--lgbjx-surface);
  border-radius: var(--lgbjx-radius-lg);
  padding: 40px;
  border: 1px solid var(--lgbjx-border);
  box-shadow: var(--lgbjx-shadow);
}

.lgbjx-contact-form {
  display: block;
}

.lgbjx-form-group {
  margin-bottom: 20px;
}

.lgbjx-form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lgbjx-text);
  margin-bottom: 10px;
}

.lgbjx-form-input {
  width: 100%;
  padding: 16px 18px;
  background: var(--lgbjx-bg);
  border: 2px solid var(--lgbjx-border);
  border-radius: var(--lgbjx-radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--lgbjx-text);
  transition: var(--lgbjx-transition);
  outline: none;
  box-sizing: border-box;
}

.lgbjx-form-input:focus {
  border-color: var(--lgbjx-primary);
  background: var(--lgbjx-surface);
}

.lgbjx-placeholder {
  color: var(--lgbjx-text-muted);
}

.lgbjx-form-textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--lgbjx-bg);
  border: 2px solid var(--lgbjx-border);
  border-radius: var(--lgbjx-radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--lgbjx-text);
  transition: var(--lgbjx-transition);
  outline: none;
  resize: vertical;
  min-height: 140px;
  box-sizing: border-box;
}

.lgbjx-form-textarea:focus {
  border-color: var(--lgbjx-primary);
  background: var(--lgbjx-surface);
}

.lgbjx-form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--lgbjx-primary), var(--lgbjx-primary-dark));
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--lgbjx-radius-full);
  cursor: pointer;
  transition: var(--lgbjx-transition);
  margin-top: 8px;
}

.lgbjx-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--lgbjx-primary-glow);
}

/* ===================== LEGAL PAGES ===================== */
.lgbjx-legal-page {
  min-height: 100vh;
  background: var(--lgbjx-bg);
}

.lgbjx-legal-header {
  background: linear-gradient(135deg, var(--lgbjx-secondary) 0%, var(--lgbjx-secondary-light) 100%);
  padding: 60px 32px;
  text-align: center;
}

.lgbjx-legal-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lgbjx-primary-light);
  margin-bottom: 14px;
}

.lgbjx-legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: white;
  margin: 0;
}

.lgbjx-legal-date {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
}

.lgbjx-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 32px 100px;
}

.lgbjx-legal-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--lgbjx-text);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--lgbjx-border);
}

.lgbjx-legal-section-title:first-of-type {
  margin-top: 0;
}

.lgbjx-legal-text {
  font-size: 16px;
  color: var(--lgbjx-text-light);
  line-height: 1.8;
  margin: 0 0 18px;
}

.lgbjx-legal-text .lgbjx-strong {
  color: var(--lgbjx-text);
  font-weight: 600;
}

.lgbjx-legal-text .lgbjx-a {
  color: var(--lgbjx-primary);
  text-decoration: none;
  font-weight: 500;
}

.lgbjx-legal-text .lgbjx-a:hover {
  text-decoration: underline;
}

.lgbjx-legal-list {
  padding-left: 24px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: disc;
}

.lgbjx-legal-list-item {
  font-size: 16px;
  color: var(--lgbjx-text-light);
  line-height: 1.7;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .lgbjx-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lgbjx-hero-content {
    order: 2;
  }

  .lgbjx-hero-image-wrap {
    order: 1;
  }

  .lgbjx-hero-desc {
    max-width: 100%;
  }

  .lgbjx-hero-meta {
    justify-content: center;
  }

  .lgbjx-hero-actions {
    justify-content: center;
  }

  .lgbjx-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgbjx-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lgbjx-specs-layout {
    grid-template-columns: 1fr;
  }

  .lgbjx-quotes-grid {
    grid-template-columns: 1fr;
  }

  .lgbjx-review-layout,
  .lgbjx-order-layout {
    grid-template-columns: 1fr;
  }

  .lgbjx-review-sidebar,
  .lgbjx-order-sidebar {
    position: static;
  }

  .lgbjx-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .lgbjx-contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lgbjx-header-nav {
    display: none;
  }

  .lgbjx-hamburger {
    display: flex;
  }

  .lgbjx-stats-row {
    grid-template-columns: 1fr;
  }

  .lgbjx-features-grid {
    grid-template-columns: 1fr;
  }

  .lgbjx-compare-grid {
    grid-template-columns: 1fr;
  }

  .lgbjx-warranty-grid {
    grid-template-columns: 1fr;
  }

  .lgbjx-footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lgbjx-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lgbjx-footer-disclaimer {
    text-align: center;
  }

  .lgbjx-package-list {
    grid-template-columns: 1fr;
  }

  .lgbjx-hero-inner {
    padding: 60px 20px;
  }

  .lgbjx-section {
    padding: 60px 0;
  }

  .lgbjx-section-inner {
    padding: 0 20px;
  }

  .lgbjx-verdict-grid {
    grid-template-columns: 1fr 1fr;
  }

  .lgbjx-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .lgbjx-cookie-actions {
    justify-content: center;
    width: 100%;
  }
}
