/* ============================================
   POCKU LANDING PAGE - CLEAN MODERN STYLE
   Inspired by Typeless aesthetic
   ============================================ */

:root {
  /* Light, clean palette */
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-muted: #f5f5f7;
  --bg-accent-1: #e8f5e9; /* Soft green tint */
  --bg-accent-2: #fff8e1; /* Soft amber tint */
  --bg-accent-3: #e3f2fd; /* Soft blue tint */
  --bg-dark: #1a1a1a;
  
  /* Text colors */
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-muted: #999999;
  
  /* Brand colors - more subtle */
  --green: #22c55e;
  --green-light: #dcfce7;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --red: #ef4444;
  --red-light: #fee2e2;
  
  /* Borders */
  --border-light: #e5e5e5;
  --border-medium: #d4d4d4;
  
  /* Typography */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(5rem, 12vw, 10rem);
  --container-max: 1200px;
  --nav-scroll-offset: 7.25rem;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-scroll-offset);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-white);
  overflow-x: clip;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Remove ambient background for cleaner look */
.ambient-bg {
  display: none;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   NAVIGATION - Pill style like Typeless
   ============================================ */
.nav-main {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 940px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-white);
  border-radius: 100px;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link-current {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}

.nav-demo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.nav-demo-hint {
  font-size: 0.6rem;
  color: var(--text-muted);
  opacity: 0.5;
  white-space: nowrap;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4rem 0.6rem;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.lang-toggle:hover {
  background: var(--bg-muted);
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.lang-current {
  min-width: 1.5rem;
  text-align: center;
}

.lang-icon {
  width: 14px;
  height: 14px;
}

.nav-scrolled {
  /* Already styled - no change needed for pill nav */
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-main {
    width: calc(100% - 1.25rem);
    top: 0.65rem;
  }

  .nav-container {
    padding: 0.4rem 0.7rem;
    gap: 0.5rem;
  }
  
  .nav-brand {
    gap: 0.45rem;
    min-width: 0;
  }

  .nav-logo-img {
    width: 34px;
    height: 34px;
  }
  
  .nav-name {
    font-size: 1.05rem;
  }
  
  .nav-actions {
    gap: 0.35rem;
  }

  .nav-actions .btn-sm {
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }
  
  .nav-demo-hint {
    display: none; /* Hide hint on mobile to save space */
  }
}

/* ============================================
   BUTTONS - Flat, rounded
   ============================================ */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 100px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--bg-dark);
  color: white;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-muted);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--border-light);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
}

/* Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.btn-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--green);
  color: white;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

/* ============================================
   HERO SECTION - Clean, centered
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  background: var(--bg-white);
}

.hero-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
  min-width: 0;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--green-light);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-from-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3em;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.word-morph {
  display: inline-grid;
  vertical-align: baseline;
  color: inherit;
  font: inherit;
  font-weight: inherit;
}

.word-morph-hero {
  color: var(--text-primary);
}

.word-morph-word.is-italic,
.word-morph-sizer.is-italic {
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.word-morph-hero .word-morph-stage,
.word-morph-hero .word-morph-sizer,
.word-morph-hero .word-morph-word {
  height: 1.1em;
  line-height: 1.1em;
}

.word-morph-sizer {
  grid-area: 1 / 1;
  visibility: hidden;
  white-space: nowrap;
  pointer-events: none;
  font: inherit;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-morph-stage {
  grid-area: 1 / 1;
  position: relative;
  display: block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2em;
}

.word-morph-word {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  line-height: 1.2em;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.word-morph-word.is-current {
  transform: translateY(0);
  opacity: 1;
}

.word-morph-word.is-leaving {
  transform: translateY(-120%);
  opacity: 0;
}

.hero-pains {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.hero-pains li {
  font-size: 0.78rem;
  color: var(--text-primary);
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: #fff;
}

.hero-pains li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 0.4rem;
  vertical-align: middle;
}

.hero-prefix {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.hero-highlight {
  display: block;
  color: var(--green);
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.6rem;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-cta-hints {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cta-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--green);
}

/* Button icons */
.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Social Proof */
.social-proof {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.social-proof-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-cta-hints {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .social-proof-logos {
    gap: 1rem;
  }
}

.hero-line {
  display: block;
  color: var(--text-primary);
}

.hero-app-note {
  margin: -0.35rem 0 1.6rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.hero-print {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-pains li.is-active {
  border-color: var(--green);
  background: var(--green-light);
}

/* Occupancy preview (hero proof) */
.occupancy-preview {
  width: 100%;
  max-width: 420px;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.occupancy-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
  min-width: 0;
}

.occupancy-preview-head > span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.afas-chip {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: #fafafa;
  color: var(--text-secondary);
  text-transform: uppercase;
  overflow: hidden;
}

.afas-chip.word-morph .word-morph-stage,
.afas-chip.word-morph .word-morph-sizer,
.afas-chip.word-morph .word-morph-word {
  height: 1em;
  line-height: 1em;
}

.occupancy-preview-days {
  display: grid;
  grid-template-columns: minmax(0, 4.6rem) repeat(5, minmax(0, 1fr));
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.occ-day {
  text-align: center;
  min-width: 0;
}

.occ-day-name {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.occ-day-count {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.occ-bar {
  height: 4px;
  background: #f4f4f5;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.35rem;
}

.occ-bar span {
  display: block;
  height: 100%;
  background: #18181b;
  border-radius: 999px;
}

.occupancy-preview-rows {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.occ-row {
  display: grid;
  grid-template-columns: minmax(0, 4.6rem) repeat(5, minmax(0, 1fr));
  gap: 0.25rem;
  align-items: center;
}

.occ-name {
  font-size: 0.7rem;
  color: var(--text-secondary);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.occ-pill {
  font-size: 0.55rem;
  font-weight: 600;
  text-align: center;
  padding: 0.25rem 0.15rem;
  border-radius: 999px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.occ-office { background: #18181b; color: #fff; }
.occ-home { background: #f4f4f5; color: #52525b; }
.occ-flex { background: #fff; color: #3f3f46; box-shadow: inset 0 0 0 1px #d4d4d8; }
.occ-away { background: transparent; color: #a1a1aa; }

.occ-pill.is-live {
  background: #166534;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.35);
}

.hero-checkin-note {
  margin: 0.75rem 0 0;
  max-width: 22rem;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--text-secondary);
}

.integration-card-featured {
  border-color: #18181b;
}

/* Hero Visual — walk up, scan, done */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  padding-top: 0.1rem;
  width: 100%;
  min-width: 0;
}

.hero-scene {
  position: relative;
  width: 100%;
  background: #ece7dc;
  border: 1px solid #e7e2d6;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(24, 24, 27, 0.08);
}

.hero-scene-steps {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-scene-steps button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 2.1rem;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.hero-scene-steps button::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.hero-scene-steps button:focus-visible {
  outline: 2px solid #166534;
  outline-offset: 2px;
}

.hero-scene-steps button:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.92);
}

.hero-scene-steps button.is-active {
  color: #166534;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-scene-steps button.is-active::before {
  background: var(--green);
  opacity: 1;
}

.hero-stage {
  position: relative;
  aspect-ratio: 1024 / 682;
  height: auto;
}

.hero-desk-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-anchor {
  position: absolute;
  left: 15.14%;
  top: 51.47%;
  width: 15.8%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-anchor::before {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: #d8c3a4;
}

#hero-sticker-3d {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
  pointer-events: none;
}

#hero-sticker-3d .sticker-3d-wrapper {
  width: 100% !important;
  height: 100% !important;
}

.hero-scene[data-phase="scan"] #hero-sticker-3d {
  transform: scale(1.04);
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.22));
}

.hero-scene[data-phase="done"] #hero-sticker-3d {
  filter: drop-shadow(0 8px 12px rgba(22, 101, 52, 0.22));
}

.hero-phone {
  --phone-r-outer: 18.1% / 8.7%;
  --phone-r-inner: 14.17% / 6.19%;
  --phone-screen-top: 2.75%;
  --phone-screen-right: 6.67%;
  --phone-screen-bottom: 2.97%;
  --phone-screen-left: 7.62%;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  height: 200px;
  z-index: 3;
  transform-origin: 50% 50%;
  transition: transform 0.55s var(--ease-out), opacity 0.4s ease;
  pointer-events: none;
}

.hero-phone-cast {
  position: absolute;
  left: 8%;
  right: -6%;
  top: 10%;
  bottom: -16%;
  background: radial-gradient(
    ellipse at 42% 58%,
    rgba(88, 58, 34, 0.34) 0%,
    rgba(88, 58, 34, 0.12) 46%,
    transparent 72%
  );
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero-phone::before,
.hero-phone::after {
  content: none;
}

.hero-scene[data-phase="approach"] .hero-phone {
  opacity: 0.92;
  transform: translate(-18%, -122%) rotate(16deg) scale(0.9);
}

.hero-scene[data-phase="scan"] .hero-phone {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-3deg) scale(1);
}

.hero-scene[data-phase="done"] .hero-phone {
  opacity: 1;
  transform: translate(-40%, -56%) rotate(-4deg) scale(1);
}

.hero-phone-body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: var(--phone-r-outer);
  background: transparent;
  z-index: 1;
  filter:
    drop-shadow(7px 14px 10px rgba(92, 62, 38, 0.26))
    drop-shadow(2px 5px 4px rgba(62, 42, 24, 0.16));
}

.hero-phone-body::before {
  content: '';
  position: absolute;
  top: var(--phone-screen-top);
  right: var(--phone-screen-right);
  bottom: var(--phone-screen-bottom);
  left: var(--phone-screen-left);
  border-radius: var(--phone-r-inner);
  background: #050505;
  z-index: 0;
}

.hero-phone-body::after {
  content: none;
}

.hero-phone-chassis {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  z-index: 8;
  filter: contrast(1.08) saturate(1.12);
}

.hero-phone-island {
  display: none;
}

.hero-phone-island::after {
  content: none;
}

.hero-phone-screen {
  position: absolute;
  top: var(--phone-screen-top);
  right: var(--phone-screen-right);
  bottom: var(--phone-screen-bottom);
  left: var(--phone-screen-left);
  height: auto;
  border-radius: var(--phone-r-inner);
  overflow: hidden;
  background: #050505;
}

.hero-phone-feed {
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-scene[data-phase="scan"] .hero-phone-feed,
.hero-scene[data-phase="done"] .hero-phone-feed {
  opacity: 1;
}

.hero-phone-feed-probe {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  transform-origin: 0 0;
  pointer-events: none;
  visibility: hidden;
}

.hero-phone-feed-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.04) saturate(1.05) sepia(0.08);
}

.hero-phone-feed-sticker {
  position: absolute;
  left: 15.14%;
  top: 51.47%;
  width: 15.8%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.hero-scene[data-phase="scan"] .hero-phone-feed-sticker {
  transform: translate(-50%, -50%) scale(1.04);
}

.hero-phone-feed-sticker::before {
  content: '';
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: #d8c3a4;
}

.hero-phone-feed-sticker .sticker-3d-wrapper {
  position: relative;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
}

.hero-phone-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(255, 244, 228, 0.16), transparent 42%),
    radial-gradient(ellipse at center, transparent 46%, rgba(48, 32, 18, 0.28) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-phone-screen::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 26px;
  height: 3px;
  margin-left: -13px;
  border-radius: 999px;
  background: rgba(255, 244, 228, 0.42);
  z-index: 6;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-scene[data-phase="scan"] .hero-phone-screen::after,
.hero-scene[data-phase="done"] .hero-phone-screen::after {
  opacity: 1;
}

.hero-scene[data-phase="approach"] .hero-phone-screen::before {
  opacity: 0;
}

.hero-phone-glare {
  position: absolute;
  top: var(--phone-screen-top);
  right: var(--phone-screen-right);
  bottom: var(--phone-screen-bottom);
  left: var(--phone-screen-left);
  border-radius: var(--phone-r-inner);
  background:
    linear-gradient(
      128deg,
      rgba(255, 248, 236, 0.42) 0%,
      rgba(255, 255, 255, 0.1) 18%,
      transparent 38%,
      transparent 72%,
      rgba(255, 236, 214, 0.08) 100%
    );
  pointer-events: none;
  z-index: 5;
  mix-blend-mode: soft-light;
}

.hero-phone-glare::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0.11;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-phone-camera,
.hero-phone-claimed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  z-index: 3;
  transition: opacity 0.45s ease, transform 0.45s var(--ease-out);
}

.hero-phone-camera {
  opacity: 0;
  transform: scale(0.96);
}

.hero-phone-claimed {
  opacity: 0;
  transform: translateY(6px);
  color: #ecfdf3;
  padding: 22% 9% 18%;
  text-align: center;
  background: radial-gradient(
    ellipse at 50% 42%,
    rgba(10, 22, 14, 0.08),
    rgba(8, 16, 12, 0.34) 78%
  );
  gap: 0;
}

.hero-scene[data-phase="scan"] .hero-phone-camera {
  opacity: 1;
  transform: none;
}

.hero-scene[data-phase="done"] .hero-phone-claimed {
  opacity: 1;
  transform: none;
}

.hero-scene[data-phase="done"] .hero-phone-feed-photo {
  filter: brightness(0.82) contrast(1.04) saturate(0.96) sepia(0.08);
}

.hero-phone-claimed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  width: auto;
  max-width: 100%;
  padding: 0.34rem 0.42rem 0.32rem;
  border-radius: 0.65rem;
  background: rgba(18, 32, 24, 0.7);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow:
    0 6px 14px rgba(40, 24, 12, 0.22),
    inset 0 1px 0 rgba(255, 244, 228, 0.18);
}

.hero-phone-reticle {
  position: relative;
  width: 86%;
  aspect-ratio: 1;
  height: auto;
}

.hero-phone-reticle span {
  position: absolute;
  width: 18%;
  height: 18%;
  border-color: #4ade80;
  border-style: solid;
}

.hero-phone-reticle span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hero-phone-reticle span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hero-phone-reticle span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hero-phone-reticle span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.hero-phone-scanline {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4ade80, transparent);
  box-shadow: 0 0 12px rgba(74, 222, 128, 0.7);
  opacity: 0;
}

.hero-scene[data-phase="scan"] .hero-phone-scanline {
  animation: hero-scanline 1.1s ease-in-out infinite;
}

@keyframes hero-scanline {
  0%, 100% { top: 10%; opacity: 0.25; }
  50% { top: 82%; opacity: 1; }
}

.hero-phone-check {
  width: 18px;
  height: 18px;
  padding: 3px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  box-shadow: 0 2px 6px rgba(22, 101, 52, 0.4);
}

.hero-phone-claimed p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  max-width: 100%;
}

