/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  background: var(--cream);
}

/* Hero entrance and phone animation */
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroPhoneFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(2deg) translateY(-8px); }
}
@keyframes heroPhoneFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero-bg .container > div > div:first-child h1,
.hero-bg .container > div > div:first-child .btn-primary,
.hero-bg .container > div > div:first-child > p {
  opacity: 0;
  animation: heroFadeIn 0.6s ease-out forwards;
}
.hero-bg .container > div > div:first-child h1 { animation-delay: 0.1s; }
.hero-bg .container > div > div:first-child .btn-primary { animation-delay: 0.25s; }
.hero-bg .container > div > div:first-child > p { animation-delay: 0.4s; }
.hero-phone-perspective .hero-phone-wrapper {
  opacity: 0;
  animation: heroPhoneFadeIn 0.8s ease-out 0.2s forwards, heroPhoneFloat 4s ease-in-out 1s infinite;
}

/* Stats strip below hero */
.stats-strip-hero .stat-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stats-strip-hero .stat-strip-value {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--burnt-orange);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stats-strip-hero .stat-strip-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* Light stats strip (when hero is light) */
.stats-strip-light {
  background: linear-gradient(to bottom, rgba(255, 248, 242, 0.6) 0%, rgba(246, 239, 233, 0.9) 100%);
  border-top: 1px solid var(--subtle-border);
  border-bottom: 1px solid var(--subtle-border);
}
.stats-strip-light .stat-strip-label {
  color: var(--body);
}
.hero-bg .hero-cta-footer {
  color: var(--muted);
}

/* 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: #F97316;
  --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(249, 115, 22, 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) !important;
  background: var(--cream) !important;
}

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: #F97316;
  --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(249, 115, 22, 0.15);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--body) !important;
  background: var(--cream) !important;
  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 - light (cream with subtle warm gradient) */
.hero-bg {
  background:
    linear-gradient(to bottom,
      var(--cream) 0%,
      rgba(255, 248, 242, 0.98) 50%,
      rgba(246, 239, 233, 0.95) 100%
    );
  position: relative;
  color: var(--headline);
}
.hero-bg h1,
.hero-bg h2 {
  color: var(--headline);
}
.hero-bg h1 span,
.hero-bg h2 span {
  color: var(--burnt-orange);
}
.hero-bg p {
  color: var(--body);
}
.hero-bg p span {
  color: var(--burnt-orange);
}

/* Navigation - solid background without gradient */
nav.hero-bg {
  background: var(--warm-espresso);
}

nav.hero-bg::after {
  display: none;
}

/* White header (logo + nav bar) */
nav.header-white {
  background: #fff;
  border-bottom: 1px solid var(--subtle-border);
}
nav.header-white::after {
  display: none;
}
/* Header logo: P and INTS orange, CARD headline (match index) */
nav.header-white .app-logo {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
nav.header-white .app-logo > span:first-child {
  color: var(--burnt-orange) !important;
}
nav.header-white .app-logo > span:last-child {
  color: var(--burnt-orange) !important;
}
nav.header-white .app-logo > span:last-child > span {
  color: var(--headline) !important;
}
nav.header-white .header-nav-link {
  color: var(--body) !important;
}
nav.header-white .header-nav-link:hover {
  color: var(--burnt-orange) !important;
}
nav.header-white .header-burger {
  color: var(--headline) !important;
}
nav.header-white .header-burger:hover {
  background: rgba(0,0,0,.06) !important;
  color: var(--burnt-orange) !important;
}
#nav-menu-dropdown {
  display: none;
  flex-direction: column;
}
#nav-menu-dropdown.open {
  display: flex;
}
#nav-menu-dropdown .nav-menu-link:hover {
  color: var(--burnt-orange) !important;
}

/* Site footer — SaaS-style columns */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 2rem 2.5rem;
  align-items: start;
}

.site-footer .footer-brand {
  max-width: 280px;
}

