/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #1e3932;
  --dark: #1a332d;
  --dark-bg: #1e3932;
  --charcoal: #2a4f46;
  --text: #3d4f4a;
  --text-light: #6b7f79;
  --border: #dfe5e3;
  --border-light: #eef1f0;
  --white: #ffffff;
  --cream: #f7f8f6;
  --yellow: #ffd84d;
  --yellow-light: #fff8e1;
  --yellow-dark: #f5c518;
  --green: #16a34a;
  --green-light: #dcfce7;
  --red-discount: #dc2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0px 1px 3px 0px rgba(30,57,50,0.06);
  --shadow-lg: 0px 8px 24px rgba(30,57,50,0.1);
  --transition: 0.2s ease;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== PROGRESS BAR ===== */
/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--dark-bg);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

.top-banner a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  margin-left: 6px;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 0 24px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
}

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

.logo-img {
  height: 30px;
  width: auto;
  display: block;
}

.logo-badge {
  background: rgba(30,57,50,0.08);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--border);
}

.nav-callout {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1px;
}

.nav-callout svg {
  flex-shrink: 0;
  stroke: var(--dark-bg);
}

.nav-callout strong {
  color: var(--black);
  font-weight: 600;
}

.cart-indicator {
  position: relative;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: var(--transition);
  justify-self: end;
}

.cart-indicator:hover {
  background: var(--cream);
  color: var(--black);
}

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--dark-bg);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.cart-count.show {
  transform: scale(1);
}

/* ===== HOW IT WORKS STEP BAR ===== */
.how-it-works {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.how-it-works-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.hiw-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  flex: 1;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.hiw-step.active {
  background: var(--white);
  border-bottom-color: var(--dark-bg);
}

.hiw-step.completed {
  border-bottom-color: var(--green);
}

.hiw-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}

.hiw-step.active .hiw-number {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
}

.hiw-step.active .hiw-number--gift {
  background: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
}

.hiw-step.completed .hiw-number {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.hiw-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

.hiw-text span {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.3;
}

.hiw-arrow {
  color: var(--border);
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 4px;
}

/* ===== PAGE TRANSITIONS ===== */
.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadeIn 0.3s ease forwards;
}

.page.active.no-anim {
  animation: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== HERO BANNER ===== */
.hero-banner {
  background: var(--dark-bg);
  color: var(--white);
  padding: 56px 24px 48px;
  text-align: center;
  border-bottom: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero-detail {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 0;
}

.hero-stat {
  padding: 12px 28px;
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}

.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ===== VALUE PROPS STRIP ===== */
.value-strip {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.value-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-right: 1px solid var(--border);
}

.value-item:last-child {
  border-right: none;
}

.value-item svg {
  flex-shrink: 0;
  color: var(--text-light);
}

.value-item > span {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.4;
}

.value-item > span strong {
  font-weight: 600;
  color: var(--black);
}

/* ===== SHOPIFY AUDIT SECTION ===== */
.shopify-audit {
  background: var(--dark-bg);
  color: var(--white);
  padding: 0 24px;
}

.shopify-audit-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
}

.shopify-audit-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

.shopify-audit h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: normal;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 12px;
}

.shopify-audit-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

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

.shopify-audit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.shopify-audit-list li svg {
  flex-shrink: 0;
}

/* ===== PRODUCTS SECTION ===== */
.products-section-bg {
  background: var(--cream);
}

.products-section-header {
  padding: 32px 24px 0;
}

.products-section-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.products-section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--black);
  margin-bottom: 4px;
}

.products-section-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.products-section-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.products-section-badge svg {
  color: var(--green);
}

/* Product card brand row */
.product-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.product-zamp-badge {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.product-zamp-badge svg {
  color: var(--green);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  box-shadow: var(--shadow);
}

.product-card:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card.selected {
  border-color: var(--black);
  box-shadow: 0 0 0 2px var(--black), var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card.selected::after {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}

.product-info {
  padding: 16px;
}

.product-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-original {
  font-size: 0.95rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-free {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-bg);
  background: rgba(30,57,50,0.08);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark-bg);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 90;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.06);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.selected-product-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
}

.selected-product-preview .mini-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--charcoal);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-schedule {
  width: 100%;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
}

.btn-schedule:hover {
  background: var(--charcoal);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.back-btn:hover { color: var(--black); }

/* ===== CHECKOUT LAYOUT ===== */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}

.checkout-form-side h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== FORM ===== */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--black);
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  height: 44px;
  box-shadow: var(--shadow);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

.form-group input::placeholder {
  color: #c0c0c0;
}

/* ===== ORDER SUMMARY ===== */
.checkout-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.csp-stat {
  text-align: center;
}

.csp-stat strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.csp-stat span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.csp-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

