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

.hnt-box { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hnt-teal-500: #14B8A6;
  --hnt-teal-600: #0D9488;
  --hnt-teal-700: #0F766E;
  --hnt-teal-400: #2DD4BF;
  --hnt-teal-100: #CCFBF1;
  --hnt-teal-50: #F0FDFA;
  --hnt-slate-900: #0F172A;
  --hnt-slate-800: #1E293B;
  --hnt-slate-700: #334155;
  --hnt-slate-600: #475569;
  --hnt-slate-500: #64748B;
  --hnt-slate-400: #94A3B8;
  --hnt-slate-300: #CBD5E1;
  --hnt-slate-200: #E2E8F0;
  --hnt-slate-100: #F1F5F9;
  --hnt-white: #FFFFFF;
  --hnt-rose-500: #F43F5E;
  --hnt-rose-100: #FFE4E6;
  --hnt-radius: 20px;
  --hnt-radius-lg: 32px;
  --hnt-radius-sm: 12px;
  --hnt-shadow: 0 8px 32px rgba(15,23,42,0.08);
  --hnt-shadow-lg: 0 16px 48px rgba(15,23,42,0.12);
  --hnt-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== PRELOADER ===================== */
.hnt-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--hnt-slate-900) 0%, var(--hnt-teal-700) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.hnt-preloader.hnt-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hnt-preloader-logo {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  animation: hnt-float 2s ease-in-out infinite;
}
.hnt-preloader-text {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hnt-teal-400);
  letter-spacing: 6px;
  text-transform: uppercase;
}
@keyframes hnt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===================== COOKIE BANNER ===================== */
.hnt-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--hnt-slate-900);
  padding: 24px;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--hnt-teal-500);
}
.hnt-cookie-banner.hnt-visible { transform: translateY(0); }
.hnt-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hnt-cookie-icon { font-size: 32px; flex-shrink: 0; }
.hnt-cookie-text {
  flex: 1;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--hnt-slate-300);
  line-height: 1.6;
  min-width: 250px;
}
.hnt-cookie-text .hnt-cookie-link {
  color: var(--hnt-teal-400);
  text-decoration: none;
  font-weight: 600;
}
.hnt-cookie-text .hnt-cookie-link:hover { text-decoration: underline; }
.hnt-cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.hnt-btn-cookie {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--hnt-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--hnt-transition);
  letter-spacing: 0.5px;
}
.hnt-btn-cookie-accept {
  background: var(--hnt-teal-500);
  color: var(--hnt-white);
}
.hnt-btn-cookie-accept:hover { background: var(--hnt-teal-400); transform: translateY(-2px); }
.hnt-btn-cookie-reject {
  background: transparent;
  color: var(--hnt-slate-400);
  border: 2px solid var(--hnt-slate-700);
}
.hnt-btn-cookie-reject:hover { border-color: var(--hnt-slate-500); color: var(--hnt-slate-200); }

/* ===================== SITE BODY ===================== */
.hnt-body {
  margin: 0;
  background: var(--hnt-white);
  color: var(--hnt-slate-700);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===================== AFFILIATE NOTICE ===================== */
.hnt-affiliate-notice {
  background: linear-gradient(90deg, var(--hnt-teal-600), var(--hnt-teal-700));
  color: var(--hnt-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
}

/* ===================== HEADER ===================== */
.hnt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,23,42,0.06);
}
.hnt-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.hnt-header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.hnt-header-logo-img { height: 48px; width: auto; }
.hnt-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hnt-nav-item {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--hnt-slate-600);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--hnt-radius-sm);
  transition: var(--hnt-transition);
}
.hnt-nav-item:hover { color: var(--hnt-teal-600); background: var(--hnt-teal-50); }
.hnt-nav-item.hnt-active { color: var(--hnt-teal-600); background: var(--hnt-teal-50); }
.hnt-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.hnt-toggle-line {
  width: 28px;
  height: 3px;
  background: var(--hnt-slate-700);
  border-radius: 3px;
  transition: var(--hnt-transition);
}
.hnt-mobile-toggle.hnt-open .hnt-toggle-line:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hnt-mobile-toggle.hnt-open .hnt-toggle-line:nth-child(2) { opacity: 0; }
.hnt-mobile-toggle.hnt-open .hnt-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===================== MOBILE NAV ===================== */
.hnt-mobile-nav {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--hnt-white);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--hnt-shadow-lg);
}
.hnt-mobile-nav.hnt-open { transform: translateX(0); }
.hnt-mobile-nav-item {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--hnt-slate-600);
  text-decoration: none;
  padding: 16px 20px;
  border-radius: var(--hnt-radius-sm);
  border-bottom: 1px solid var(--hnt-slate-100);
  transition: var(--hnt-transition);
}
.hnt-mobile-nav-item:hover { color: var(--hnt-teal-600); background: var(--hnt-teal-50); }

