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

:root {
  --hbrqsw-primary: #1D4ED8;
  --hbrqsw-primary-light: #3B82F6;
  --hbrqsw-primary-dark: #1E3A8A;
  --hbrqsw-primary-glow: rgba(29, 78, 216, 0.15);
  --hbrqsw-secondary: #10B981;
  --hbrqsw-secondary-light: #34D399;
  --hbrqsw-accent: #0EA5E9;
  --hbrqsw-accent-light: #38BDF8;
  --hbrqsw-bg: #F8FAFC;
  --hbrqsw-bg-alt: #F1F5F9;
  --hbrqsw-surface: #FFFFFF;
  --hbrqsw-surface-hover: #F5FFFE;
  --hbrqsw-text: #1A1A2E;
  --hbrqsw-text-light: #4A5568;
  --hbrqsw-text-muted: #94A3B8;
  --hbrqsw-border: #E2E8F0;
  --hbrqsw-border-light: #F1F5F9;
  --hbrqsw-radius: 20px;
  --hbrqsw-radius-lg: 28px;
  --hbrqsw-radius-sm: 12px;
  --hbrqsw-radius-full: 9999px;
  --hbrqsw-shadow: 0 4px 24px rgba(0,0,0,0.04);
  --hbrqsw-shadow-lg: 0 12px 48px rgba(0,0,0,0.08);
  --hbrqsw-shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
  --hbrqsw-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

.hbrqsw-preloader-logo-wrap {
  margin-bottom: 40px;
}

.hbrqsw-preloader-logo {
  width: 100px;
  height: auto;
  animation: hbrqsw-float 2s ease-in-out infinite;
}

.hbrqsw-preloader-text {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  letter-spacing: 6px;
  text-transform: uppercase;
  animation: hbrqsw-pulse-text 1.5s ease-in-out infinite;
  margin-bottom: 30px;
}

.hbrqsw-preloader-bar {
  width: 240px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}

.hbrqsw-preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--hbrqsw-accent), var(--hbrqsw-accent-light));
  border-radius: 4px;
  animation: hbrqsw-progress 3s ease-in-out forwards;
}

@keyframes hbrqsw-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

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

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

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

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

.hbrqsw-cookie-icon {
  font-size: 40px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

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

.hbrqsw-btn-cookie-reject:hover {
  background: var(--hbrqsw-bg-alt);
  border-color: var(--hbrqsw-primary);
  color: var(--hbrqsw-primary);
}

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

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

.hbrqsw-header.hbrqsw-scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.99);
}

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

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

.hbrqsw-header-logo-img {
  height: 48px;
  width: auto;
}

.hbrqsw-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

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

.hbrqsw-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 14px;
  border: none;
  background: none;
}

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

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

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

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

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

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

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

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

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

.hbrqsw-hero-bg-shape {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(13,148,136,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

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

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

.hbrqsw-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--hbrqsw-primary-glow);
  border: 1px solid rgba(13,148,136,0.2);
  color: var(--hbrqsw-primary-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--hbrqsw-radius-full);
  margin-bottom: 32px;
}

.hbrqsw-hero-badge-icon {
  font-size: 18px;
}

.hbrqsw-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--hbrqsw-text);
  margin: 0 0 28px;
  letter-spacing: -1px;
}

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

.hbrqsw-hero-desc {
  font-size: 18px;
  color: var(--hbrqsw-text-light);
  line-height: 1.9;
  margin: 0 0 40px;
  max-width: 560px;
}

.hbrqsw-hero-meta {
  display: flex;
  gap: 32px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

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

.hbrqsw-hero-meta-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--hbrqsw-primary), var(--hbrqsw-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}

.hbrqsw-hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hbrqsw-btn-primary {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--hbrqsw-primary), var(--hbrqsw-primary-dark));
  padding: 18px 36px;
  border-radius: var(--hbrqsw-radius-full);
  text-decoration: none;
  transition: var(--hbrqsw-transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(13,148,136,0.25);
}

.hbrqsw-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(13,148,136,0.35);
}

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

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

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

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

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

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

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

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

