/* ================================================================
   NORDIC THEME — Shirem EdgePro Official Product Presentation
   Style: Scandinavian Clean Garden Craft & Precision Engineering
   Palette: Warm Paper (#FAF9F6, #F3F1EC) + Emerald Teal (#0D9488, #0F766E) + Mineral Charcoal (#1C1917, #292524)
   Accent: Nordic Amber (#D97706) + Lawn Sage (#E6F4EA, #15803D)
   Fonts: Plus Jakarta Sans, Outfit, JetBrains Mono
   ================================================================ */

:root {
  --bg-base:        #FAF9F6;
  --bg-subtle:      #F4F1EA;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #FCFCFA;
  --bg-dark:        #1C1917;
  --bg-dark-card:   #292524;
  --border-subtle:  #E7E5E0;
  --border-strong:  #D4D0C8;
  --border-focus:   #0D9488;

  --teal-primary:   #0D9488;
  --teal-dark:      #0F766E;
  --teal-light:     #14B8A6;
  --teal-soft:      rgba(13, 148, 136, 0.08);
  --teal-glow:      rgba(13, 148, 136, 0.25);
  --amber-accent:   #D97706;
  --amber-soft:     rgba(217, 119, 6, 0.1);
  --sage-green:     #15803D;
  --sage-soft:      #E8F5E9;

  --text-primary:   #1C1917;
  --text-secondary: #57534E;
  --text-muted:     #78716C;
  --text-white:     #FFFFFF;

  --font-display:   'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --container:      1200px;
  --container-narrow: 860px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --radius-pill:    9999px;

  --shadow-sm:      0 1px 3px rgba(28, 25, 23, 0.05);
  --shadow-card:    0 4px 20px rgba(28, 25, 23, 0.06);
  --shadow-hover:   0 12px 32px rgba(28, 25, 23, 0.1);
  --shadow-cta:     0 8px 24px rgba(13, 148, 136, 0.35);
  --transition:     0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ================================================================
   ANNOUNCEMENT TOP BAR
   ================================================================ */
.top-banner {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.top-banner .badge {
  background: var(--teal-primary);
  color: var(--text-white);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ================================================================
   STICKY HEADER & NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo svg {
  width: 28px;
  height: 28px;
  fill: var(--teal-primary);
}
.brand-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  background: var(--teal-soft);
  color: var(--teal-primary);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: 1px solid rgba(13, 148, 136, 0.2);
}

/* Desktop Navigation Menu: spacious Nordic luxury layout */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin-right: auto;
  padding-left: 36px;
}
.nav-menu a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal-primary);
  border-radius: var(--radius-pill);
  transition: width var(--transition);
}
.nav-menu a:hover {
  color: var(--teal-primary);
}
.nav-menu a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-primary);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-cta);
  transition: all var(--transition);
  white-space: nowrap;
}
.header-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text-primary);
}
.mobile-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ================================================================
   MOBILE NAVIGATION DRAWER
   ================================================================ */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  z-index: 1099;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.mobile-drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1100;
  padding: 24px 20px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  overflow-y: auto;
}
.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-secondary);
}
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.drawer-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.drawer-links a:hover {
  background: var(--teal-soft);
  color: var(--teal-primary);
}
.drawer-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--teal-primary);
  color: var(--text-white);
  padding: 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-cta);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
  padding: 56px 24px 64px;
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-subtle) 100%);
  position: relative;
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-soft);
  color: var(--teal-primary);
  border: 1px solid rgba(13, 148, 136, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-rating-snippet {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.stars-gold {
  color: #F59E0B;
  letter-spacing: 1px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.hero-title span {
  color: var(--teal-primary);
}
.hero-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Pricing Highlight Card in Hero */
.hero-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.current-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.original-price {
  font-size: 20px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}
.save-badge {
  background: var(--sage-soft);
  color: var(--sage-green);
  border: 1px solid rgba(21, 128, 61, 0.2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--teal-primary);
  color: var(--text-white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 800;
  box-shadow: var(--shadow-cta);
  transition: all var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.main-cta-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.45);
}
.cta-subtext {
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stat Pills Grid in Hero */
.hero-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 8px;
}
.stat-pill-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-pill-num {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--teal-primary);
}
.stat-pill-lbl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.25;
}

/* Hero Media Column */
.hero-media-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.hero-media-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.media-float-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(28, 25, 23, 0.88);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
}

/* ================================================================
   TRUST METRICS STRIP
   ================================================================ */
.trust-strip {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 36px 24px;
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}
.trust-icon-box svg {
  width: 26px;
  height: 26px;
}
.trust-metric-text {
  display: flex;
  flex-direction: column;
}
.trust-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}
.trust-desc {
  font-size: 13px;
  color: #A8A29E;
  margin-top: 2px;
}

/* ================================================================
   SECTION GENERAL LAYOUT
   ================================================================ */