/* ===================== HERO SECTION ===================== */
.hnt-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--hnt-teal-50) 0%, var(--hnt-white) 100%);
}
.hnt-hero-bg-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.hnt-hero-circle-1 {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hnt-hero-circle-2 {
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(244,63,94,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hnt-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hnt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hnt-teal-100);
  color: var(--hnt-teal-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hnt-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hnt-slate-900);
  margin: 0 0 24px;
}
.hnt-title-highlight {
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hnt-hero-desc {
  font-size: 19px;
  color: var(--hnt-slate-500);
  line-height: 1.8;
  margin: 0 0 36px;
  max-width: 520px;
}
.hnt-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hnt-hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--hnt-slate-600);
}
.hnt-hero-feature-icon {
  width: 28px; height: 28px;
  background: var(--hnt-teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hnt-teal-600);
  font-size: 14px;
}
.hnt-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hnt-btn-main {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--hnt-white);
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-600));
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--hnt-transition);
  box-shadow: 0 8px 24px rgba(20,184,166,0.3);
}
.hnt-btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(20,184,166,0.4); }
.hnt-btn-secondary {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--hnt-teal-600);
  background: transparent;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--hnt-transition);
  border: 2px solid var(--hnt-teal-200);
}
.hnt-btn-secondary:hover { background: var(--hnt-teal-50); border-color: var(--hnt-teal-400); }
.hnt-hero-visual {
  position: relative;
}
.hnt-hero-image-wrap {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius-lg);
  padding: 24px;
  box-shadow: var(--hnt-shadow-lg);
  position: relative;
}
.hnt-hero-product-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hnt-radius);
}
.hnt-hero-price-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--hnt-rose-500), #E11D48);
  color: var(--hnt-white);
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(244,63,94,0.3);
}
.hnt-hero-float-card {
  position: absolute;
  top: 20px;
  left: -30px;
  background: var(--hnt-white);
  border-radius: var(--hnt-radius-sm);
  padding: 16px 20px;
  box-shadow: var(--hnt-shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hnt-float-icon {
  width: 44px; height: 44px;
  background: var(--hnt-teal-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hnt-float-text-label { font-size: 12px; color: var(--hnt-slate-500); font-weight: 600; }
.hnt-float-text-value { font-size: 16px; color: var(--hnt-slate-900); font-weight: 800; }

/* ===================== SECTION COMMON ===================== */
.hnt-section { padding: 100px 32px; }
.hnt-section-alt { background: var(--hnt-teal-50); }
.hnt-section-inner { max-width: 1200px; margin: 0 auto; }
.hnt-section-header { text-align: center; margin-bottom: 64px; }
.hnt-section-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hnt-teal-600);
  margin-bottom: 16px;
  background: var(--hnt-teal-100);
  padding: 8px 20px;
  border-radius: 50px;
}
.hnt-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--hnt-slate-900);
  margin: 0 0 20px;
  line-height: 1.2;
}
.hnt-section-desc {
  font-size: 18px;
  color: var(--hnt-slate-500);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== STATS GRID ===================== */
.hnt-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.hnt-stat-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--hnt-shadow);
  transition: var(--hnt-transition);
  border: 2px solid transparent;
}
.hnt-stat-card:hover { border-color: var(--hnt-teal-300); transform: translateY(-6px); }
.hnt-stat-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--hnt-teal-100), var(--hnt-teal-50));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.hnt-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--hnt-teal-600);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.hnt-stat-label {
  font-size: 14px;
  color: var(--hnt-slate-500);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===================== FEATURES ===================== */
.hnt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hnt-feature-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 36px;
  transition: var(--hnt-transition);
  box-shadow: var(--hnt-shadow);
  border: 2px solid transparent;
}
.hnt-feature-card:hover { border-color: var(--hnt-teal-300); transform: translateY(-6px); }
.hnt-feature-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-600));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}
.hnt-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 0 0 12px;
}
.hnt-feature-desc {
  font-size: 15px;
  color: var(--hnt-slate-500);
  line-height: 1.7;
  margin: 0;
}