.order-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.summary-product {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.summary-product .summary-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.summary-product .summary-details {
  flex: 1;
}

.summary-product .summary-details .s-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.summary-product .summary-details .s-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-discount {
  color: var(--red-discount);
  font-weight: 600;
}

.summary-total {
  border-top: 2px solid var(--dark-bg);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
}

.summary-free {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

.tax-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: var(--yellow-light);
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
}

.tax-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CALENDLY MODAL ===== */
.calendly-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

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

.calendly-modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow: auto;
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.calendly-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 20px;
}

.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.close-modal:hover {
  background: var(--cream);
  color: var(--black);
}

.calendly-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

.calendly-placeholder p {
  margin-bottom: 12px;
}

.calendly-instructions {
  font-size: 0.8rem;
  color: var(--text-light);
}

.calendly-instructions code {
  background: var(--cream);
  padding: 2px 6px;
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.calendly-inline-widget {
  min-height: 500px;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 160px);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
}

.thankyou-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.checkmark-circle {
  width: 72px;
  height: 72px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thankyou-card h1 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}

.thankyou-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.thankyou-product {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.thankyou-product .ty-emoji {
  font-size: 2rem;
}

.thankyou-product .ty-info {
  text-align: left;
}

.thankyou-product .ty-brand {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.thankyou-product .ty-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}

.thankyou-details {
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.thankyou-tagline {
  margin-top: 12px;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
}

.btn-visit {
  margin-top: 8px;
}

/* ===== CONFETTI ===== */
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confettiFall linear forwards;
  z-index: 0;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* ===== FLOATING PROMO ===== */
.floating-promo {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 80;
  animation: promoSlideIn 0.6s ease 1s both;
}

.floating-promo-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--dark-bg);
  border-radius: 60px;
  padding: 8px 20px 8px 8px;
  box-shadow: 0 8px 32px rgba(30,57,50,0.18);
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-promo-inner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(30,57,50,0.22);
}

.promo-discount {
  background: var(--dark-bg);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: 50px;
  white-space: nowrap;
  line-height: 1;
  animation: promoPulse 2s ease-in-out infinite;
}

.promo-detail {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.promo-line {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.promo-sub {
  font-size: 0.72rem;
  color: var(--text-light);
  white-space: nowrap;
}

.promo-arrow {
  color: var(--text-light);
  flex-shrink: 0;
}

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

@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 0;
  font-size: 0.85rem;
}

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

.footer-top {
  display: flex;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand {
  flex-shrink: 0;
}

.footer-logo {
  height: 28px;
  width: auto;
  filter: invert(1);
}

.footer-links {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}

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

.footer-heading {
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== EXIT INTENT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: exitFadeIn 0.3s ease;
}

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

@keyframes exitFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.exit-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: exitSlideUp 0.4s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}

@keyframes exitSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.exit-close:hover {
  background: var(--cream);
  color: var(--black);
}

.exit-badge {
  display: inline-block;
  background: var(--dark-bg);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.exit-modal h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 12px;
}

.exit-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.exit-desc strong {
  color: var(--black);
}

.exit-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timer-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  min-width: 72px;
  line-height: 1;
}

.timer-colon {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-top: -18px;
}

.timer-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.exit-cta {
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.exit-fine {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-callout {
    font-size: 0.72rem;
    padding: 6px 12px;
    gap: 6px;
  }

  .nav-callout svg {
    width: 14px;
    height: 14px;
  }

  .value-strip-inner {
    flex-direction: column;
  }

  .value-item {
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 100%;
    justify-content: center;
  }

  .value-item:last-child {
    border-bottom: none;
  }

  .hero-stats {
    flex-direction: row;
    width: 100%;
  }

  .hero-stat {
    padding: 10px 16px;
    flex: 1;
  }

  .hero-stat strong {
    font-size: 1.25rem;
  }

  .shopify-audit-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .shopify-audit h2 {
    font-size: 1.4rem;
  }

  .how-it-works-inner {
    flex-direction: column;
  }

  .hiw-step {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 3px solid transparent;
  }

  .hiw-arrow {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    padding: 24px 16px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px;
  }

  .checkout-summary-side {
    order: -1;
  }

  .order-summary {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    gap: 12px;
    padding: 12px 16px;
  }

  .floating-promo {
    left: 12px;
    bottom: 16px;
  }

  .floating-promo-inner {
    padding: 6px 14px 6px 6px;
    gap: 10px;
  }

  .promo-discount {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .promo-line { font-size: 0.78rem; }
  .promo-sub { font-size: 0.65rem; }
  .promo-arrow { display: none; }

  .exit-modal {
    padding: 36px 24px;
  }

  .exit-modal h2 {
    font-size: 1.3rem;
  }

  .timer-num {
    font-size: 1.8rem;
    padding: 6px 14px;
    min-width: 56px;
  }

  .calendly-modal {
    width: 95%;
    padding: 20px;
  }

  .thankyou-card {
    padding: 32px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px 40px;
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-inner {
    min-height: 56px;
  }

  .logo-badge {
    display: none;
  }

  .hero-banner {
    padding: 40px 16px 32px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .top-banner {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
}
