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

:root {
  --hyjgkj-primary: #FF6B35;
  --hyjgkj-primary-light: #FF8A5B;
  --hyjgkj-primary-dark: #E55A28;
  --hyjgkj-primary-glow: rgba(255, 107, 53, 0.25);
  --hyjgkj-secondary: #1a1a2e;
  --hyjgkj-secondary-light: #16213e;
  --hyjgkj-accent: #F7931E;
  --hyjgkj-accent-light: #FFB347;
  --hyjgkj-bg: #0f0f1a;
  --hyjgkj-bg-alt: #1a1a2e;
  --hyjgkj-surface: rgba(30, 30, 50, 0.8);
  --hyjgkj-surface-hover: rgba(50, 50, 80, 0.9);
  --hyjgkj-text: #FFFFFF;
  --hyjgkj-text-light: #B8B8C8;
  --hyjgkj-text-muted: #6B6B7B;
  --hyjgkj-border: rgba(255, 255, 255, 0.1);
  --hyjgkj-border-light: rgba(255, 255, 255, 0.05);
  --hyjgkj-radius: 16px;
  --hyjgkj-radius-lg: 24px;
  --hyjgkj-radius-sm: 8px;
  --hyjgkj-radius-full: 9999px;
  --hyjgkj-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --hyjgkj-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.7);
  --hyjgkj-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.8);
  --hyjgkj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hyjgkj-glass-blur: blur(12px);
}

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

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

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

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

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

.hyjgkj-glass {
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: var(--hyjgkj-glass-blur);
  border: 1px solid var(--hyjgkj-border);
}

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

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

.hyjgkj-preloader-logo {
  display: none !important;
}

.hyjgkj-preloader-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: hyjgkj-pulse-text 1.2s ease-in-out infinite;
}

.hyjgkj-preloader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  margin-top: 24px;
  overflow: hidden;
}

.hyjgkj-preloader-progress {
  height: 100%;
  background: white;
  border-radius: 3px;
  animation: hyjgkj-progress 3s ease-in-out forwards;
}

@keyframes hyjgkj-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

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

@keyframes hyjgkj-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

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

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

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

.hyjgkj-cookie-icon {
  font-size: 32px;
  flex-shrink: 0;
}

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

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

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

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

.hyjgkj-btn-cookie {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--hyjgkj-radius-full);
  border: none;
  cursor: pointer;
  transition: var(--hyjgkj-transition);
}

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

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

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

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

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

/* ===================== HEADER ===================== */
.hyjgkj-header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: transparent;
  border-bottom: none;
  transition: var(--hyjgkj-transition);
}

.hyjgkj-header-inner {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  border-radius: var(--hyjgkj-radius-full);
}

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

.hyjgkj-header-logo-img {
  height: 42px;
  width: auto;
}

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

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

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

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

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

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

.hyjgkj-hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--hyjgkj-text);
  border-radius: 2px;
  transition: var(--hyjgkj-transition);
}

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

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

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

/* ===================== MOBILE NAV ===================== */
.hyjgkj-mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 26, 0.98);
  padding: 110px 32px 32px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

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

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

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

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

.hyjgkj-hero-bg-shape {
  position: absolute;
  top: -180px;
  right: -180px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hyjgkj-hero-bg-shape-2 {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247,147,30,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hyjgkj-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;
}

.hyjgkj-hero-content {
  animation: hyjgkj-fadeInUp 0.7s ease-out;
}

.hyjgkj-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hyjgkj-primary-glow);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--hyjgkj-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--hyjgkj-radius-full);
  margin-bottom: 24px;
}

.hyjgkj-hero-badge-icon {
  font-size: 14px;
}

.hyjgkj-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hyjgkj-text);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

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

.hyjgkj-hero-desc {
  font-size: 17px;
  color: var(--hyjgkj-text-light);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 500px;
}

.hyjgkj-hero-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

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

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

.hyjgkj-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hyjgkj-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--hyjgkj-primary), var(--hyjgkj-primary-dark));
  padding: 14px 28px;
  border-radius: var(--hyjgkj-radius-full);
  text-decoration: none;
  transition: var(--hyjgkj-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--hyjgkj-primary-glow);
}

.hyjgkj-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.35);
}

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

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

.hyjgkj-hero-image-wrap {
  position: relative;
  animation: hyjgkj-fadeInRight 0.7s ease-out 0.15s both;
}

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

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

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

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

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

/* ===================== SECTION ===================== */
.hyjgkj-section {
  padding: 80px 32px;
}

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

.hyjgkj-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hyjgkj-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.hyjgkj-section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hyjgkj-primary);
  margin-bottom: 14px;
}

.hyjgkj-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 14px;
  line-height: 1.2;
}

.hyjgkj-section-desc {
  font-size: 17px;
  color: var(--hyjgkj-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== STATS ===================== */
.hyjgkj-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius-lg);
  padding: 32px;
  box-shadow: var(--hyjgkj-shadow);
}

.hyjgkj-stat-item {
  text-align: center;
  padding: 16px;
}