/* ===================== PRODUCT SHOWCASE ===================== */
.hnt-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hnt-showcase-image-wrap {
  position: relative;
}
.hnt-showcase-main-img {
  width: 100%;
  border-radius: var(--hnt-radius-lg);
  box-shadow: var(--hnt-shadow-lg);
}
.hnt-showcase-labels {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  gap: 12px;
}
.hnt-showcase-label {
  background: var(--hnt-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--hnt-slate-700);
  box-shadow: var(--hnt-shadow);
}
.hnt-showcase-label span { color: var(--hnt-teal-600); }
.hnt-specs-list { list-style: none; padding: 0; margin: 0; }
.hnt-specs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--hnt-slate-100);
}
.hnt-specs-item:last-child { border-bottom: none; }
.hnt-specs-label { font-size: 15px; color: var(--hnt-slate-500); font-weight: 600; }
.hnt-specs-value { font-size: 15px; color: var(--hnt-slate-900); font-weight: 700; }

/* ===================== COMPARISON ===================== */
.hnt-compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.hnt-compare-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 36px;
  box-shadow: var(--hnt-shadow);
}
.hnt-compare-card.hnt-compare-better { border: 3px solid var(--hnt-teal-400); }
.hnt-compare-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 0 0 24px;
  text-align: center;
}
.hnt-compare-list { list-style: none; padding: 0; margin: 0; }
.hnt-compare-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--hnt-slate-600);
}
.hnt-compare-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.hnt-compare-icon.hnt-icon-good { background: var(--hnt-teal-100); color: var(--hnt-teal-600); }
.hnt-compare-icon.hnt-icon-bad { background: var(--hnt-rose-100); color: var(--hnt-rose-500); }

/* ===================== TESTIMONIALS ===================== */
.hnt-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.hnt-testimonial-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 32px;
  box-shadow: var(--hnt-shadow);
  transition: var(--hnt-transition);
}
.hnt-testimonial-card:hover { transform: translateY(-4px); }
.hnt-testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.hnt-testimonial-avatar {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--hnt-teal-400), var(--hnt-teal-600));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--hnt-white);
}
.hnt-testimonial-meta {}
.hnt-testimonial-name { font-size: 17px; font-weight: 700; color: var(--hnt-slate-900); }
.hnt-testimonial-location { font-size: 14px; color: var(--hnt-slate-500); }
.hnt-testimonial-stars { color: #FBBF24; font-size: 18px; margin-bottom: 16px; }
.hnt-testimonial-text { font-size: 16px; color: var(--hnt-slate-600); line-height: 1.7; margin: 0; font-style: italic; }

/* ===================== FAQ ===================== */
.hnt-faq-wrapper { max-width: 800px; margin: 0 auto; }
.hnt-faq-item { margin-bottom: 12px; }
.hnt-faq-question {
  width: 100%;
  background: var(--hnt-white);
  border: 2px solid var(--hnt-slate-200);
  border-radius: var(--hnt-radius-sm);
  padding: 20px 24px;
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--hnt-slate-800);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--hnt-transition);
  text-align: left;
}
.hnt-faq-question:hover { border-color: var(--hnt-teal-400); background: var(--hnt-teal-50); }
.hnt-faq-item.hnt-open .hnt-faq-question { border-color: var(--hnt-teal-400); background: var(--hnt-teal-50); }
.hnt-faq-toggle { font-size: 24px; color: var(--hnt-teal-500); transition: var(--hnt-transition); }
.hnt-faq-item.hnt-open .hnt-faq-toggle { transform: rotate(45deg); }
.hnt-faq-answer { display: none; padding: 0 24px; }
.hnt-faq-item.hnt-open .hnt-faq-answer { display: block; padding: 20px 24px; }
.hnt-faq-answer-inner {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius-sm);
  padding: 24px;
  font-size: 15px;
  color: var(--hnt-slate-600);
  line-height: 1.8;
  border-left: 4px solid var(--hnt-teal-400);
}

