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

:root {
  --hndmlq-primary: #6366F1;
  --hndmlq-primary-light: #8B5CF6;
  --hndmlq-primary-dark: #4F46E5;
  --hndmlq-primary-glow: rgba(99, 102, 241, 0.2);
  --hndmlq-secondary: #1E1B4B;
  --hndmlq-secondary-light: #312E81;
  --hndmlq-accent: #F59E0B;
  --hndmlq-accent-light: #FBBF24;
  --hndmlq-bg: #F8FAFC;
  --hndmlq-bg-alt: #F1F5F9;
  --hndmlq-surface: #FFFFFF;
  --hndmlq-surface-hover: #F1F5F9;
  --hndmlq-text: #1E1B4B;
  --hndmlq-text-light: #64748B;
  --hndmlq-text-muted: #94A3B8;
  --hndmlq-border: #E2E8F0;
  --hndmlq-border-light: #F1F5F9;
  --hndmlq-radius: 16px;
  --hndmlq-radius-lg: 24px;
  --hndmlq-radius-sm: 10px;
  --hndmlq-radius-full: 9999px;
  --hndmlq-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --hndmlq-shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --hndmlq-shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
  --hndmlq-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.hndmlq-preloader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  animation: hndmlq-bounce 1.2s ease-in-out infinite;
}

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

.hndmlq-preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
  margin-top: 30px;
  overflow: hidden;
}

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

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

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

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

/* ===================== COOKIE BANNER ===================== */
.hndmlq-cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--hndmlq-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(--hndmlq-primary);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.1);
}

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

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

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

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

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

.hndmlq-cookie-text .hndmlq-cookie-link:hover {
  text-decoration: none;
}

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

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

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

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

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

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

/* ===================== AFFILIATE BANNER ===================== */
.hndmlq-affiliate-banner {
  background: linear-gradient(90deg, var(--hndmlq-secondary), var(--hndmlq-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 ===================== */
.hndmlq-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(--hndmlq-border-light);
  transition: var(--hndmlq-transition);
}

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

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

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

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

.hndmlq-header-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hndmlq-text);
  letter-spacing: 2px;
}

.hndmlq-header-logo-text .hndmlq-logo-accent {
  color: var(--hndmlq-primary);
}

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

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

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

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

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

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

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

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

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

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

/* ===================== MOBILE NAV ===================== */
.hndmlq-mobile-nav {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(248, 250, 252, 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;
}

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

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

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

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

.hndmlq-hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

.hndmlq-btn-primary {
  box-sizing: border-box;
  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(--hndmlq-primary), var(--hndmlq-primary-dark));
  padding: 16px 32px;
  border-radius: var(--hndmlq-radius-full);
  text-decoration: none;
  transition: var(--hndmlq-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--hndmlq-primary-glow);
}

.hndmlq-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(99,102,241,0.3);
}

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

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

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

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

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

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

.hndmlq-hero-price-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--hndmlq-accent), var(--hndmlq-accent-light));
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: var(--hndmlq-radius-sm);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

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

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

/* ===================== SECTION ===================== */
.hndmlq-section {
  padding: 100px 32px;
}

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

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

.hndmlq-section-header {
  text-align: center;
  margin-bottom: 64px;
}

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

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

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

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

.hndmlq-feature-card {
  background: var(--hndmlq-surface);
  border-radius: var(--hndmlq-radius);
  padding: 36px 28px;
  transition: var(--hndmlq-transition);
  border: 1px solid var(--hndmlq-border-light);
  position: relative;
  overflow: hidden;
}

.hndmlq-feature-card-before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hndmlq-primary), var(--hndmlq-primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--hndmlq-transition);
}

.hndmlq-feature-card:hover {
  background: var(--hndmlq-surface);
  border-color: var(--hndmlq-primary);
  transform: translateY(-8px);
  box-shadow: var(--hndmlq-shadow-lg);
}

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

.hndmlq-feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--hndmlq-primary-glow), rgba(99,102,241,0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

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

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

/* ===================== STATS ROW ===================== */
.hndmlq-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: linear-gradient(135deg, var(--hndmlq-primary), var(--hndmlq-primary-dark));
  border-radius: var(--hndmlq-radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hndmlq-stats-row-before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.hndmlq-stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hndmlq-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: white;
  display: block;
}

.hndmlq-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
  display: block;
}

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

.hndmlq-specs-image-wrap {
  border-radius: var(--hndmlq-radius-lg);
  overflow: hidden;
  box-shadow: var(--hndmlq-shadow-lg);
}

.hndmlq-specs-product-img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

.hndmlq-specs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hndmlq-specs-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--hndmlq-surface);
  border-radius: var(--hndmlq-radius-sm);
  border: 1px solid var(--hndmlq-border-light);
  transition: var(--hndmlq-transition);
}