.section-padding {
  padding: 80px 24px;
}
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
}
.section-pill {
  display: inline-block;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--teal-primary);
  background: var(--teal-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  border: 1px solid rgba(13, 148, 136, 0.2);
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   BENEFITS SECTION (3 CARDS, 80+ WORDS EACH)
   ================================================================ */
.benefits-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-primary);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.benefit-icon svg {
  width: 30px;
  height: 30px;
}
.benefit-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.benefit-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}
.benefit-meta-tag {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ================================================================
   3 BLADE SYSTEM SPOTLIGHT (ALTERNATING COPY & IMAGE)
   ================================================================ */
.blades-section {
  background: var(--bg-subtle);
}
.blade-feature-row {
  max-width: var(--container);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.blade-feature-row:last-child {
  margin-bottom: 0;
}
.blade-feature-row.reversed {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}
.blade-feature-row.reversed > * {
  direction: ltr;
}
.blade-img-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.blade-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blade-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--amber-accent);
  background: var(--amber-soft);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  width: fit-content;
}
.blade-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
}
.blade-desc {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.blade-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.blade-spec-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
}
.blade-spec-list svg {
  width: 18px;
  height: 18px;
  color: var(--teal-primary);
  flex-shrink: 0;
}

/* ================================================================
   COMPARISON TABLE (ZERO HORIZONTAL OVERFLOW ON MOBILE)
   ================================================================ */
.compare-container {
  max-width: 980px;
  margin: 0 auto;
}
.comparison-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.comparison-table th, 
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 15px;
}
.comparison-table th {
  background: #F4F1EA;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.comparison-table th.col-highlight {
  background: var(--teal-soft);
  color: var(--teal-dark);
  border-bottom: 2px solid var(--teal-primary);
}
.comparison-table td.col-highlight {
  background: rgba(13, 148, 136, 0.04);
  font-weight: 700;
  color: var(--teal-dark);
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.badge-winner {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-dark);
  font-weight: 700;
}
.badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DC2626;
  font-weight: 600;
}

/* Responsive Comparison Table on Tablets & Mobile: CARD TRANSFORMATION */
@media (max-width: 768px) {
  .comparison-table-wrap {
    border: none;
    box-shadow: none;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }
  .comparison-table {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .comparison-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: 16px;
    box-shadow: var(--shadow-sm);
  }
  .comparison-table td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 10px 0;
    font-size: 14.5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .comparison-table td.col-highlight {
    background: var(--teal-soft);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin: 8px 0;
    border: 1px solid rgba(13, 148, 136, 0.25);
  }
  .comparison-table td:last-child {
    border-bottom: none;
  }
  .comparison-table td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--teal-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
}

/* ================================================================
   BUNDLE SELECTOR SECTION
   ================================================================ */