.site-footer .footer-tagline {
  font-size: 0.95rem;
}

.site-footer .footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--headline);
  margin-bottom: 1rem;
}

.site-footer .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer .footer-link {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer .footer-link:hover {
  color: var(--burnt-orange);
}

.site-footer .footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--subtle-border);
}

@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 540px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  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='.2'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* 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 - Brown */
.btn-primary {
  background-color: var(--warm-espresso);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  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: 0 4px 16px rgba(58, 42, 36, 0.25);
  animation: subtlePulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(58, 42, 36, 0.25), 0 0 0 0 rgba(249, 115, 22, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 4px 16px rgba(58, 42, 36, 0.25), 0 0 0 8px rgba(249, 115, 22, 0);
    transform: scale(1.02);
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}

.btn-primary:hover {
  background-color: var(--deep-cocoa);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(58, 42, 36, 0.35);
  animation-play-state: paused;
}

.btn-primary:focus {
  outline: 2px solid var(--warm-espresso);
  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: #2563EB;
}

.pricing-receipt-popular .pricing-receipt-card {
  box-shadow:
    0 8px 24px rgba(37, 99, 235, 0.2),
    0 0 0 2px rgba(37, 99, 235, 0.35),
    inset 0 0 0 1px rgba(0,0,0,0.05);
}

.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-dog-grooming {
  background-image: url('../dog-grooming.webp');
}

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

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

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

a.usecase-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.usecase-item:focus-visible {
  outline: 2px solid var(--burnt-orange);
  outline-offset: 3px;
}

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

.usecase-item.bg-pizza {
  background-image: url('../pizza.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-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.usecase-item.with-bg .usecase-item-title {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 1.5rem 1rem 0.55rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  /* Gradient only in a short band from the bottom so most of the photo stays untouched */
  background-image: linear-gradient(
    to top,
    rgba(26, 22, 20, 0.78) 0%,
    rgba(26, 22, 20, 0.35) 52%,
    transparent 100%
  );
  background-size: 100% 5.25rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  border-bottom: 3px solid var(--burnt-orange);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.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(249, 115, 22, 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(249, 115, 22, 0.03) 2px,
      rgba(249, 115, 22, 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(249, 115, 22, 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);
}

/* Google Reviews CTA Section - recognizable Google styling */
.google-review-cta-card {
  background: #FFFFFF;
  border: 1px solid #DADCE0;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.08), 0 4px 8px rgba(60, 64, 67, 0.04);
  overflow: hidden;
}

.google-review-cta-inner {
  padding: 2.5rem 2rem;
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.google-g-logo {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.google-g-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.google-wordmark {
  font-size: 1.5rem;
  font-weight: 400;
  color: #5F6368;
  letter-spacing: -0.02em;
  font-family: 'Google Sans', 'Product Sans', 'Roboto', system-ui, sans-serif;
}

.google-reviews-badge {
  font-size: 0.875rem;
  color: #5F6368;
  margin-left: 0.25rem;
}

.google-stars-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.google-stars {
  display: inline-flex;
  gap: 2px;
}

.google-star {
  color: #FBBC05;
  font-size: 1.5rem;
  line-height: 1;
}

.google-stars-label {
  font-size: 0.9375rem;
  color: #5F6368;
}

/* Google-style logo + stars reference for inline use (e.g. in articles when mentioning Google reviews) */
.google-review-ref {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.25rem;
  vertical-align: middle;
}
.google-review-ref .google-g-ref {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
  line-height: 0;
}
.google-review-ref .google-g-ref svg {
  width: 100%;
  height: 100%;
  display: block;
}
.google-review-stars-ref {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.google-review-stars-ref .star {
  color: #FBBC05;
  font-size: 1em;
  line-height: 1;
}

.google-review-cta-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #202124;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.google-review-cta-text {
  font-size: 1rem;
  color: #5F6368;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.google-review-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: #1A73E8;
  color: #FFFFFF;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
}

.google-review-button:hover {
  background: #1765CC;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.2);
}

.google-review-button:focus {
  outline: 2px solid #1A73E8;
  outline-offset: 2px;
}

.google-review-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.google-review-feature-list {
  margin: 0 0 1.5rem 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: #5F6368;
  line-height: 1.7;
}

.google-review-feature-list li {
  margin-bottom: 0.5rem;
}

.google-review-feature-list li:last-child {
  margin-bottom: 0;
}

.google-review-cta-note {
  font-size: 0.8125rem;
  color: #80868B;
  margin: 1rem 0 0 0;
  line-height: 1.5;
}

/* 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;
}

/* Hero phone placeholder (tilt + carousel) */
.hero-phone-perspective {
  perspective: 1200px;
  /* Shadow lives here so .hero-phone-wrapper can use overflow:hidden without clipping it */
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.25));
}

.hero-phone-wrapper {
  --phone-outer-radius: 42px;
  --phone-bezel: 10px;
  --phone-frame-border: 3px;
  --phone-screen-radius: calc(
    var(--phone-outer-radius) - var(--phone-bezel) - var(--phone-frame-border)
  );
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(2deg);
  /* Outer clip + dark fill: white must not paint a full-bleed square layer (see .hero-phone-carousel) */
  border-radius: var(--phone-outer-radius);
  overflow: hidden;
  background: #1a1a1a;
}

.hero-phone-frame {
  position: relative;
  width: 100%;
  border-radius: var(--phone-outer-radius);
  padding: var(--phone-bezel);
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
  border: var(--phone-frame-border) solid #333;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  clip-path: inset(0 round var(--phone-outer-radius));
}

.hero-phone-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--phone-screen-radius);
  overflow: hidden;
  /* Transparent: full-bleed #fff here paints a square layer that leaks past bezel under 3D; white only on screen + dots */
  background: transparent;
  clip-path: inset(0 round var(--phone-screen-radius));
}

.hero-phone-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  /* Top corners only: full rounding here carved dark wedges above the dots; outer curve is .hero-phone-carousel */
  border-radius: var(--phone-screen-radius) var(--phone-screen-radius) 0 0;
  background: #fff;
}

.hero-phone-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px 10px;
  background: #fff;
}