.hndmlq-specs-row:hover {
  border-color: var(--hndmlq-primary);
  box-shadow: var(--hndmlq-shadow);
}

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

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

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

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

.hndmlq-compare-card {
  background: var(--hndmlq-surface);
  border-radius: var(--hndmlq-radius-lg);
  padding: 36px;
  border: 1px solid var(--hndmlq-border);
}

.hndmlq-compare-card.hndmlq-compare-good {
  background: linear-gradient(135deg, var(--hndmlq-primary-glow), rgba(99,102,241,0.05));
  border-color: var(--hndmlq-primary);
}

.hndmlq-compare-heading {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--hndmlq-text);
  margin: 0 0 24px;
}

.hndmlq-compare-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.hndmlq-icon-cross {
  background: #FEE2E2;
  color: #DC2626;
}

.hndmlq-icon-check {
  background: #D1FAE5;
  color: #059669;
}

/* ===================== PACKAGE BOX ===================== */
.hndmlq-package-box {
  background: linear-gradient(135deg, var(--hndmlq-primary-glow), rgba(99,102,241,0.05));
  border-radius: var(--hndmlq-radius-lg);
  padding: 40px;
  border: 2px dashed var(--hndmlq-primary);
}

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

.hndmlq-package-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hndmlq-package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--hndmlq-text);
  font-weight: 500;
}

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

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

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

.hndmlq-warranty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hndmlq-shadow-lg);
  border-color: var(--hndmlq-primary);
}

.hndmlq-warranty-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.hndmlq-warranty-value {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--hndmlq-primary);
  display: block;
}

.hndmlq-warranty-label {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--hndmlq-text);
  margin: 8px 0;
  display: block;
}

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

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

.hndmlq-quote-card {
  background: var(--hndmlq-surface);
  border-radius: var(--hndmlq-radius-lg);
  padding: 36px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--hndmlq-border);
  transition: var(--hndmlq-transition);
}

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

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

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

.hndmlq-quote-stars {
  color: var(--hndmlq-accent);
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

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

.hndmlq-faq-item:hover {
  border-color: var(--hndmlq-primary);
}

.hndmlq-faq-item.hndmlq-open {
  border-color: var(--hndmlq-primary);
  box-shadow: var(--hndmlq-shadow);
}

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

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

.hndmlq-faq-toggle {
  font-size: 24px;
  color: var(--hndmlq-primary);
  transition: var(--hndmlq-transition);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.hndmlq-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

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

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

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

.hndmlq-cta-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

.hndmlq-cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
  line-height: 1.2;
}

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

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

/* ===================== FOOTER ===================== */
.hndmlq-footer {
  background: var(--hndmlq-secondary);
  padding: 80px 32px 40px;
}

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

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

.hndmlq-footer-brand {
  padding-right: 40px;
}

.hndmlq-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

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

.hndmlq-footer-tagline {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

.hndmlq-footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 20px;
}

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

.hndmlq-footer-nav-item a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  transition: var(--hndmlq-transition);
}

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

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

.hndmlq-footer-copyright {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
}

.hndmlq-footer-disclaimer {
  font-size: 12px;
  color: #ffffff;
  margin: 0;
  max-width: 500px;
  text-align: right;
}

/* ===================== PAGE HEADER ===================== */
.hndmlq-page-header {
  background: linear-gradient(135deg, var(--hndmlq-primary), var(--hndmlq-primary-dark));
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hndmlq-page-header-glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hndmlq-btn-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30,41,59,0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hndmlq-contact-detail-value .hndmlq-contact-link:hover {
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

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

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

/* ===================== THANK YOU MODAL ===================== */
.hndmlq-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(8px);
}

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

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

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

.hndmlq-modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hndmlq-text);
  margin: 0 0 14px;
}

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

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

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

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

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

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

.hndmlq-legal-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}

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

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

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

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

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

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

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

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

.hndmlq-legal-text .hndmlq-a:hover {
  text-decoration: none;
}

.hndmlq-legal-list {
  padding-left: 24px;
  margin: 0 0 18px;
}