.bundles-section {
  background: var(--bg-subtle);
}
.bundles-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bundle-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-primary);
}
.bundle-card.selected {
  border-color: var(--teal-primary);
  background: #FFFFFF;
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.18);
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber-accent);
  color: var(--text-white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.bundle-badge.popular {
  background: var(--teal-primary);
}
.bundle-tier-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.bundle-tier-qty {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 16px;
}
.bundle-price-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.bundle-price-total {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.bundle-unit-calc {
  font-size: 12.5px;
  color: var(--teal-dark);
  font-weight: 700;
  margin-top: 4px;
}
.bundle-retail-strike {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 2px;
}
.bundle-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.bundle-perks-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bundle-perks-list svg {
  width: 15px;
  height: 15px;
  color: var(--teal-primary);
  flex-shrink: 0;
}
.bundle-card-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  background: var(--teal-primary);
  color: var(--text-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14.5px;
  text-align: center;
  transition: background var(--transition);
  text-decoration: none;
  display: block;
}
.bundle-card-btn:hover {
  background: var(--teal-dark);
}

/* ================================================================
   UNBOXING MANIFEST SECTION
   ================================================================ */
.unboxing-container {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.unboxing-img-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.unboxing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}
.unboxing-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.unboxing-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.unboxing-tag {
  font-size: 11px;
  font-family: var(--font-mono);
  background: var(--teal-soft);
  color: var(--teal-primary);
  padding: 1px 6px;
  border-radius: 4px;
}
.unboxing-item-desc {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ================================================================
   3-STEP OPERATION SEQUENCE
   ================================================================ */
.steps-section {
  background: var(--bg-subtle);
}
.steps-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.step-media {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.step-num-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}
.step-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   TECHNICAL SPECIFICATIONS TABLE
   ================================================================ */
.specs-container {
  max-width: 860px;
  margin: 0 auto;
}
.specs-table {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: collapse;
  box-shadow: var(--shadow-card);
}
.specs-table tr {
  border-bottom: 1px solid var(--border-subtle);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table td {
  padding: 16px 22px;
  font-size: 14.5px;
}
.specs-table td.spec-name {
  font-weight: 700;
  color: var(--text-primary);
  width: 40%;
  background: #FCFCFA;
}
.specs-table td.spec-val {
  color: var(--text-secondary);
}

/* ================================================================
   REVIEWS SECTION (ALL 6 VISIBLE, 100+ WORDS EACH)
   ================================================================ */
.reviews-section {
  background: var(--bg-subtle);
}
.reviews-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-primary);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.reviewer-meta-text {
  display: flex;
  flex-direction: column;
}
.reviewer-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}
.reviewer-verified {
  font-size: 12px;
  color: var(--sage-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-stars {
  color: #F59E0B;
  font-size: 14px;
}
.review-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
}
.review-body {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.review-yard-tag {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

/* ================================================================
   FAQ ACCORDION (10 ACCORDIONS MATCHING JSON-LD SCHEMA)
   ================================================================ */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: var(--teal-primary);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-icon-cross {
  width: 20px;
  height: 20px;
  color: var(--teal-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon-cross {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
  transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}
.faq-answer-inner {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ================================================================
   FINAL CALL TO ACTION BANNER
   ================================================================ */
.final-cta-section {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 24px;
  text-align: center;
}
.final-cta-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.final-cta-title span {
  color: var(--teal-light);
}
.final-cta-subtitle {
  font-size: 17px;
  color: #D6D3D1;
  line-height: 1.6;
}
.final-price-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.final-price-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
}
.final-price-strike {
  font-size: 16px;
  color: #A8A29E;
  text-decoration: line-through;
}

/* ================================================================
   PERSISTENT STICKY BOTTOM ACTION DOCK
   ================================================================ */
.sticky-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-strong);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-dock.visible {
  transform: translateY(0);
}
.dock-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.dock-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dock-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}
.dock-title-group {
  display: flex;
  flex-direction: column;
}
.dock-name {
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
}
.dock-pricing {
  font-size: 13px;
  color: var(--text-secondary);
}
.dock-pricing strong {
  color: var(--teal-primary);
  font-size: 16px;
}
.dock-cta-btn {
  background: var(--teal-primary);
  color: var(--text-white);
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 15px;
  box-shadow: var(--shadow-cta);
  transition: all var(--transition);
  white-space: nowrap;
}
.dock-cta-btn:hover {
  background: var(--teal-dark);
}

/* ================================================================
   FOOTER SECTION
   ================================================================ */
.site-footer {
  background: #141210;
  color: #A8A29E;
  padding: 56px 24px 100px;
  font-size: 13.5px;
  border-top: 1px solid #292524;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-col {
  max-width: 380px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}
.footer-links-group {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-col-title {
  font-weight: 800;
  font-size: 13px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.footer-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #A8A29E;
  transition: color var(--transition);
}
.footer-menu a:hover {
  color: var(--teal-light);
}
.footer-disclaimers {
  font-size: 12px;
  line-height: 1.65;
  color: #78716C;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS (1024, 768, 390, 360, 320px)
   ================================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-media-wrap {
    order: -1;
  }
  .hero-media-card {
    max-width: 440px;
    margin: 0 auto;
  }
  .benefits-grid,
  .reviews-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .unboxing-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .header-actions .header-cta-btn {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-pills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blade-feature-row,
  .blade-feature-row.reversed {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .benefits-grid,
  .reviews-grid,
  .steps-grid,
  .bundles-grid {
    grid-template-columns: 1fr;
  }
  .unboxing-list {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-title {
    font-size: 28px;
  }
  .final-cta-title {
    font-size: 28px;
  }
  .dock-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .dock-cta-btn {
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-section {
    padding: 36px 16px 48px;
  }
  .section-padding {
    padding: 60px 16px;
  }
  .current-price {
    font-size: 32px;
  }
  .price-row {
    gap: 8px;
  }
  .hero-title {
    font-size: 27px;
  }
  .stat-pill-box {
    padding: 8px 6px;
  }
  .stat-pill-num {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }
  .current-price {
    font-size: 28px;
  }
  .save-badge {
    font-size: 11px;
    padding: 2px 6px;
  }
}


/* Responsive Header & Navigation Adjustments */
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

@media (max-width: 1140px) {
  .nav-menu {
    display: none !important;
  }
  .mobile-toggle {
    display: block !important;
  }
  .header-actions .header-cta-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .brand-logo {
    font-size: 17px;
    gap: 6px;
  }
  .brand-tag {
    display: none !important;
  }
  .mobile-toggle {
    padding: 6px;
  }
}

/* Mobile Drawer Zero-Overflow */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 290px;
  max-width: 80vw;
  height: 100vh;
  background: var(--bg-card);
  z-index: 1100;
  padding: 24px 20px;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  overflow-y: auto;
}
.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