/* Sliding strip for slide effect */
.hero-phone-strip {
  display: flex;
  flex-direction: row;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hero-phone-strip-slide {
  height: 100%;
  min-width: 0;
  display: block;
  object-fit: cover;
  object-position: top center;
  /* Clipped by .hero-phone-screen; avoid separate radius (avoids corner gaps vs parent mask) */
  border-radius: 0;
  /* flex basis set in JS so each slide = 100/n % of strip */
}

.hero-phone-screen-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
}

.hero-phone-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-phone-carousel-dot:hover {
  background: rgba(0, 0, 0, 0.32);
}

.hero-phone-carousel-dot.active {
  background: var(--burnt-orange, #F97316);
  transform: scale(1.2);
}

.hero-phone-carousel.single-slide .hero-phone-carousel-dots {
  display: none;
}

/* 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;
  }

  /* Google Reviews CTA responsive */
  .google-review-cta-inner {
    padding: 1.5rem 1.25rem;
  }
  .google-review-cta-heading {
    font-size: 1.375rem;
  }
  .google-review-button {
    width: 100%;
    justify-content: center;
  }

  /* Hero phone: disable 3D transform on mobile so the phone visual renders reliably */
  .hero-phone-perspective {
    perspective: none;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-phone-wrapper {
    transform: none;
    transform-style: flat;
    width: 100%;
    max-width: min(220px, 77vw);
  }
  .hero-phone-screen {
    /* Fallback height when aspect-ratio is not supported (older mobile) */
    min-height: 380px;
  }
  .hero-phone-strip {
    will-change: auto;
  }
}