.hero-phone-claimed p span:first-child {
  font-size: 0.58rem;
}

.hero-phone-claimed p span:last-child {
  font-size: 0.48rem;
  font-weight: 500;
  opacity: 0.86;
}

.occupancy-preview-proof {
  width: 100%;
  max-width: none;
  padding: 1rem 1.1rem;
  opacity: 0.62;
  transform: translateY(6px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), box-shadow 0.7s ease;
}

.hero-visual.is-proven .occupancy-preview-proof {
  opacity: 1;
  transform: none;
  box-shadow: 0 8px 24px rgba(22, 101, 52, 0.08);
}

.puck-showcase {
  position: relative;
}

.puck-3d-hero {
  width: 280px;
  height: 280px;
}

.puck-status {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puck-status-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.puck-status-led-free { background: var(--green); }
.puck-status-led-reserved { background: var(--amber); }
.puck-status-led-occupied { background: var(--red); }

.mini-floorplan {
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
}

.floorplan-label {
  font-size: 0.75rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.desk {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.desk:hover {
  transform: scale(1.1);
}

.desk-free {
  background: var(--green);
}

.desk-reserved {
  background: var(--amber);
}

.desk-occupied {
  background: var(--red);
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.scroll-hint svg {
  width: 20px;
  height: 20px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    gap: 2.5rem;
  }
  
  .hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }

  .hero-from-line {
    justify-content: center;
  }

  .hero-pains {
    justify-content: center;
    width: 100%;
  }
  
  .hero-ctas {
    justify-content: center;
    width: 100%;
  }

  .hero-phone {
    width: 72px;
    height: 144px;
  }

  .hero-scene-steps button {
    font-size: 0.62rem;
    letter-spacing: 0.02em;
    padding: 0.3rem 0.35rem;
    min-height: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-phone,
  #hero-sticker-3d,
  .hero-phone-camera,
  .hero-phone-claimed,
  .occupancy-preview-proof {
    transition: none;
  }

  .hero-scene[data-phase="scan"] .hero-phone-scanline {
    animation: none;
    top: 46%;
    opacity: 0.8;
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
  scroll-margin-top: var(--nav-scroll-offset);
}

#waarom,
#hoe,
#integrations,
#pricing,
#faq,
#bureaus,
#vergoedingen,
#bezetting {
  scroll-margin-top: var(--nav-scroll-offset);
}

.section-more {
  text-align: center;
  margin: 0.75rem 0 0;
}

.section-more a {
  font-weight: 600;
  color: var(--text-primary);
}

.section-eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================================
   PROBLEM / SOLUTION SECTION
   ============================================ */
.section-problem {
  background: var(--bg-light);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.problem-card {
  padding: 2.5rem;
  border-radius: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
}

.problem-bad {
  background: var(--red-light);
  border-color: transparent;
}

.problem-good {
  background: #fff;
  border: 2px solid #18181b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.problem-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.era-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}

.era-badge-old {
  background: #fff;
  color: #71717a;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.era-badge-new {
  background: #18181b;
  color: #fff;
}

.problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-bad .problem-icon {
  background: var(--red);
  color: white;
}

.problem-good .problem-icon {
  background: var(--bg-dark);
  color: white;
}

.problem-icon svg {
  width: 20px;
  height: 20px;
}

.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
}

.problem-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

.pocku-scan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  margin-bottom: 1rem;
  padding: 1.25rem 0.75rem 1.4rem;
  background:
    linear-gradient(180deg, #f4f4f5 0%, #e7e7ea 100%);
  border: 1px solid #e4e4e7;
  border-radius: 16px;
  overflow: hidden;
}

.pocku-scan-hardware {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  z-index: 1;
}

.problem-product-shot-sticker {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.problem-product-shot-puck {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.pocku-scan-phone {
  width: 128px;
  height: 248px;
  background: #18181b;
  border-radius: 26px;
  padding: 8px;
  transform: rotate(-11deg) translate(6px, 10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 2;
  flex-shrink: 0;
}

.pocku-scan-phone-screen {
  height: 100%;
  border-radius: 20px;
  background: #09090b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #fff;
}

.pocku-scan-reticle {
  position: relative;
  width: 82px;
  height: 82px;
}

.pocku-scan-reticle span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: #22c55e;
  border-style: solid;
}

.pocku-scan-reticle span:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
}

.pocku-scan-reticle span:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 2px 2px 0 0;
}

.pocku-scan-reticle span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-width: 0 0 2px 2px;
}

.pocku-scan-reticle span:nth-child(4) {
  bottom: 0;
  right: 0;
  border-width: 0 2px 2px 0;
}

.pocku-scan-line {
  position: absolute;
  left: 10px;
  right: 10px;
  top: 12px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.7);
  animation: pocku-scanline 1.8s ease-in-out infinite;
}

@keyframes pocku-scanline {
  0%, 100% { top: 12px; opacity: 0.35; }
  50% { top: 68px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .pocku-scan-line {
    animation: none;
    top: 40px;
    opacity: 0.8;
  }
}

.pocku-scan-phone-label {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #d4d4d8;
}

.pocku-scan-caption {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-primary);
  font-weight: 500;
}

.outlook-mock {
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.pocku-mock {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4e4e7;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.pocku-mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.pocku-mock-eyebrow {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a1a1aa;
}

.pocku-mock-deskline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.pocku-mock-deskline strong {
  font-size: 1rem;
  font-weight: 600;
  color: #18181b;
}

.pocku-chip {
  border: 1px solid #e4e4e7;
  background: #fff;
  color: #71717a;
  border-radius: 6px;
  padding: 0.1rem 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pocku-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pocku-pill-in {
  background: #18181b;
  color: #fff;
}

.pocku-pill-free {
  background: #f4f4f5;
  color: #52525b;
}

.pocku-mock-range {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: #71717a;
}

.pocku-mock-qr {
  margin-top: 0.85rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pocku-mock-qr-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #18181b;
}

.pocku-mock-qr span:last-child {
  font-size: 0.7rem;
  color: #71717a;
}

.pocku-mock-slot {
  margin-top: 0.85rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid #e4e4e7;
  border-radius: 10px;
  background: #fafafa;
}

.pocku-mock-slot-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-bottom: 0.5rem;
}

.pocku-mock-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.pocku-mock-pills span {
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 550;
  border: 1px solid #d4d4d8;
  background: #fff;
  color: #3f3f46;
}

.pocku-mock-pills span.is-on {
  background: #18181b;
  border-color: #18181b;
  color: #fff;
}

.pocku-mock-ghost {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.7rem 0.8rem;
  border: 1px dashed #d4d4d8;
  border-radius: 10px;
  background: #fff;
}

.pocku-mock-ghost strong {
  display: block;
  font-size: 0.82rem;
  color: #18181b;
}

.pocku-mock-ghost span:not(.pocku-pill) {
  display: block;
  font-size: 0.7rem;
  color: #71717a;
}

.outlook-mock-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid #0078d4;
}

.outlook-ghost-tag {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #fee2e2;
  color: #991b1b;
}

.outlook-event {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  background: #eff6ff;
  border-left: 3px solid #0078d4;
}

.outlook-event.is-ghost {
  background: #fff1f2;
  border-left-color: #e11d48;
  opacity: 0.9;
}

.outlook-event span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-card li {
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.problem-card li:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .problem-card {
    padding: 1.35rem 1.15rem;
  }

  .pocku-scan {
    min-height: 200px;
    padding: 0.85rem 0.5rem 1rem;
    gap: 0.15rem;
  }

  .pocku-scan-hardware {
    transform: scale(0.82);
    transform-origin: center bottom;
    gap: 0.15rem;
  }

  .pocku-scan-phone {
    width: 92px;
    height: 176px;
    transform: rotate(-8deg) translate(2px, 8px);
  }
}

/* ============================================
   TIMELINE / HOW IT WORKS
   ============================================ */
.section-how {
  background: var(--bg-accent-2);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.timeline-time {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 70px;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.timeline-led {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.timeline-led-amber {
  background: var(--amber);
}

.timeline-led-amber-pulse {
  background: var(--amber);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.timeline-led-green {
  background: var(--green);
}

.timeline-connector {
  width: 2px;
  height: 32px;
  background: var(--border-light);
  margin: 0 auto;
  margin-left: calc(2rem + 35px);
}

.how-follow {
  max-width: 960px;
  margin: 3rem auto 0;
  text-align: center;
}

.how-follow h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--text-primary);
}

.how-follow > p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.55;
}

.how-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.how-follow-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.25rem 1.35rem;
}

.how-follow-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  color: var(--text-primary);
}

.how-follow-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .how-follow-grid {
    grid-template-columns: 1fr;
  }
}

/* Testimonial */
.testimonial {
  max-width: 600px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
}

.testimonial blockquote {
  margin: 0 0 1.5rem;
}

.testimonial blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info {
  text-align: left;
}

.testimonial-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testimonial-info span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .timeline-step {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 1.15rem;
    text-align: center;
    align-items: center;
  }

  .timeline-step:hover {
    transform: none;
  }

  .timeline-time {
    min-width: 0;
  }
  
  .timeline-connector {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   HARDWARE SECTION
   ============================================ */
.section-hardware {
  background: var(--bg-white);
}

.dual-promise {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.dual-promise-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
}

.dual-promise-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--green-light);
}