/* ===================== CTA SECTION ===================== */
.hnt-cta-section {
  background: linear-gradient(135deg, var(--hnt-slate-900) 0%, var(--hnt-teal-700) 100%);
  padding: 100px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hnt-cta-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hnt-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(20,184,166,0.1);
}
.hnt-cta-circle-1 { width: 400px; height: 400px; top: -200px; right: -100px; }
.hnt-cta-circle-2 { width: 300px; height: 300px; bottom: -150px; left: -100px; }
.hnt-cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.hnt-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--hnt-white);
  margin: 0 0 20px;
}
.hnt-cta-desc { font-size: 18px; color: var(--hnt-slate-300); margin: 0 0 40px; line-height: 1.7; }
.hnt-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===================== FOOTER ===================== */
.hnt-footer {
  background: var(--hnt-slate-900);
  padding: 80px 32px 40px;
  color: var(--hnt-white);
}
.hnt-footer-inner { max-width: 1200px; margin: 0 auto; }
.hnt-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hnt-slate-700);
}
.hnt-footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hnt-footer-logo-img { height: 44px; }
.hnt-footer-tagline { font-size: 15px; color: var(--hnt-white); line-height: 1.7; margin: 0; max-width: 300px; }
.hnt-footer-title {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--hnt-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
}
.hnt-footer-links { list-style: none; padding: 0; margin: 0; }
.hnt-footer-link-item { margin-bottom: 10px; color: var(--hnt-white); }
.hnt-footer-link-item a {
  font-size: 15px;
  color: var(--hnt-white);
  text-decoration: none;
  transition: var(--hnt-transition);
}
.hnt-footer-link-item a:hover { color: var(--hnt-teal-400); }
.hnt-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.hnt-footer-copyright { font-size: 14px; color: var(--hnt-white); margin: 0; }
.hnt-footer-company { font-size: 14px; font-weight: 600; color: var(--hnt-white); margin: 0; }
.hnt-footer-address { font-size: 13px; color: var(--hnt-white); margin: 0; }
.hnt-footer-disclaimer { font-size: 12px; color: var(--hnt-white); max-width: 600px; margin: 8px 0 0; line-height: 1.6; }

/* ===================== PAGE HEADER ===================== */
.hnt-page-header {
  background: linear-gradient(135deg, var(--hnt-teal-50) 0%, var(--hnt-white) 100%);
  padding: 80px 32px;
  text-align: center;
  border-bottom: 1px solid var(--hnt-slate-100);
}
.hnt-page-header-inner { max-width: 800px; margin: 0 auto; }
.hnt-page-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hnt-teal-600);
  margin-bottom: 16px;
  background: var(--hnt-teal-100);
  padding: 8px 20px;
  border-radius: 50px;
}
.hnt-page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--hnt-slate-900);
  margin: 0 0 16px;
}
.hnt-page-desc { font-size: 18px; color: var(--hnt-slate-500); margin: 0; }

