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

:root {
  
  --bg-body: #f8fafc;
  --bg-surface: #ffffff;
  --bg-subtle: #f1f5f9;
  --bg-card: #ffffff;
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #3b82f6;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-inverse: #ffffff;

  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-primary-light: #eff6ff;
  --brand-primary-border: #bfdbfe;

  --accent-laser: #ef4444;
  --accent-laser-light: #fef2f2;
  --accent-success: #10b981;
  --accent-success-light: #ecfdf5;
  --accent-warning: #f59e0b;
  --accent-warning-light: #fffbeb;

  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-glow: 0 0 25px -5px rgba(37, 99, 235, 0.35);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --container-max: 1140px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  animation: preloaderFadeOut 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
  pointer-events: all;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--brand-primary);
  border-right-color: var(--accent-laser);
  border-radius: 50%;
  animation: preloaderSpin 0.9s linear infinite;
}

.preloader-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  animation: preloaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  from { opacity: 0.6; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes preloaderFadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }
}

.top-announcement {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  color: #f8fafc;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-announcement .badge-deal {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.top-announcement-link {
  color: #93c5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.top-announcement-link:hover {
  color: #ffffff;
}

.header-masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-brand-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  border-left: 1px solid var(--border-subtle);
  padding-left: 12px;
  letter-spacing: 0.5px;
  display: none;
}

@media (min-width: 768px) {
  .header-brand-badge {
    display: inline-block;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-link-anchor {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-link-anchor:hover {
  color: var(--brand-primary);
  border-bottom-color: var(--brand-primary);
}

.nav-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-action-btn:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.main-wrapper {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  flex: 1;
}

.hero-wrapper {
  padding: 48px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
}

.stars {
  color: var(--accent-warning);
  font-size: 14px;
  letter-spacing: 1px;
}

.rating-score {
  font-weight: 700;
  color: var(--text-primary);
}

.hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 46px;
  }
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 26px;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-xs);
}

.value-pill-icon {
  color: var(--brand-primary);
  font-size: 14px;
  display: flex;
}

.price-deal-card {
  border-left: 4px solid var(--brand-primary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.price-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1;
}

.old-price {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.save-badge {
  background: var(--accent-laser-light);
  color: var(--accent-laser);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.price-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.price-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.check-green {
  color: var(--accent-success);
  font-weight: bold;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
  }
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1e40af 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.45);
  transition: var(--transition);
  text-align: center;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -4px rgba(37, 99, 235, 0.6);
  color: #ffffff;
}

.btn-secondary-clean {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid var(--border-medium);
  transition: var(--transition);
  text-align: center;
}

.btn-secondary-clean:hover {
  background: var(--bg-subtle);
  border-color: var(--text-primary);
  transform: translateY(-1px);
}

.trust-micro-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.trust-micro-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-gallery-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.gallery-laser-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: var(--accent-laser);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  animation: pulseLaser 2s infinite ease-in-out;
}

@keyframes pulseLaser {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

.gallery-main-view {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.gallery-main-img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.25s ease;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
}

.gallery-main-view:hover .gallery-main-img {
  transform: scale(1.04);
}

.gallery-thumbs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.thumb-btn:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.thumb-btn.active {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.thumb-label {
  position: absolute;
  bottom: 3px;
  left: 3px;
  right: 3px;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  padding: 1px 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stats-ribbon {
  margin: 20px 0 60px;
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.stat-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary-border);
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: inline-block;
}

.stat-big-val {
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-caption {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

.section-header-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-primary);
  background: var(--brand-primary-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-main-heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-main-heading {
    font-size: 36px;
  }
}

.section-lead-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-showcase-section {
  margin-bottom: 80px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 64px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 992px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 48px;
  }
  .showcase-row.reversed {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-row.reversed .showcase-image-col {
    order: 2;
  }
  .showcase-row.reversed .showcase-text-col {
    order: 1;
  }
}

.showcase-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.showcase-img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
  transition: transform 0.4s ease;
}

.showcase-row:hover .showcase-img {
  transform: scale(1.03);
}

.showcase-text-col {
  display: flex;
  flex-direction: column;
}

.showcase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-laser);
  background: var(--accent-laser-light);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  width: fit-content;
}

.showcase-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  color: var(--text-primary);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .showcase-title {
    font-size: 30px;
  }
}

.showcase-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 22px;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-title {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.bullet-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.modes-section {
  margin-bottom: 80px;
}

.modes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mode-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.mode-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary-border);
}

.mode-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mode-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.mode-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.mode-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.specs-section {
  margin-bottom: 80px;
}

.specs-package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .specs-package-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.specs-card, .package-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.card-inner-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-table-modern {
  width: 100%;
  border-collapse: collapse;
}

.specs-table-row {
  border-bottom: 1px solid var(--border-subtle);
}

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

.specs-table-cell {
  padding: 12px 14px;
  font-size: 14px;
}

.specs-table-label {
  font-weight: 600;
  color: var(--text-primary);
  width: 40%;
  background: var(--bg-subtle);
  border-radius: 6px 0 0 6px;
}