.dual-promise-who {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
}

.dual-promise-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.dual-promise-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.dual-promise-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

.hardware-flow-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hardware-flow-label-setup {
  margin-top: 0.5rem;
}

.hardware-use {
  margin-bottom: 3.25rem;
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto 2.5rem;
}

.hardware-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 1.75rem 1.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.hardware-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.hardware-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--green-light);
}

.hardware-tier {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: var(--bg-white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hardware-tier-pro {
  background: var(--green);
  color: white;
}

.hardware-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  overflow: visible;
}

.hardware-product-shot {
  display: block;
  width: 220px;
  height: 220px;
  max-width: 100%;
  object-fit: contain;
}

.hardware-product-shot-puck {
  width: 240px;
  height: 240px;
}

.hardware-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.hardware-card > p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

.hardware-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.hardware-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hardware-features svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

/* Hardware Setup Steps */
.hardware-setup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.setup-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.setup-number {
  width: 28px;
  height: 28px;
  background: var(--bg-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.setup-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.setup-step p strong {
  color: var(--text-primary);
}

.setup-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
}

@media (max-width: 968px) {
  .hardware-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    max-width: 26rem;
  }
}

@media (max-width: 768px) {
  .dual-promise {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .dual-promise-plus {
    transform: rotate(0deg);
    padding: 0.15rem 0;
    font-size: 1.15rem;
  }

  .hardware-grid {
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
    max-width: 26rem;
  }
  
  .hardware-card {
    padding: 1.5rem 1.25rem;
    width: 100%;
  }

  .hardware-visual {
    height: 200px;
  }
  
  .hardware-setup {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  
  .setup-arrow {
    transform: rotate(90deg);
  }
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */
.section-integrations {
  background: var(--bg-accent-3);
}

.integrations-group-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.integrations-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.integrations-grid-erp {
  grid-template-columns: repeat(5, 1fr);
}

.integrations-grid-hrm {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
}

.integration-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.35rem 1rem 1.15rem;
  text-align: center;
  transition: all 0.3s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.integration-logo {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.7rem;
}

.integration-logo img {
  max-height: 42px;
  max-width: min(140px, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
}

.integration-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.integration-card-api {
  background: var(--green-light);
  border-color: transparent;
}

.integration-card-api .integration-logo svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.integrations-legal {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 42rem;
}

.integration-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.benefit svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

@media (max-width: 968px) {
  .integrations-grid-erp,
  .integrations-grid-hrm {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .integrations-grid-erp,
  .integrations-grid-hrm {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-card {
    padding: 1.1rem 0.7rem 1rem;
    min-width: 0;
  }
  
  .integration-benefits {
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    gap: 0.85rem;
  }
}

/* ============================================
   COMPLIANCE & ALLOWANCE VALIDATION SECTION
   ============================================ */
.section-compliance {
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-white) 100%);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.compliance-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.compliance-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.compliance-card-featured {
  background: var(--bg-dark);
  color: white;
  border: none;
  transform: scale(1.02);
}

.compliance-card-featured:hover {
  transform: scale(1.02) translateY(-6px);
}

.compliance-card-featured h3,
.compliance-card-featured p {
  color: white;
}

.compliance-card-featured .compliance-features li {
  color: rgba(255, 255, 255, 0.85);
}

.compliance-tier {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-muted);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

.compliance-tier-pro {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.compliance-tier-green {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.compliance-icon {
  width: 64px;
  height: 64px;
  margin: 1rem auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  border-radius: 16px;
}

.compliance-icon svg {
  width: 32px;
  height: 32px;
  color: var(--text-primary);
}

.compliance-card-featured .compliance-icon {
  background: rgba(255, 255, 255, 0.1);
}

.compliance-card-featured .compliance-icon svg {
  color: var(--green);
}

.compliance-icon-green {
  background: rgba(16, 185, 129, 0.1);
}

.compliance-icon-green svg {
  color: #10b981 !important;
}

.compliance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.compliance-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.compliance-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.compliance-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.compliance-features li:last-child {
  margin-bottom: 0;
}

.compliance-features svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.compliance-card-featured .compliance-features svg {
  color: var(--green);
}

.compliance-testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.compliance-testimonial blockquote {
  margin: 0 0 1rem;
}

.compliance-testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
}

.compliance-testimonial cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

@media (max-width: 968px) {
  .compliance-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(400px, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .compliance-card {
    padding: 1.5rem 1.25rem;
  }
  
  .compliance-card-featured {
    transform: none;
  }
  
  .compliance-card-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 640px) {
  .compliance-testimonial {
    padding: 1.5rem;
  }
  
  .compliance-testimonial p {
    font-size: 1rem;
  }
}

/* ============================================
   PRICING SECTION
   ============================================ */
.section-pricing {
  background: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card-featured {
  border-color: var(--green);
  border-width: 2px;
  background: var(--bg-white);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-dark);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.pricing-badge-free {
  background: var(--green);
}

.pricing-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-description {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  min-height: 2.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: min(400px, 100%);
    width: 100%;
  }
  
  .pricing-card {
    padding: 1.75rem 1.35rem;
  }

  .pricing-card-featured {
    order: -1;
  }

  .pricing-card .btn-primary,
  .pricing-card .btn-secondary {
    white-space: normal;
  }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-cta {
  background: var(--bg-muted);
  padding: 6rem 0;
}

.cta-content {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--text-primary);
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
}

.btn-xl svg {
  width: 18px;
  height: 18px;
}

.cta-subtext {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-subtext a {
  color: var(--green);
  text-decoration: underline;
}

.cta-subtext a:hover {
  color: var(--text-primary);
}

.section-contact-band {
  padding: 0 0 5rem;
  background: var(--bg-muted);
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-band:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.1);
}

.contact-band-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.contact-band .section-eyebrow {
  margin: 0;
}

.contact-band-email {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  word-break: break-word;
  margin: 0;
}

.contact-band:hover .contact-band-email {
  color: var(--green);
}

.contact-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-weight: 600;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .contact-band {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1.2rem;
  }

  .contact-band-copy {
    align-items: center;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.section-faq {
  background: var(--bg-light);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-item[open] {
  border-color: var(--green);
}

.faq-item-puck[open] {
  overflow: visible;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-puck-body {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0 1.5rem 1.25rem;
}

.faq-puck-show {
  flex: 0 0 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.faq-product-shot {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.faq-puck-caption {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.faq-puck-body p {
  flex: 1;
  padding: 0;
  min-width: 0;
}

@media (max-width: 640px) {
  .faq-puck-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.faq-item p strong {
  color: var(--text-primary);
}

/* Visually hidden for screen readers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.9rem;
}

.footer-email {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-email:hover {
  color: var(--green);
}

.footer-links h5 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1.25rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    justify-content: center;
  }
}

/* ============================================
   DEMO OVERLAY
   ============================================ */
.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: rgba(24, 24, 27, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.contact-overlay.hidden {
  display: none;
}

.contact-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.contact-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
}

.contact-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.contact-lead {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin: 0 0 1.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-form input {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-family: inherit;
}

.contact-form input:focus {
  outline: none;
  border-color: #18181b;
}

.contact-plan-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-error {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: var(--red-light);
  color: #991b1b;
  font-size: 0.85rem;
  line-height: 1.45;
}

.contact-error.hidden {
  display: none;
}

.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.contact-success {
  text-align: left;
}

.contact-success p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.contact-success.hidden,
.contact-form.hidden {
  display: none;
}

.demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-overlay.hidden {
  display: none;
}

.demo-loader {
  text-align: center;
  max-width: 280px;
}

.demo-puck-preview {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  position: relative;
}

.demo-puck-ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid var(--green);
  animation: demo-spin 1.5s linear infinite;
}

@keyframes demo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.demo-progress {
  width: 100%;
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.demo-progress-bar {
  height: 100%;
  background: var(--green);
  transition: width 0.1s linear;
}

.demo-message {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
}

/* ============================================
   REVEAL ANIMATIONS - Smooth fade-up
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.pricing-card.reveal:nth-child(1) { transition-delay: 0s; }
.pricing-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.problem-card.reveal:nth-child(1) { transition-delay: 0s; }
.problem-card.reveal:nth-child(2) { transition-delay: 0.15s; }

.hardware-card.reveal:nth-child(1) { transition-delay: 0s; }
.hardware-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.hardware-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.timeline-step.reveal:nth-child(1) { transition-delay: 0s; }
.timeline-step.reveal:nth-child(3) { transition-delay: 0.1s; }
.timeline-step.reveal:nth-child(5) { transition-delay: 0.2s; }

.integration-card.reveal:nth-child(1) { transition-delay: 0s; }
.integration-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.integration-card.reveal:nth-child(3) { transition-delay: 0.1s; }
.integration-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.integration-card.reveal:nth-child(5) { transition-delay: 0.2s; }

/* ============================================
   3D PUCK STYLES
   ============================================ */
.puck-3d-wrapper {
  cursor: grab;
  user-select: none;
}

.puck-3d-wrapper:active {
  cursor: grabbing;
}

.puck-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.puck-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.puck-bottom,
.puck-top {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
}

.puck-cap {
  background: #1a1a1a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.puck-led-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border-width: 14px;
  border-style: solid;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
  filter: blur(6px);
  opacity: 0.9;
}

.puck-led-ring-inner {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #1a1a1a;
}

.puck-top-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-shadow: inset 0 2px 15px rgba(255, 255, 255, 0.08);
  border: 1px solid #3a3a3a;
}

.puck-qr-container {
  width: 65%;
  height: 65%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.puck-c-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform: rotate(-180deg);
}

.puck-qr-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

.puck-qr-code {
  position: absolute;
  inset: 0;
  z-index: 10;
  mix-blend-mode: screen;
  opacity: 1;
}

.branded-qr {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  z-index: 10;
  pointer-events: none;
}

.puck-logo {
  width: 52%;
  height: 52%;
  object-fit: contain;
  position: relative;
  z-index: 16;
  opacity: 1;
  background: #2a2a2a;
  border-radius: 50%;
  padding: 6%;
  box-sizing: border-box;
  transform: scale(1.28);
}

/* Sticker 3D */
.sticker-3d-wrapper {
  cursor: grab;
  user-select: none;
}

.sticker-3d-wrapper:active {
  cursor: grabbing;
}

.sticker-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.sticker-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.sticker-bottom,
.sticker-top {
  background: #fff;
  border: 1px solid #e5e5e5;
}

.sticker-cap {
  background: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.sticker-top-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e5e5;
}

.sticker-qr-container {
  width: 65%;
  height: 65%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.sticker-c-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  transform: rotate(-180deg);
}

.sticker-qr-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.06);
}

.sticker-qr-code {
  position: absolute;
  inset: 0;
  z-index: 10;
  opacity: 1;
}

.sticker-logo {
  width: 32%;
  height: 32%;
  object-fit: contain;
  position: relative;
  z-index: 16;
  opacity: 0.95;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  transform: scale(1.15);
}

/* Tap 3D (NFC disc) */
.tap-3d-wrapper {
  cursor: grab;
  user-select: none;
}

.tap-3d-wrapper:active {
  cursor: grabbing;
}

.tap-3d-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.tap-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to bottom, #2a2a2e, #1c1c1e);
  border: 1px solid #111;
}

.tap-cap {
  background: #1c1c1e;
  border-color: #111;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.tap-top-face {
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #111;
}

.tap-nfc-waves {
  position: absolute;
  inset: -18%;
  width: 136%;
  height: 136%;
  pointer-events: none;
  opacity: 0.5;
}

.tap-qr-container {
  width: 78%;
  height: 78%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.tap-c-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
  transform: rotate(-180deg);
}

.tap-qr-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #1c1c1e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.06);
}

.tap-qr-code {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.tap-logo {
  width: 32%;
  height: 32%;
  object-fit: contain;
  position: relative;
  z-index: 16;
  transform: scale(1.15);
}

/* ============================================
   NEW SECTIONS STYLES FOR POKKU LANDING PAGE
   ============================================ */

/* HR ROI Section */
.section-hr-roi {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(to bottom, var(--bg-white), var(--bg-accent-1));
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .roi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.roi-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.roi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.roi-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.roi-icon svg {
  width: 22px;
  height: 22px;
}

.roi-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.roi-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  flex-grow: 1;
}

.roi-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 2px solid var(--border-light);
}

.roi-metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.roi-metric-value.word-morph .word-morph-stage,
.roi-metric-value.word-morph .word-morph-sizer,
.roi-metric-value.word-morph .word-morph-word {
  height: 1.2em;
  line-height: 1.2em;
}

.roi-metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.roi-testimonial {
  margin-top: 4rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.roi-testimonial blockquote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.roi-testimonial .testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.roi-testimonial .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.roi-testimonial .testimonial-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.roi-testimonial .testimonial-info strong {
  font-size: 1rem;
  color: var(--text-primary);
  display: block;
}

.roi-testimonial .testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* IT-Friendly Section */
.section-it-friendly {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: linear-gradient(to bottom, var(--bg-accent-3), var(--bg-white));
}

.it-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.it-card {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-light);
  transition: border-color 0.2s, transform 0.2s;
}

.it-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.it-badge {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.it-badge svg {
  width: 16px;
  height: 16px;
}

.it-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.it-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.9rem;
}

.it-architecture {
  margin-top: 4rem;
  text-align: center;
}

.it-architecture h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.architecture-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.arch-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 120px;
}

.arch-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  border-radius: 10px;
  background: var(--bg-muted);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.arch-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  font-weight: 600;
}

.arch-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.architecture-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Comparison Table */
.section-comparison {
  padding: clamp(4rem, 8vw, 8rem) 0;
  background: var(--bg-white);
}

.comparison-table {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: var(--bg-dark);
  color: white;
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-winner {
  background: var(--green-light) !important;
  color: var(--text-primary);
  font-weight: 600;
}

/* Nav Tagline */
.nav-tagline {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 0.5rem;
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .roi-grid,
  .it-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto;
  }

  .roi-card,
  .it-card {
    padding: 1.35rem 1.2rem;
    width: 100%;
  }

  .architecture-diagram {
    flex-direction: column;
    align-items: center;
  }

  .arch-arrow {
    transform: rotate(90deg);
  }

  .arch-item {
    width: 100%;
    max-width: 16rem;
  }

  .comparison-table {
    font-size: 0.875rem;
    margin-inline: 0;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.65rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
body.page-contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.page-contact .footer {
  margin-top: auto;
}

.contact-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10rem 1.5rem 5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--bg-accent-1) 0%, transparent 70%),
    var(--bg-white);
}

.contact-hero-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero .section-eyebrow {
  margin-bottom: 1rem;
}

.contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.contact-page-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 34rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.contact-email-card {
  display: block;
  text-decoration: none;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.25rem) 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto 1.75rem;
}

.contact-email-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.12);
}

.contact-email {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--text-primary);
  word-break: break-word;
}

.contact-email-card:hover .contact-email {
  color: var(--green);
}

.contact-email-hint {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-response {
  margin: 0 0 3.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-reasons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.contact-reason {
  display: block;
  text-decoration: none;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-reason:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.contact-reason h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--text-primary);
}

.contact-reason p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 8.5rem 1.15rem 3.5rem;
  }

  .contact-reasons {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-email-card {
    border-radius: 20px;
    padding: 1.35rem 1.1rem;
    width: 100%;
  }

  .contact-reason {
    padding: 1.2rem 1.15rem;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
    margin-inline: auto;
  }

  .contact-actions .btn-primary,
  .contact-actions .btn-secondary {
    width: 100%;
    white-space: normal;
  }
}

/* ============================================
   MOBILE LAYOUT PASS
   Keep cards inside the viewport and aligned.
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 3.75rem;
    --nav-scroll-offset: 5.75rem;
  }

  .container {
    padding: 0 1.15rem;
  }

  .hero {
    padding-top: 6.25rem;
    min-height: 0;
  }

  .hero-container {
    padding: 1.25rem 1.15rem 2rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 22rem;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .cta-buttons .btn-xl {
    width: 100%;
    white-space: normal;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-pains {
    justify-content: center;
    width: 100%;
    max-width: 22rem;
  }

  .hero-pains li {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: left;
  }

  .occupancy-preview {
    padding: 1.05rem 0.9rem;
  }

  .occupancy-preview-days,
  .occ-row {
    grid-template-columns: minmax(0, 5rem) repeat(5, minmax(0, 1fr));
    gap: 0.18rem;
  }

  .occ-name {
    font-size: 0.62rem;
  }

  .occ-pill {
    font-size: 0.48rem;
    padding: 0.2rem 0.05rem;
    letter-spacing: -0.02em;
  }

  .occ-day-count {
    font-size: 1.05rem;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.15rem);
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .roi-card,
  .problem-card,
  .hardware-card,
  .how-follow-card,
  .pricing-card,
  .compliance-card,
  .integration-card,
  .faq-item,
  .timeline-step,
  .testimonial,
  .contact-band,
  .contact-card {
    max-width: 100%;
    min-width: 0;
  }

  .timeline {
    max-width: 100%;
  }

  .testimonial {
    padding: 1.35rem 1.15rem;
  }

  .roi-testimonial {
    padding: 1.35rem 1.15rem;
  }

  .faq-item summary,
  .faq-item p,
  .faq-puck-body {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .btn-xl {
    padding: 1rem 1.35rem;
    font-size: 1rem;
    white-space: normal;
  }

  .cta-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-main {
    width: calc(100% - 1rem);
    top: 0.5rem;
  }

  .nav-name {
    font-size: 0.98rem;
  }

  .occupancy-preview-days,
  .occ-row {
    grid-template-columns: minmax(0, 4.6rem) repeat(5, minmax(0, 1fr));
  }

  .pocku-scan {
    flex-direction: column;
    min-height: 0;
    padding: 0.85rem 0.5rem 1rem;
  }

  .pocku-scan-hardware {
    transform: scale(0.9);
    transform-origin: center center;
  }

  .pocku-scan-phone {
    transform: none;
    width: 86px;
    height: 164px;
  }

  .hardware-grid,
  .roi-grid,
  .it-grid,
  .pricing-grid,
  .compliance-grid {
    max-width: 100%;
  }
}

/* ============================================
   CONTENT PAGES (check-in zonder app, ghost bookings)
   ============================================ */
.content-page {
  padding: calc(var(--nav-scroll-offset) + 3rem) 0 4rem;
}

.content-header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.content-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0.4rem 0 1rem;
}

.content-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

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

.content-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 2.5rem 0 0.85rem;
}

.content-body p,
.content-body li {
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-body a {
  color: var(--text-primary);
  font-weight: 600;
}

.content-body ul {
  padding-left: 1.2rem;
}

.content-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1rem;
}

.content-footer {
  max-width: 720px;
  margin: 3rem auto 0;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .content-ctas {
    flex-direction: column;
  }

  .content-ctas .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