/* ===================== REVIEW LAYOUT ===================== */
.hnt-review-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.hnt-review-main {}
.hnt-review-hero-img {
  width: 100%;
  border-radius: var(--hnt-radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--hnt-shadow);
}
.hnt-review-text {
  font-size: 17px;
  color: var(--hnt-slate-600);
  line-height: 1.9;
  margin: 0 0 24px;
}
.hnt-review-quote {
  background: linear-gradient(135deg, var(--hnt-teal-50), var(--hnt-white));
  border-left: 5px solid var(--hnt-teal-500);
  border-radius: 0 var(--hnt-radius) var(--hnt-radius) 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.hnt-review-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--hnt-slate-800);
  line-height: 1.6;
  margin: 0 0 12px;
  font-style: italic;
}
.hnt-review-quote-cite { font-size: 14px; color: var(--hnt-slate-500); font-style: normal; }
.hnt-review-sidebar { position: sticky; top: 100px; }
.hnt-sidebar-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--hnt-shadow);
}
.hnt-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hnt-verdict-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hnt-verdict-item {
  text-align: center;
  padding: 16px 12px;
  background: var(--hnt-teal-50);
  border-radius: var(--hnt-radius-sm);
}
.hnt-verdict-score {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--hnt-teal-600);
  display: block;
}
.hnt-verdict-label { font-size: 12px; color: var(--hnt-slate-500); font-weight: 600; margin-top: 4px; }
.hnt-price-display {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-600));
  border-radius: var(--hnt-radius);
  color: var(--hnt-white);
}
.hnt-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  display: block;
}
.hnt-price-original {
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.8;
  margin-top: 4px;
}

/* ===================== ORDER PAGE ===================== */
.hnt-order-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.hnt-order-gallery {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius-lg);
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--hnt-shadow);
}
.hnt-order-main-img {
  width: 100%;
  border-radius: var(--hnt-radius);
  margin-bottom: 16px;
}
.hnt-order-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.hnt-order-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--hnt-radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--hnt-transition);
  flex-shrink: 0;
}
.hnt-order-thumb:hover { border-color: var(--hnt-teal-400); }
.hnt-order-thumb.hnt-thumb-active { border-color: var(--hnt-teal-500); }
.hnt-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--hnt-slate-900);
  margin: 0 0 16px;
}
.hnt-product-desc { font-size: 16px; color: var(--hnt-slate-600); line-height: 1.8; margin: 0 0 32px; }
.hnt-package-box {
  background: var(--hnt-teal-50);
  border-radius: var(--hnt-radius);
  padding: 28px;
  margin: 32px 0;
  border: 2px solid var(--hnt-teal-200);
}
.hnt-package-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 0 0 20px;
}
.hnt-package-list { list-style: none; padding: 0; margin: 0; }
.hnt-package-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--hnt-slate-700);
  border-bottom: 1px solid var(--hnt-teal-100);
}
.hnt-package-item:last-child { border-bottom: none; }
.hnt-package-check {
  width: 28px; height: 28px;
  background: var(--hnt-teal-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hnt-white);
  font-size: 14px;
  flex-shrink: 0;
}
.hnt-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border-radius: var(--hnt-radius);
  overflow: hidden;
  box-shadow: var(--hnt-shadow);
}
.hnt-specs-table-row:nth-child(even) .hnt-specs-table-cell { background: var(--hnt-teal-50); }
.hnt-specs-table-cell {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--hnt-slate-100);
}
.hnt-specs-table-cell.hnt-cell-label { color: var(--hnt-slate-500); font-weight: 600; width: 40%; }
.hnt-specs-table-cell.hnt-cell-value { color: var(--hnt-slate-900); font-weight: 700; }
.hnt-order-sidebar-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 32px;
  box-shadow: var(--hnt-shadow-lg);
  position: sticky;
  top: 100px;
  border: 3px solid var(--hnt-teal-400);
}
.hnt-order-product-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--hnt-slate-900);
  margin: 0 0 8px;
}
.hnt-order-product-sub { font-size: 14px; color: var(--hnt-slate-500); margin: 0 0 20px; }
.hnt-order-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}
.hnt-order-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--hnt-teal-600);
}
.hnt-order-price-orig {
  font-size: 18px;
  color: var(--hnt-slate-400);
  text-decoration: line-through;
}
.hnt-order-highlights { list-style: none; padding: 0; margin: 0 0 24px; }
.hnt-order-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--hnt-slate-600);
}
.hnt-order-highlight-dot {
  width: 8px; height: 8px;
  background: var(--hnt-teal-500);
  border-radius: 50%;
  flex-shrink: 0;
}
.hnt-order-divider { border: none; border-top: 1px solid var(--hnt-slate-200); margin: 24px 0; }
.hnt-btn-order {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 18px;
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-600));
  color: var(--hnt-white);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: var(--hnt-radius-sm);
  transition: var(--hnt-transition);
  box-shadow: 0 6px 20px rgba(20,184,166,0.3);
  margin-bottom: 12px;
}
.hnt-btn-order:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(20,184,166,0.4); }
.hnt-btn-order-secondary {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  background: transparent;
  color: var(--hnt-teal-600);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: var(--hnt-radius-sm);
  transition: var(--hnt-transition);
  border: 2px solid var(--hnt-teal-300);
}
.hnt-btn-order-secondary:hover { background: var(--hnt-teal-50); }
.hnt-order-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--hnt-slate-500);
}

