/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Design System Variables */
:root {
  /* Base warmth (hospitality & loyalty) */
  --deep-cocoa: #2B1E1A;
  --warm-espresso: #3A2A24;
  
  /* Soft backgrounds */
  --cream: #FFF8F2;
  --card-cream: #F6EFE9;
  
  /* Primary brand accent (reward/action) */
  --burnt-orange: #E67A2E;
  --burnt-orange-hover: #F08B3E;
  
  /* Success / verification accent */
  --mint-green: #2EDB8C;
  --mint-green-dark: #1FB574;
  
  /* Text */
  --headline: #1A1A1A;
  --body: #4A4A4A;
  --muted: #7A7A7A;
  
  /* Borders */
  --subtle-border: #E6DED7;
  
  /* Layout */
  --container-width: 1200px;
  --container-padding: 24px;
  --section-spacing-large: 96px;
  --section-spacing-medium: 72px;
  
  /* Styling */
  --border-radius: 0.5rem;
  --shadow-subtle: 0 1px 3px rgba(43, 30, 26, 0.08);
  --shadow-card: 0 2px 8px rgba(43, 30, 26, 0.12);
  --shadow-warm: 0 4px 16px rgba(230, 122, 46, 0.15);
}

/* Container utility */
.container-standard {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Section spacing */
section {
  scroll-margin-top: 80px;
}

/* Typography improvements */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--headline);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

p {
  line-height: 1.6;
  font-size: 1rem;
}

/* Image styling - remove hover transform */
img {
  max-width: 100%;
  height: auto;
}

/* Remove unnecessary animations */
.fade-in-up {
  /* Animation removed for cleaner, more professional feel */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --section-spacing-large: 64px;
    --section-spacing-medium: 48px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  p {
    font-size: 1rem;
  }
}







:root {
  /* Base warmth (hospitality & loyalty) */
  --deep-cocoa: #2B1E1A;
  --warm-espresso: #3A2A24;
  
  /* Soft backgrounds */
  --cream: #FFF8F2;
  --card-cream: #F6EFE9;
  
  /* Primary brand accent (reward/action) */
  --burnt-orange: #E67A2E;
  --burnt-orange-hover: #F08B3E;
  
  /* Success / verification accent */
  --mint-green: #2EDB8C;
  --mint-green-dark: #1FB574;
  
  /* Text */
  --headline: #1A1A1A;
  --body: #4A4A4A;
  --muted: #7A7A7A;
  
  /* Borders */
  --subtle-border: #E6DED7;
  
  /* Layout */
  --container-width: 1200px;
  --container-padding: 24px;
  --section-spacing-large: 96px;
  --section-spacing-medium: 72px;
  --border-radius: 0.5rem;
  --shadow-subtle: 0 1px 3px rgba(43, 30, 26, 0.08);
  --shadow-card: 0 2px 8px rgba(43, 30, 26, 0.12);
  --shadow-warm: 0 4px 16px rgba(230, 122, 46, 0.15);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--headline);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 600;
}