.hyjgkj-stat-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--hyjgkj-primary);
  line-height: 1.2;
}

.hyjgkj-stat-label {
  display: block;
  font-size: 14px;
  color: var(--hyjgkj-text-muted);
  margin-top: 6px;
  font-weight: 500;
}

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

.hyjgkj-feature-card {
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius);
  padding: 32px;
  transition: var(--hyjgkj-transition);
  border: 1px solid var(--hyjgkj-border);
}

.hyjgkj-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hyjgkj-shadow-lg);
  border-color: var(--hyjgkj-primary);
}

.hyjgkj-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--hyjgkj-primary-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.hyjgkj-feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 10px;
}

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

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

.hyjgkj-specs-image-wrap {
  position: relative;
}

.hyjgkj-specs-product-img {
  width: 100%;
  border-radius: var(--hyjgkj-radius-lg);
  box-shadow: var(--hyjgkj-shadow-xl);
}

.hyjgkj-specs-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 24px;
}

.hyjgkj-specs-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hyjgkj-specs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius-sm);
  transition: var(--hyjgkj-transition);
}

.hyjgkj-specs-row:hover {
  background: var(--hyjgkj-surface-hover);
}

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

.hyjgkj-specs-label {
  font-size: 14px;
  color: var(--hyjgkj-text-muted);
  font-weight: 500;
  min-width: 120px;
}

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

/* ===================== COMPARE GRID ===================== */
.hyjgkj-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.hyjgkj-compare-card.hyjgkj-compare-good {
  border-color: var(--hyjgkj-primary);
}

.hyjgkj-compare-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 20px;
}

.hyjgkj-compare-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

.hyjgkj-icon-cross {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

.hyjgkj-icon-check {
  background: var(--hyjgkj-primary-glow);
  color: var(--hyjgkj-primary);
}

/* ===================== PACKAGE BOX ===================== */
.hyjgkj-package-box {
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius-lg);
  padding: 36px;
  border: 1px solid var(--hyjgkj-border);
  box-shadow: var(--hyjgkj-shadow);
}

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

.hyjgkj-package-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hyjgkj-package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--hyjgkj-text-light);
  padding: 12px 16px;
  background: var(--hyjgkj-bg);
  border-radius: var(--hyjgkj-radius-sm);
}

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

/* ===================== WARRANTY GRID ===================== */
.hyjgkj-warranty-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.hyjgkj-warranty-card {
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius-lg);
  padding: 36px;
  text-align: center;
  border: 1px solid var(--hyjgkj-border);
  transition: var(--hyjgkj-transition);
}

.hyjgkj-warranty-card:hover {
  transform: translateY(-4px);
  border-color: var(--hyjgkj-primary);
}

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

.hyjgkj-warranty-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--hyjgkj-primary);
  margin-bottom: 8px;
}

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

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

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

.hyjgkj-faq-item {
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius);
  overflow: hidden;
  border: 1px solid var(--hyjgkj-border);
}

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

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

.hyjgkj-faq-toggle {
  font-size: 24px;
  color: var(--hyjgkj-primary);
  transition: var(--hyjgkj-transition);
}

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

.hyjgkj-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

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

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

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

.hyjgkj-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hyjgkj-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hyjgkj-cta-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--hyjgkj-primary);
  margin-bottom: 16px;
}

.hyjgkj-cta-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  margin: 0 0 16px;
  line-height: 1.2;
}

.hyjgkj-cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 32px;
}

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

/* ===================== FOOTER ===================== */
.hyjgkj-footer {
  background: var(--hyjgkj-bg);
  padding: 60px 32px 30px;
  border-top: 1px solid var(--hyjgkj-border);
}

.hyjgkj-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hyjgkj-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.hyjgkj-footer-brand {
  max-width: 300px;
}

.hyjgkj-footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.hyjgkj-footer-logo-img {
  height: 40px;
  width: auto;
}

.hyjgkj-footer-tagline {
  font-size: 14px;
  color: var(--hyjgkj-text-muted);
  line-height: 1.7;
  margin: 0;
}

.hyjgkj-footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hyjgkj-footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hyjgkj-footer-nav-item {
  font-size: 14px;
}

.hyjgkj-footer-nav-item .hyjgkj-a {
  color: var(--hyjgkj-text-light);
  transition: var(--hyjgkj-transition);
}

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

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

.hyjgkj-footer-copyright {
  font-size: 13px;
  color: var(--hyjgkj-text-muted);
  margin: 0;
}

.hyjgkj-footer-disclaimer {
  font-size: 11px;
  color: var(--hyjgkj-text-muted);
  margin: 0;
  max-width: 600px;
  text-align: right;
}

/* ===================== PRODUCT PRICE TAG ===================== */
.hyjgkj-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 16px 0;
}

.hyjgkj-price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--hyjgkj-primary);
}

.hyjgkj-price-label {
  font-size: 14px;
  color: var(--hyjgkj-text-muted);
}