.specs-table-value {
  color: var(--text-secondary);
  font-weight: 500;
}

.package-list-modern {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-item-modern {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.package-check {
  color: var(--accent-success);
  font-size: 16px;
}

.warranty-callout {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--brand-primary-light), #e0e7ff);
  border: 1px solid var(--brand-primary-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}

.warranty-callout-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--brand-primary-hover);
  margin-bottom: 4px;
}

.warranty-callout-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.comparison-section {
  margin-bottom: 80px;
}

.comparison-table-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comp-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .comp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comp-col {
  padding: 36px 32px;
}

.comp-col.bad {
  background: #fdfefe;
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .comp-col.bad {
    border-bottom: none;
    border-right: 1px solid var(--border-subtle);
  }
}

.comp-col.good {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  position: relative;
}

.comp-recommended-badge {
  position: absolute;
  top: 14px;
  right: 20px;
  background: var(--accent-success);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.comp-header {
  margin-bottom: 24px;
}

.comp-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.comp-col.bad .comp-title {
  color: var(--text-muted);
}

.comp-col.good .comp-title {
  color: #166534;
}

.comp-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.comp-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 1px;
}

.comp-icon.cross {
  background: #fee2e2;
  color: #ef4444;
}

.comp-icon.tick {
  background: #dcfce7;
  color: #15803d;
}

.reviews-section {
  margin-bottom: 80px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--accent-warning);
  font-size: 15px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  font-style: normal;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), #60a5fa);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author-info {
  display: flex;
  flex-direction: column;
}

.review-author-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.review-author-meta {
  font-size: 11px;
  color: var(--accent-success);
  display: flex;
  align-items: center;
  gap: 3px;
}

.faq-section {
  margin-bottom: 80px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  overflow: hidden;
}

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

.faq-question {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-icon-toggle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--brand-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(45deg);
  background: var(--brand-primary-light);
}

.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
  transition: max-height 0.35s ease-in-out;
}

.cta-banner-section {
  margin-bottom: 60px;
}

.cta-banner-card {
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.4) 0%, transparent 60%), linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: 38px;
  }
}

.cta-banner-sub {
  font-size: 16px;
  color: #94a3b8;
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.cta-banner-price-tag {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-banner-original-price {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 500;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-banner-micro {
  font-size: 13px;
  color: #94a3b8;
}

.order-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 32px 0 60px;
}

@media (min-width: 992px) {
  .order-page-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

.order-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.order-summary-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.order-product-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.order-product-sku {
  font-size: 13px;
  color: var(--text-muted);
}

.order-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-secondary);
}

.breakdown-row.highlight {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  margin-top: 6px;
}

.order-trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.trust-badge-card {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

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

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

@media (min-width: 640px) {
  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-info-item {
  background: var(--bg-subtle);
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
}

.contact-info-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  word-break: break-word;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-surface);
  transition: var(--transition);
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit-btn {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #1d4ed8 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.legal-wrapper {
  max-width: 820px;
  margin: 40px auto 60px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.legal-heading {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 32px 0 12px;
}

.legal-heading:first-of-type {
  margin-top: 10px;
}

.legal-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 18px;
}

.legal-list-item {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-link {
  color: var(--brand-primary);
  text-decoration: underline;
}

.footer-container {
  background: #0f172a;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 380px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-item:hover {
  color: #ffffff;
}

.footer-disclaimer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-box {
  background: var(--bg-surface);
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 440px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  animation: popupSlide 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popupSlide {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

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

.popup-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.popup-message {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.popup-close-btn {
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.popup-close-btn:hover {
  background: var(--brand-primary-hover);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  margin-left: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  display: none;
  animation: cookieSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  display: block;
}

@keyframes cookieSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-link {
  color: var(--brand-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn-accept {
  flex: 1;
  background: var(--brand-primary);
  color: #ffffff;
  border: none;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background: var(--brand-primary-hover);
}

.cookie-btn-reject {
  background: var(--bg-subtle);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-reject:hover {
  background: var(--border-subtle);
  color: var(--text-primary);
}

.header-kicker {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;
}

.header-brand {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  text-align: center;
}

.header-brand .header-logo-link {
  display: inline-block;
  margin: 0 auto;
}

.header-brand .header-logo-img {
  height: 44px;
  margin: 0 auto;
}

.header-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  text-align: center;
  font-weight: 500;
}

.legal-content {
  padding: 10px 0 40px;
}

.legal-heading {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 28px 0 10px;
}

.legal-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-list {
  padding-left: 20px;
  margin-bottom: 18px;
}

.legal-list-item {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.legal-link {
  color: var(--brand-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-link:hover {
  color: var(--brand-primary-hover);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 24px;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-brand {
  text-align: center;
}

.footer-brand-name {
  font-weight: 700;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 6px;
}

.footer-brand-address {
  font-size: 12px;
  color: #64748b;
  margin: 3px 0;
}

.footer-disclaimer {
  font-size: 11px;
  color: #64748b;
  margin-top: 14px;
  max-width: 580px;
  line-height: 1.6;
}