/* Hero background - warm radial gradient with texture */
.hero-bg {
  background:
    radial-gradient(circle at top left, #3A2A24 0%, #2B1E1A 60%),
    linear-gradient(135deg, rgba(255,248,242,0.06), rgba(0,0,0,0.2));
  position: relative;
  color: rgba(255,255,255,.92);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.hero-bg .app-logo .logo-points,
.hero-bg .app-logo .logo-period {
  color: rgba(255,255,255,.92);
}

/* Logo Component */
.app-logo {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
.app-logo .logo-points {
  color: var(--headline);
}
.app-logo .logo-card {
  color: var(--burnt-orange);
}
.app-logo .logo-period {
  color: var(--headline);
}

/* Inline logo styling for text */
.logo-inline {
  display: inline;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-inline .logo-points {
  color: inherit;
}
.logo-inline .logo-card {
  color: var(--burnt-orange);
}
.logo-inline .logo-period {
  color: inherit;
}

/* Primary button - Burnt Orange */
.btn-primary {
  background-color: var(--burnt-orange);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
  background-color: var(--burnt-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 122, 46, 0.25);
}

.btn-primary:focus {
  outline: 2px solid var(--burnt-orange);
  outline-offset: 2px;
}

/* Secondary button - outlined */
.btn-secondary {
  background-color: var(--cream);
  color: var(--headline);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--subtle-border);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: var(--card-cream);
  border-color: var(--burnt-orange);
}

.btn-secondary:focus {
  outline: 2px solid var(--burnt-orange);
  outline-offset: 2px;
}

.qr-code-container {
  background: #FFF8F2;
  padding: 2rem;
  border-radius: 18px;
  border: 1px solid #E6DED7;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);
  display: inline-block;
  position: relative;
}

.hero-bg .qr-code-container {
  background: #FFF8F2;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* Verified pill badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--mint-green);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 0.75rem;
}

/* Card styling - consistent, professional */
/* Card styles - unified */
.benefit-card {
  background: var(--card-cream);
  border: 1px solid var(--subtle-border);
  border-radius: var(--border-radius);
  padding: 2rem;
}

/* Pricing Receipt Cards */
.pricing-receipt {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.pricing-receipt::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 4px,
    transparent 4px,
    transparent 8px
  );
}

.pricing-receipt-card {
  background: white;
  padding: 2rem 1.5rem;
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.1),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  font-family: 'Courier New', Courier, monospace;
  position: relative;
  overflow: hidden;
}

.pricing-receipt-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: repeating-linear-gradient(
    to right,
    #000 0px,
    #000 4px,
    transparent 4px,
    transparent 8px
  );
}

.pricing-receipt-header {
  text-align: center;
  border-bottom: 1px dashed #000;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.pricing-receipt-header .plan-name {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.pricing-receipt-card {
  background: white;
  padding: 2rem 1.5rem;
  box-shadow: 
    0 2px 8px rgba(0,0,0,0.1),
    inset 0 0 0 1px rgba(0,0,0,0.05);
  font-family: 'Courier New', Courier, monospace;
  position: relative;
  overflow: hidden;
}

.pricing-receipt-header {
  position: relative;
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  font-size: 0.75rem;
  padding: 0.5rem 3rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 10;
  width: 160px;
  text-align: center;
  line-height: 1.4;
}

.plan-badge.free {
  background: #2EDB8C;
}

.plan-badge.popular {
  background: var(--burnt-orange);
}

.plan-badge.business {
  background: var(--warm-espresso);
}

.pricing-receipt-header .plan-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--burnt-orange);
  margin-bottom: 0.25rem;
}

.pricing-receipt-header .plan-period {
  font-size: 0.75rem;
  color: var(--muted);
}

.pricing-receipt-items {
  margin: 1rem 0;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.875rem;
  line-height: 1.4;
}

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

.receipt-item-name {
  flex: 1;
  color: #000;
  text-align: left;
}

.receipt-item-price {
  color: var(--muted);
  font-weight: normal;
}

.receipt-item-price.free {
  color: var(--muted);
}

.pricing-receipt-total {
  border-top: 2px solid #000;
  border-bottom: 1px dashed #000;
  padding: 1rem 0;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.receipt-total-label {
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.receipt-total-price {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--burnt-orange);
}

.pricing-receipt-button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--burnt-orange);
  color: white;
  border: 2px solid #000;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  text-align: center;
  box-shadow: 2px 2px 0 #000;
}

.pricing-receipt-button:hover {
  background: var(--burnt-orange-hover);
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 #000;
}