/* ===================== PRODUCT CARD ===================== */
.hyjgkj-product-card {
  background: var(--hyjgkj-surface);
  border-radius: var(--hyjgkj-radius-lg);
  padding: 28px;
  border: 1px solid var(--hyjgkj-border);
  text-align: center;
}

.hyjgkj-product-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--hyjgkj-secondary), var(--hyjgkj-secondary-light));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--hyjgkj-radius-full);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hyjgkj-product-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 8px;
}

.hyjgkj-product-brand {
  font-size: 13px;
  color: var(--hyjgkj-text-muted);
  margin: 0 0 16px;
}

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

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

.hyjgkj-contact-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 0 0 24px;
}

.hyjgkj-contact-detail-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.hyjgkj-contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--hyjgkj-primary-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

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

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

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

.hyjgkj-contact-link:hover {
  text-decoration: underline;
}

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

.hyjgkj-contact-form {
  display: flex;
  flex-direction: column;
}

.hyjgkj-form-group {
  margin-bottom: 18px;
}

.hyjgkj-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--hyjgkj-text);
  margin-bottom: 8px;
}

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

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

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

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

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

.hyjgkj-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--hyjgkj-primary-glow);
}

/* ===================== LEGAL PAGES ===================== */
.hyjgkj-legal-header {
  background: linear-gradient(135deg, var(--hyjgkj-primary) 0%, var(--hyjgkj-primary-dark) 100%);
  padding: 56px 32px;
  text-align: center;
}

.hyjgkj-legal-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}

.hyjgkj-legal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: white;
  margin: 0;
}

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

.hyjgkj-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.hyjgkj-legal-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hyjgkj-text);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--hyjgkj-border);
}

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

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

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

.hyjgkj-legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.hyjgkj-legal-list-item {
  font-size: 15px;
  color: var(--hyjgkj-text-light);
  padding-left: 20px;
  position: relative;
}

.hyjgkj-legal-list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--hyjgkj-primary);
  font-weight: bold;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hyjgkj-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 32px;
  }
  
  .hyjgkj-hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hyjgkj-hero-meta {
    justify-content: center;
  }
  
  .hyjgkj-hero-actions {
    justify-content: center;
  }
  
  .hyjgkj-hero-image-wrap {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hyjgkj-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hyjgkj-specs-layout {
    grid-template-columns: 1fr;
  }
  
  .hyjgkj-footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hyjgkj-header-nav {
    display: none;
  }
  
  .hyjgkj-hamburger {
    display: flex;
  }
  
  .hyjgkj-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hyjgkj-features-grid {
    grid-template-columns: 1fr;
  }
  
  .hyjgkj-compare-grid {
    grid-template-columns: 1fr;
  }
  
  .hyjgkj-warranty-grid {
    grid-template-columns: 1fr;
  }
  
  .hyjgkj-package-list {
    grid-template-columns: 1fr;
  }
  
  .hyjgkj-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hyjgkj-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hyjgkj-footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hyjgkj-section {
    padding: 60px 20px;
  }
  
  .hyjgkj-hero-inner {
    padding: 40px 20px;
  }
  
  .hyjgkj-hero-actions {
    flex-direction: column;
  }
  
  .hyjgkj-btn-primary,
  .hyjgkj-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   THANK YOU MODAL POPUP
   ========================================================================== */
.hyjgkj-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 20, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hyjgkj-modal-overlay.hyjgkj-modal-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hyjgkj-modal-card {
  position: relative;
  background: linear-gradient(145deg, rgba(28, 28, 48, 0.96), rgba(18, 18, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--hyjgkj-radius-lg, 24px);
  padding: 44px 36px 36px;
  max-width: 480px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
              0 0 50px rgba(255, 107, 53, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hyjgkj-modal-overlay.hyjgkj-modal-visible .hyjgkj-modal-card {
  transform: scale(1) translateY(0);
}

.hyjgkj-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--hyjgkj-text-light, #B8B8C8);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--hyjgkj-transition);
}

.hyjgkj-modal-close:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: var(--hyjgkj-primary, #FF6B35);
  color: #FFFFFF;
  transform: rotate(90deg);
}

.hyjgkj-modal-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hyjgkj-modal-icon-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent 70%);
  animation: hyjgkj-pulse-glow 2s infinite ease-in-out;
}

@keyframes hyjgkj-pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

.hyjgkj-modal-icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hyjgkj-primary, #FF6B35), var(--hyjgkj-accent, #F7931E));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.hyjgkj-modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.hyjgkj-modal-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--hyjgkj-text-light, #B8B8C8);
  margin: 0 0 24px;
}

.hyjgkj-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--hyjgkj-radius-full, 9999px);
  margin-bottom: 28px;
}

.hyjgkj-modal-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px #34D399;
}

.hyjgkj-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--hyjgkj-radius-full, 9999px);
  background: linear-gradient(135deg, var(--hyjgkj-primary, #FF6B35), var(--hyjgkj-accent, #F7931E));
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--hyjgkj-transition);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.hyjgkj-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.5);
}

.hyjgkj-modal-btn:active {
  transform: translateY(0);
}