/* ===================== SECTION ===================== */
.hbrqsw-section {
  padding: 120px 40px;
}

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

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

.hbrqsw-section-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.hbrqsw-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 20px;
  line-height: 1.2;
}

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

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

.hbrqsw-stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--hbrqsw-surface);
  border-radius: var(--hbrqsw-radius);
  box-shadow: var(--hbrqsw-shadow);
  transition: var(--hbrqsw-transition);
  border: 1px solid var(--hbrqsw-border-light);
}

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

.hbrqsw-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--hbrqsw-primary);
  display: block;
  margin-bottom: 8px;
}

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

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

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

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

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

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

.hbrqsw-feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.hbrqsw-feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 16px;
}

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

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

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

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

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

.hbrqsw-specs-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 32px;
}

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

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

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

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

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

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

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

.hbrqsw-compare-card {
  background: var(--hbrqsw-surface);
  border-radius: var(--hbrqsw-radius);
  padding: 40px;
  box-shadow: var(--hbrqsw-shadow);
  border: 1px solid var(--hbrqsw-border-light);
}

.hbrqsw-compare-good {
  background: linear-gradient(135deg, var(--hbrqsw-primary-glow), rgba(13,148,136,0.05));
  border-color: var(--hbrqsw-primary);
}

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

.hbrqsw-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hbrqsw-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--hbrqsw-text-light);
}

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

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

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

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

.hbrqsw-package-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 32px;
  text-align: center;
}

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

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

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

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

.hbrqsw-warranty-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--hbrqsw-surface);
  border-radius: var(--hbrqsw-radius);
  box-shadow: var(--hbrqsw-shadow);
  border: 1px solid var(--hbrqsw-border-light);
}

.hbrqsw-warranty-icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.hbrqsw-warranty-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--hbrqsw-primary);
  display: block;
  margin-bottom: 8px;
}

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

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

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

.hbrqsw-quote-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--hbrqsw-surface);
  border-radius: var(--hbrqsw-radius);
  box-shadow: var(--hbrqsw-shadow);
  border: 1px solid var(--hbrqsw-border-light);
}

.hbrqsw-quote-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--hbrqsw-primary), var(--hbrqsw-primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

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

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

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

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

/* ===================== FAQ ===================== */
.hbrqsw-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.hbrqsw-faq-item {
  margin-bottom: 16px;
  border-radius: var(--hbrqsw-radius);
  overflow: hidden;
  background: var(--hbrqsw-surface);
  box-shadow: var(--hbrqsw-shadow);
  border: 1px solid var(--hbrqsw-border-light);
}

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

.hbrqsw-faq-question:hover {
  background: var(--hbrqsw-bg-alt);
}

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

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

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

.hbrqsw-faq-item.hbrqsw-open .hbrqsw-faq-answer {
  max-height: 500px;
}

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

/* ===================== CTA ===================== */
.hbrqsw-cta-section {
  position: relative;
  padding: 120px 40px;
  background: linear-gradient(135deg, var(--hbrqsw-secondary) 0%, var(--hbrqsw-primary-dark) 50%, var(--hbrqsw-primary) 100%);
  overflow: hidden;
}

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

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

.hbrqsw-cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  display: block;
}

.hbrqsw-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: white;
  margin: 0 0 24px;
  line-height: 1.2;
}

.hbrqsw-cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin: 0 0 44px;
}

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

.hbrqsw-cta-section .hbrqsw-btn-primary {
  background: white;
  color: var(--hbrqsw-primary-dark);
}

.hbrqsw-cta-section .hbrqsw-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.2);
}

.hbrqsw-cta-section .hbrqsw-btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.5);
}

.hbrqsw-cta-section .hbrqsw-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
}

/* ===================== FOOTER ===================== */
.hbrqsw-footer {
  background: var(--hbrqsw-text);
  color: rgba(255,255,255,0.7);
  padding: 80px 40px 40px;
}

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

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

.hbrqsw-footer-brand {
  max-width: 320px;
}

.hbrqsw-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

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

.hbrqsw-footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

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

.hbrqsw-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hbrqsw-footer-nav-item {
  margin-bottom: 12px;
}

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

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