.pricing-receipt-footer {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

/* Use case grid - clean 4x2 layout */
.usecase-band {
  background: var(--cream);
  border-top: 1px solid var(--subtle-border);
  border-bottom: 1px solid var(--subtle-border);
  padding: 4rem 0;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.usecase-item {
  background: var(--card-cream);
  border: 1px solid var(--subtle-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 150px;
}

.usecase-item.with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.usecase-item.bg-coffee {
  background-image: url('../coffee.webp');
}

.usecase-item.bg-barber {
  background-image: url('../barber.webp');
}

.usecase-item.bg-foodtruck {
  background-image: url('../foodtruck.webp');
}

.usecase-item.bg-fitness {
  background-image: url('../fitness.webp');
}

.usecase-item.bg-bakery {
  background-image: url('../bakery.webp');
}

.usecase-item.bg-nailsalon {
  background-image: url('../nailsalon.webp');
}

.usecase-item.bg-home {
  background-image: url('../home.webp');
}

.usecase-item.bg-retail {
  background-image: url('../retail.webp');
}

.usecase-item:hover {
  border-color: var(--burnt-orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.usecase-item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--headline);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.usecase-item.with-bg .usecase-item-title {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  margin: 0;
  text-align: left;
}

.usecase-item-label {
  font-size: 0.875rem;
  color: var(--body);
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.usecase-item.with-bg .usecase-item-label {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Editorial layout - alternating rows */
.editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--subtle-border);
}

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

.editorial-row.reverse {
  direction: rtl;
}

.editorial-row.reverse > * {
  direction: ltr;
}

.editorial-content h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--headline);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.editorial-content p {
  font-size: 1.125rem;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* Benefits Grid - Clean Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
}

.benefit-image {
  width: 100%;
  height: 400px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.benefit-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(43, 30, 26, 0.85) 0%, rgba(43, 30, 26, 0.75) 100%);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  min-height: 90px;
  height: 90px;
}

.benefit-image-overlay-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

.benefit-image-overlay-icon.orange {
  background: rgba(230, 122, 46, 0.25);
}

.benefit-image-overlay-icon.green {
  background: rgba(46, 219, 140, 0.25);
}

.benefit-image-overlay-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.benefit-image-overlay-icon svg path,
.benefit-image-overlay-icon svg rect {
  stroke: white !important;
  fill: none;
}

.benefit-image-overlay-content {
  flex: 1;
}

.benefit-image-overlay-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.benefit-image-overlay-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}

.benefit-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--headline);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.benefit-content p:last-of-type {
  margin-bottom: 0;
}

/* How it works - Physical Punch Card Style */
.how-it-works-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Punch Card Component */
.punch-card {
  background: var(--card-cream);
  border: 1px solid var(--subtle-border);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(43, 30, 26, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

/* Subtle perforation effect */
.punch-card {
  background-image: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(230, 122, 46, 0.03) 2px,
      rgba(230, 122, 46, 0.03) 4px
    );
}

/* Step 3 card - complete state with green styling */
.punch-card.step-3 {
  background: linear-gradient(
    to bottom,
    rgba(46, 219, 140, 0.08) 0%,
    rgba(46, 219, 140, 0.12) 100%
  ),
  var(--card-cream);
  border: 2px solid var(--mint-green);
  box-shadow: 
    0 4px 16px rgba(43, 30, 26, 0.18),
    0 0 0 1px rgba(46, 219, 140, 0.2) inset;
}

/* Hover effect */
@media (prefers-reduced-motion: no-preference) {
  .punch-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(43, 30, 26, 0.22);
  }
  
  .punch-card.step-3:hover {
    box-shadow: 
      0 8px 24px rgba(43, 30, 26, 0.22),
      0 0 0 1px rgba(46, 219, 140, 0.3) inset,
      0 0 20px rgba(46, 219, 140, 0.15);
  }
}

/* Step ribbon - full width at top of card */
.punch-card-ribbon {
  position: absolute;
  top: 0;
  left: -2rem;
  right: -2rem;
  background: var(--burnt-orange);
  color: white;
  padding: 0.625rem 2rem;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
  border-radius: 18px 18px 0 0;
  font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, sans-serif;
}

.punch-card.step-3 .punch-card-ribbon {
  border-radius: 18px 18px 0 0;
}

.punch-card.step-3 .punch-card-ribbon {
  background: var(--mint-green);
}

/* Step header with title below ribbon */
.punch-card-header {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.punch-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--headline);
  margin: 0;
  line-height: 1.3;
  font-family: 'Poppins', 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.01em;
}

/* Card content */
.punch-card-content {
  color: var(--body);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-size: 1.0625rem;
  flex: 1;
  position: relative;
  z-index: 2;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 400;
}

/* Punch strip with numbered icons */
.punch-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--subtle-border);
  position: relative;
  z-index: 2;
}

.punch-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--subtle-border);
  background: var(--card-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--muted);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  filter: grayscale(100%) opacity(0.5);
}

/* Support for SVG icons in punch icons */
.punch-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.punch-icon::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 2px 4px rgba(43, 30, 26, 0.1);
}