.hndmlq-legal-list-item {
  font-size: 16px;
  color: var(--hndmlq-text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hndmlq-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 80px;
  }
  .hndmlq-hero-content {
    order: 2;
  }
  .hndmlq-hero-image-wrap {
    order: 1;
    max-width: 480px;
    margin: 0 auto;
  }
  .hndmlq-hero-image-card {
    transform: none;
  }
  .hndmlq-hero-desc {
    margin: 0 auto 36px;
  }
  .hndmlq-hero-actions {
    justify-content: center;
  }
  .hndmlq-hero-meta {
    justify-content: center;
  }
  .hndmlq-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hndmlq-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .hndmlq-review-layout {
    grid-template-columns: 1fr;
  }
  .hndmlq-review-sidebar {
    position: static;
  }
  .hndmlq-order-layout {
    grid-template-columns: 1fr;
  }
  .hndmlq-order-sidebar {
    position: static;
  }
  .hndmlq-order-product-card {
    position: static;
  }
  .hndmlq-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hndmlq-footer-brand {
    padding-right: 0;
    margin: 0 auto;
  }
  .hndmlq-footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hndmlq-header-nav {
    display: none;
  }
  .hndmlq-hamburger {
    display: flex;
  }
  .hndmlq-features-grid {
    grid-template-columns: 1fr;
  }
  .hndmlq-stats-row {
    grid-template-columns: 1fr 1fr;
    padding: 32px;
  }
  .hndmlq-specs-layout {
    grid-template-columns: 1fr;
  }
  .hndmlq-compare-grid {
    grid-template-columns: 1fr;
  }
  .hndmlq-quotes-grid {
    grid-template-columns: 1fr;
  }
  .hndmlq-warranty-grid {
    grid-template-columns: 1fr;
  }
  .hndmlq-contact-layout {
    grid-template-columns: 1fr;
  }
  .hndmlq-footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hndmlq-section {
    padding: 72px 24px;
  }
  .hndmlq-hero-inner {
    padding: 60px 24px;
  }
  .hndmlq-hero-meta {
    flex-direction: column;
    gap: 12px;
  }
  .hndmlq-hero-actions {
    flex-direction: column;
  }
  .hndmlq-hero-actions .hndmlq-btn-primary,
  .hndmlq-hero-actions .hndmlq-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hndmlq-cta-actions {
    flex-direction: column;
  }
  .hndmlq-cta-actions .hndmlq-btn-primary,
  .hndmlq-cta-actions .hndmlq-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hndmlq-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .hndmlq-cookie-actions {
    width: 100%;
    justify-content: center;
  }
  .hndmlq-package-list {
    grid-template-columns: 1fr;
  }
  .hndmlq-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hndmlq-footer-disclaimer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hndmlq-stats-row {
    grid-template-columns: 1fr;
  }
  .hndmlq-hero-actions {
    flex-direction: column;
  }
  .hndmlq-hero-actions .hndmlq-btn-primary,
  .hndmlq-hero-actions .hndmlq-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hndmlq-cta-actions {
    flex-direction: column;
  }
  .hndmlq-cta-actions .hndmlq-btn-primary,
  .hndmlq-cta-actions .hndmlq-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hndmlq-cookie-inner {
    flex-direction: column;
  }
  .hndmlq-cookie-actions {
    width: 100%;
  }
  .hndmlq-cookie-actions .hndmlq-btn-cookie {
    flex: 1;
  }
  .hndmlq-order-thumb {
    width: 60px;
    height: 60px;
  }
}

/* ===================== PRELOADER LOGO WRAP ===================== */
.hndmlq-preloader-logo-wrap {
  display: none;
}

.hndmlq-preloader-logo {
  width: 90px;
  height: auto;
}

/* ===================== CONTACT RESPONSE INFO ===================== */
.hndmlq-contact-response-info {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--hndmlq-primary-glow), rgba(99, 102, 241, 0.02));
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: var(--hndmlq-radius-sm);
}

.hndmlq-contact-response-title {
  font-size: 13px;
  color: var(--hndmlq-primary);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hndmlq-contact-response-text {
  font-size: 14px;
  color: var(--hndmlq-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===================== SPECS TITLE MARGINS ===================== */
.hndmlq-specs-title-margin-top {
  margin-top: 36px;
  margin-bottom: 16px;
}

.hndmlq-specs-title-margin-bottom {
  margin-bottom: 16px;
}

.hndmlq-specs-title-margin-top-lg {
  margin-top: 48px;
  margin-bottom: 16px;
}

/* ===================== REVIEW CTA ===================== */
.hndmlq-review-cta {
  margin-top: 48px;
  text-align: center;
}

.hndmlq-review-cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--hndmlq-text-muted);
}

/* ===================== BUTTON BLOCK ===================== */
.hndmlq-btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===================== SIDEBAR CARD MODS ===================== */
.hndmlq-sidebar-card-center {
  text-align: center;
}

.hndmlq-sidebar-card-margin-top {
  margin-top: 24px;
}

.hndmlq-sidebar-card-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--hndmlq-text-light);
  line-height: 1.6;
}

/* ===================== ORDER DESCRIPTION ===================== */
.hndmlq-order-description {
  margin-top: 40px;
}

/* ===================== REVIEW IMAGE HERO ===================== */
.hndmlq-review-image-hero {
  width: 100%;
  border-radius: var(--hndmlq-radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--hndmlq-shadow);
}

/* ===================== REVIEW TEXT ===================== */
.hndmlq-review-text {
  font-size: 17px;
  color: var(--hndmlq-text-light);
  line-height: 1.8;
  margin: 0 0 24px;
}

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

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

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

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

/* ===================== ORDER THUMB ===================== */
.hndmlq-order-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--hndmlq-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hndmlq-transition);
}

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