/* ===================== CONTACT PAGE ===================== */
.hnt-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.hnt-contact-info-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 40px;
  box-shadow: var(--hnt-shadow);
}
.hnt-contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 0 0 28px;
}
.hnt-contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.hnt-contact-icon {
  width: 48px; height: 48px;
  background: var(--hnt-teal-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hnt-contact-label { font-size: 12px; color: var(--hnt-slate-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.hnt-contact-value { font-size: 16px; font-weight: 600; color: var(--hnt-slate-800); line-height: 1.5; }
.hnt-contact-value a { color: var(--hnt-teal-600); text-decoration: none; font-weight: 700; }
.hnt-contact-value a:hover { text-decoration: underline; }
.hnt-notice-box {
  margin-top: 28px;
  padding: 20px;
  background: var(--hnt-teal-50);
  border-radius: var(--hnt-radius-sm);
  border-left: 4px solid var(--hnt-teal-500);
}
.hnt-notice-label { font-size: 13px; color: var(--hnt-teal-700); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.hnt-notice-text { font-size: 14px; color: var(--hnt-slate-600); margin: 0; line-height: 1.6; }
.hnt-contact-form-card {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius);
  padding: 40px;
  box-shadow: var(--hnt-shadow);
}
.hnt-form-group { margin-bottom: 20px; }
.hnt-form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--hnt-slate-700);
  margin-bottom: 8px;
}
.hnt-form-input {
  width: 100%;
  padding: 16px 18px;
  background: var(--hnt-slate-100);
  border: 2px solid transparent;
  border-radius: var(--hnt-radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--hnt-slate-800);
  transition: var(--hnt-transition);
  outline: none;
  box-sizing: border-box;
}
.hnt-form-input:focus { border-color: var(--hnt-teal-400); background: var(--hnt-white); }
.hnt-form-input::placeholder { color: var(--hnt-slate-400); }
.hnt-form-textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--hnt-slate-100);
  border: 2px solid transparent;
  border-radius: var(--hnt-radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: var(--hnt-slate-800);
  transition: var(--hnt-transition);
  outline: none;
  resize: vertical;
  min-height: 140px;
  box-sizing: border-box;
}
.hnt-form-textarea:focus { border-color: var(--hnt-teal-400); background: var(--hnt-white); }
.hnt-form-textarea::placeholder { color: var(--hnt-slate-400); }
.hnt-form-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--hnt-teal-500), var(--hnt-teal-600));
  color: var(--hnt-white);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 800;
  border: none;
  border-radius: var(--hnt-radius-sm);
  cursor: pointer;
  transition: var(--hnt-transition);
}
.hnt-form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20,184,166,0.3); }