.hbrqsw-footer-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.hbrqsw-footer-copyright {
  font-size: 14px;
  margin: 0;
}

.hbrqsw-footer-disclaimer {
  font-size: 12px;
  margin: 0;
  opacity: 0.7;
}

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

.hbrqsw-page-header-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hbrqsw-page-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}

.hbrqsw-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
  line-height: 1.2;
}

.hbrqsw-page-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin: 0;
}

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

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

.hbrqsw-review-content {
  animation: hbrqsw-fadeInUp 0.6s ease-out;
}

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

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

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

.hbrqsw-pullquote-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--hbrqsw-text);
  line-height: 1.6;
  margin: 0 0 14px;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

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

.hbrqsw-specs-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 44px 0 20px;
}

.hbrqsw-specs-title-margin-bottom {
  margin-bottom: 20px;
}

.hbrqsw-specs-title-margin-top {
  margin-top: 36px;
}

.hbrqsw-specs-title-margin-top-lg {
  margin-top: 52px;
}

.hbrqsw-review-sidebar {
  position: sticky;
  top: 110px;
}

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

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

.hbrqsw-sidebar-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--hbrqsw-primary);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hbrqsw-verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hbrqsw-verdict-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--hbrqsw-bg-alt);
  border-radius: var(--hbrqsw-radius-sm);
}

.hbrqsw-verdict-score {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--hbrqsw-primary);
  display: block;
}

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

.hbrqsw-review-cta {
  text-align: center;
  padding: 40px;
  background: var(--hbrqsw-bg-alt);
  border-radius: var(--hbrqsw-radius);
  margin-top: 40px;
}

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

.hbrqsw-btn-block {
  width: 100%;
  justify-content: center;
}

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

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

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

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

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

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

.hbrqsw-order-sidebar {
  position: sticky;
  top: 110px;
}

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

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

.hbrqsw-order-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 10px;
  line-height: 1.3;
}

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

.hbrqsw-order-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
}

.hbrqsw-order-price {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--hbrqsw-primary);
}

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

.hbrqsw-order-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

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

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

.hbrqsw-order-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbrqsw-btn-order {
  box-sizing: border-box;
  display: block;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--hbrqsw-secondary), var(--hbrqsw-secondary-light));
  padding: 20px 36px;
  border-radius: var(--hbrqsw-radius-full);
  text-decoration: none;
  transition: var(--hbrqsw-transition);
  box-shadow: 0 8px 28px rgba(19,78,74,0.3);
}

.hbrqsw-btn-order:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(19,78,74,0.4);
}

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

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

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

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

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

.hbrqsw-specs-table-cell {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--hbrqsw-border-light);
}

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

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

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

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

.hbrqsw-contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 32px;
}

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

.hbrqsw-contact-detail-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--hbrqsw-primary-glow), rgba(13,148,136,0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

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

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

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

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

.hbrqsw-contact-response-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hbrqsw-border-light);
}

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

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

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

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

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

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

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

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

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

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

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

.hbrqsw-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(13,148,136,0.25);
}

/* ===================== MODAL ===================== */
.hbrqsw-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);
}

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

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

.hbrqsw-modal-icon {
  font-size: 72px;
  margin-bottom: 28px;
}

.hbrqsw-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 0 0 16px;
}

.hbrqsw-modal-desc {
  font-size: 16px;
  color: var(--hbrqsw-text-light);
  line-height: 1.8;
  margin: 0 0 32px;
}

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

.hbrqsw-modal-close-btn {
  padding: 16px 40px;
  background: var(--hbrqsw-primary);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--hbrqsw-radius-full);
  cursor: pointer;
  transition: var(--hbrqsw-transition);
}

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

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

.hbrqsw-legal-header {
  background: linear-gradient(135deg, var(--hbrqsw-secondary) 0%, var(--hbrqsw-primary-dark) 50%, var(--hbrqsw-primary) 100%);
  padding: 80px 40px;
  text-align: center;
}

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

.hbrqsw-legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: white;
  margin: 0;
}

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

.hbrqsw-legal-body {
  max-width: 840px;
  margin: 0 auto;
  padding: 72px 40px 100px;
}