/* Filled/active icons - show emoji in full color with orange circle border (steps 1 & 2) */
.punch-icon.filled {
  background: var(--card-cream);
  border: 3px solid var(--burnt-orange);
  filter: none;
  opacity: 1;
  color: inherit;
  box-shadow: 
    0 0 0 2px var(--card-cream),
    0 2px 6px rgba(230, 122, 46, 0.3);
}

.punch-icon.filled::after {
  background: transparent;
  box-shadow: none;
}

.punch-icon.filled svg {
  color: var(--burnt-orange);
  stroke: var(--burnt-orange);
}

/* Step 3: All icons have green circles AND semi-transparent green backgrounds (all done) */
.punch-card.step-3 .punch-icon.filled {
  background: rgba(46, 219, 140, 0.2);
  border: 3px solid var(--mint-green);
  box-shadow: 
    0 0 0 2px var(--card-cream),
    0 2px 6px rgba(46, 219, 140, 0.3);
}

.punch-card.step-3 .punch-icon.filled::after {
  background: transparent;
  box-shadow: none;
}

.punch-card.step-3 .punch-icon.filled svg {
  color: var(--mint-green);
  stroke: var(--mint-green);
}

/* Hover effect on active punch icon */
@media (prefers-reduced-motion: no-preference) {
  .punch-card:hover .punch-icon.filled {
    transform: scale(1.05);
  }
}

/* Serial number */
.punch-card-serial {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  z-index: 2;
}

/* Screen reader only text for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.stats-section {
  background: var(--card-cream);
  border-radius: var(--border-radius);
  padding: 3rem;
  border: 1px solid var(--subtle-border);
}

/* 3-step row styling */
.steps-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 200px;
  background: var(--card-cream);
  border: 1px solid var(--subtle-border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: var(--burnt-orange);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--headline);
  margin: 0;
}

.step-card p {
  font-size: 0.875rem;
  color: var(--body);
  margin: 0;
  line-height: 1.5;
}

/* Section spacing */
.section-large {
  padding: var(--section-spacing-large) 0;
}

.section-medium {
  padding: var(--section-spacing-medium) 0;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --section-spacing-large: 64px;
    --section-spacing-medium: 48px;
  }
  
  body {
    font-size: 16px;
  }
  
  .qr-code-container {
    padding: 1.5rem;
  }
  
  .hero-bg h1 {
    font-size: 2.5rem;
  }
  
  .editorial-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .editorial-row.reverse {
    direction: ltr;
  }
  
  .how-it-works-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .how-it-works-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .punch-card {
    padding: 1.5rem;
    min-height: 240px;
  }
  
  .punch-card-title {
    font-size: 1.25rem;
  }
  
  .punch-card-content {
    font-size: 0.9375rem;
  }
  
  .punch-strip {
    padding-top: 1.25rem;
    gap: 1rem;
  }
  
  .punch-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  /* Pricing receipts responsive */
  .grid.grid-cols-1.md\\:grid-cols-3 {
    grid-template-columns: 1fr !important;
  }
  
  .pricing-receipt {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .pricing-receipt-card {
    padding: 1.5rem 1rem;
  }
  
  .pricing-receipt-header .plan-name {
    font-size: 1rem;
  }
  
  .pricing-receipt-header .plan-price {
    font-size: 1.25rem;
  }
  
  .receipt-item {
    font-size: 0.8125rem;
  }
  
  .receipt-total-price {
    font-size: 1.125rem;
  }
  
  .pricing-receipt-button {
    font-size: 0.8125rem;
    padding: 0.625rem;
  }
  
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .usecase-item {
    padding: 1.5rem 1rem;
  }
  
  .usecase-item-title {
    font-size: 1rem;
  }
  
  .usecase-item-label {
    font-size: 0.8125rem;
  }
  
  .steps-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-card {
    min-width: 100%;
  }
  
  /* Benefits grid responsive */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .benefit-image {
    height: 280px;
  }
  
  .benefit-image-overlay {
    padding: 0.875rem 1.25rem;
    gap: 0.875rem;
    min-height: 75px;
    height: 75px;
  }
  
  .benefit-image-overlay-icon {
    width: 36px;
    height: 36px;
  }
  
  .benefit-image-overlay-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .benefit-image-overlay-content h4 {
    font-size: 1rem;
  }
  
  .benefit-image-overlay-content p {
    font-size: 0.8125rem;
  }
}