/* ===================== MODAL ===================== */
.hnt-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(15,23,42,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(4px);
}
.hnt-modal-overlay.hnt-open { display: flex; }
.hnt-modal-box {
  background: var(--hnt-white);
  border-radius: var(--hnt-radius-lg);
  padding: 48px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  animation: hnt-modal-in 0.3s ease;
}
@keyframes hnt-modal-in { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.hnt-modal-icon { font-size: 64px; margin-bottom: 24px; }
.hnt-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--hnt-slate-900);
  margin: 0 0 12px;
}
.hnt-modal-desc { font-size: 16px; color: var(--hnt-slate-600); margin: 0 0 28px; line-height: 1.6; }
.hnt-modal-close {
  padding: 14px 36px;
  background: var(--hnt-teal-500);
  color: var(--hnt-white);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--hnt-radius-sm);
  cursor: pointer;
  transition: var(--hnt-transition);
}
.hnt-modal-close:hover { background: var(--hnt-teal-600); }

/* ===================== LEGAL PAGES ===================== */
.hnt-legal-page { background: var(--hnt-white); }
.hnt-legal-header {
  background: linear-gradient(135deg, var(--hnt-slate-900), var(--hnt-teal-700));
  padding: 60px 32px;
  text-align: center;
}
.hnt-legal-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--hnt-teal-400);
  margin-bottom: 12px;
}
.hnt-legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 800;
  color: var(--hnt-white);
  margin: 0;
}
.hnt-legal-date {
  font-size: 14px;
  color: var(--hnt-slate-400);
  margin-top: 16px;
}
.hnt-legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 32px 96px;
}
.hnt-legal-heading {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--hnt-slate-900);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--hnt-teal-100);
}
.hnt-legal-heading:first-child { margin-top: 0; }
.hnt-legal-text {
  font-size: 16px;
  color: var(--hnt-slate-600);
  line-height: 1.8;
  margin: 0 0 16px;
}
.hnt-legal-text strong { color: var(--hnt-slate-800); font-weight: 700; }
.hnt-legal-text a { color: var(--hnt-teal-600); text-decoration: none; font-weight: 600; }
.hnt-legal-text a:hover { text-decoration: underline; }
.hnt-legal-list { padding-left: 24px; margin: 0 0 16px; }
.hnt-legal-list-item {
  font-size: 16px;
  color: var(--hnt-slate-600);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hnt-hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hnt-hero-content { order: 2; }
  .hnt-hero-visual { order: 1; max-width: 500px; margin: 0 auto; }
  .hnt-hero-desc { margin: 0 auto 36px; }
  .hnt-hero-actions { justify-content: center; }
  .hnt-hero-features { justify-content: center; }
  .hnt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hnt-features-grid { grid-template-columns: repeat(2, 1fr); }
  .hnt-showcase-grid { grid-template-columns: 1fr; }
  .hnt-compare-wrapper { grid-template-columns: 1fr; }
  .hnt-testimonials-grid { grid-template-columns: 1fr; }
  .hnt-review-wrapper { grid-template-columns: 1fr; }
  .hnt-review-sidebar { position: static; }
  .hnt-order-wrapper { grid-template-columns: 1fr; }
  .hnt-order-sidebar-card { position: static; }
  .hnt-contact-wrapper { grid-template-columns: 1fr; }
  .hnt-footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hnt-nav-menu { display: none; }
  .hnt-mobile-toggle { display: flex; }
  .hnt-hero-inner { padding: 60px 24px; }
  .hnt-section { padding: 64px 24px; }
  .hnt-stats-grid { grid-template-columns: 1fr; }
  .hnt-features-grid { grid-template-columns: 1fr; }
  .hnt-footer-top { grid-template-columns: 1fr; gap: 32px; }
  .hnt-cookie-inner { flex-direction: column; text-align: center; }
  .hnt-cookie-actions { width: 100%; justify-content: center; }
  .hnt-cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hnt-hero-actions { flex-direction: column; }
  .hnt-hero-actions .hnt-btn-main, .hnt-hero-actions .hnt-btn-secondary { width: 100%; justify-content: center; }
  .hnt-btn-main, .hnt-btn-secondary { padding: 14px 24px; }
  .hnt-hero-price-tag { font-size: 22px; padding: 12px 20px; }
  .hnt-verdict-grid { grid-template-columns: 1fr; }
}