.hbrqsw-legal-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hbrqsw-text);
  margin: 52px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--hbrqsw-border);
}

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

.hbrqsw-legal-text {
  font-size: 16px;
  color: var(--hbrqsw-text-light);
  line-height: 1.9;
  margin: 0 0 20px;
}

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

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

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

.hbrqsw-legal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.hbrqsw-legal-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--hbrqsw-text-light);
  line-height: 1.7;
}

.hbrqsw-legal-list-item::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--hbrqsw-primary-glow);
  color: var(--hbrqsw-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================== NEW LAYOUTS ===================== */
.hbrqsw-order-focused-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.hbrqsw-order-hero-card {
  background: var(--hbrqsw-surface);
  border-radius: var(--hbrqsw-radius-lg);
  padding: 48px;
  box-shadow: var(--hbrqsw-shadow-xl);
  text-align: center;
  border-top: 6px solid var(--hbrqsw-primary);
}

.hbrqsw-order-hero-card img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--hbrqsw-radius);
  margin-bottom: 32px;
}

.hbrqsw-order-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.hbrqsw-review-editorial-layout {
  max-width: 800px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  background: var(--hbrqsw-surface);
  padding: 60px;
  border-radius: var(--hbrqsw-radius-lg);
  box-shadow: var(--hbrqsw-shadow-lg);
}

.hbrqsw-editorial-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 60vh;
  min-height: 400px;
  object-fit: cover;
}

.hbrqsw-scorecard-horizontal {
  display: flex;
  justify-content: space-around;
  background: var(--hbrqsw-bg-alt);
  padding: 32px;
  border-radius: var(--hbrqsw-radius);
  margin: 40px 0;
  border-left: 4px solid var(--hbrqsw-primary);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hbrqsw-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hbrqsw-hero-content {
    order: 2;
  }
  
  .hbrqsw-hero-image-wrap {
    order: 1;
  }
  
  .hbrqsw-hero-desc {
    max-width: 100%;
  }
  
  .hbrqsw-hero-meta {
    justify-content: center;
  }
  
  .hbrqsw-hero-actions {
    justify-content: center;
  }
  
  .hbrqsw-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hbrqsw-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hbrqsw-specs-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hbrqsw-review-layout,
  .hbrqsw-order-layout {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-review-sidebar,
  .hbrqsw-order-sidebar {
    position: static;
  }
  
  .hbrqsw-contact-layout {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .hbrqsw-footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hbrqsw-header-nav {
    display: none;
  }
  
  .hbrqsw-hamburger {
    display: flex;
  }
  
  .hbrqsw-header-inner {
    padding: 0 24px;
  }
  
  .hbrqsw-hero {
    padding-top: 70px;
  }
  
  .hbrqsw-hero-inner {
    padding: 40px 24px;
  }
  
  .hbrqsw-section {
    padding: 80px 24px;
  }
  
  .hbrqsw-stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .hbrqsw-stat-item {
    padding: 28px 16px;
  }
  
  .hbrqsw-stat-value {
    font-size: 36px;
  }
  
  .hbrqsw-features-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-compare-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-package-list {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-warranty-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-quotes-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-order-details-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-verdict-grid {
    grid-template-columns: 1fr;
  }
  
  .hbrqsw-order-hero-card {
    padding: 32px 24px;
  }
  
  .hbrqsw-review-editorial-layout {
    padding: 32px 24px;
    margin-top: -30px;
  }
  
  .hbrqsw-editorial-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .hbrqsw-scorecard-horizontal {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
  
  .hbrqsw-btn-order {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  .hbrqsw-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hbrqsw-footer-brand {
    grid-column: auto;
  }
  
  .hbrqsw-cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hbrqsw-cookie-actions {
    width: 100%;
    justify-content: center;
  }
  
  .hbrqsw-contact-info-card,
  .hbrqsw-contact-form-card {
    padding: 32px 24px;
  }
  
  .hbrqsw-page-header {
    padding: 120px 24px 60px;
  }
  
  .hbrqsw-legal-body {
    padding: 48px 24px 72px;
  }
}
