/* PrintKey landing — tokens aligned with app (Slate / hotel operations) */
:root {
  --bg-base: #d4dbe5;
  --bg-elevated: #e4eaf1;
  --bg-surface: #eef2f7;
  --bg-card: #f7f9fc;

  --accent: #c99a3c;
  --accent-hover: #b88d35;
  --accent-muted: rgba(201, 154, 60, 0.14);
  --accent-border: rgba(184, 141, 53, 0.35);

  --text-primary: #1a2634;
  --text-secondary: #3f5266;
  --text-muted: #5c6f82;

  --border: rgba(26, 38, 52, 0.1);
  --shadow-sm: 0 2px 12px rgba(26, 38, 52, 0.06);
  --shadow-md: 0 12px 40px rgba(26, 38, 52, 0.1);

  --radius: 10px;
  --radius-lg: 14px;
  --max: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-base);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(201, 154, 60, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(72, 98, 128, 0.08), transparent);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-hover);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(228, 234, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  color: inherit;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 15px;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

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

.nav-link--staff {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.nav-link--staff:hover {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: rgba(26, 38, 52, 0.16);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a2634;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(184, 141, 53, 0.25);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-secondary);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card);
  color: var(--text-primary);
  text-decoration: none;
}

/* Layout */
section {
  padding: 72px 24px;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  margin: 0 0 12px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0;
  line-height: 1.65;
}

/* Hero */
.hero {
  padding: 56px 24px 80px;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-inner--centered {
  grid-template-columns: 1fr;
  max-width: 720px;
  text-align: left;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-pills li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 16px;
}

.hero-eyebrow strong {
  color: var(--accent-hover);
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 20px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

.hero-visual {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.mock-app {
  background: #121820;
  color: #e8ecf1;
  font-size: 12px;
  min-height: 320px;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: #181f2a;
}

.mock-brand {
  font-weight: 600;
  font-size: 13px;
  padding-left: 10px;
  border-left: 2px solid #d4a853;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
}

.mock-panel {
  background: #0f141c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px;
  min-height: 120px;
}

.mock-panel-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7a8c;
  margin-bottom: 8px;
}

.mock-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 6px;
}

.mock-line.short {
  width: 60%;
}

.mock-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  background: #d4a853;
  color: #0b0f14;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
}

/* Problem */
.problem {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

.problem-grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.problem-card h3 {
  margin: 0 0 12px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.problem-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Interactive product demo */
.product-demo-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pk-demo {
  margin-top: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.pk-demo-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pk-demo-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pk-demo-progress-step {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-surface);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pk-demo-progress-step.is-active {
  color: var(--accent-hover);
  border-color: var(--accent-border);
  background: var(--accent-muted);
}

.pk-demo-progress-step.is-done {
  color: var(--text-secondary);
  border-color: var(--border);
}

.pk-demo-toolbar-actions {
  display: flex;
  gap: 8px;
}

.pk-demo-status {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0 0 14px;
  min-height: 1.25em;
}

.pk-demo-frame {
  position: relative;
  background: #0b0f14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 13px;
}

.pk-demo-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: #121820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pk-demo-brand-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #e8ecf1;
  padding-left: 12px;
  border-left: 3px solid #d4a853;
}

.pk-demo-brand-tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7a8c;
  padding-left: 15px;
  margin-top: 2px;
}

.pk-demo-hotel {
  font-size: 0.75rem;
  color: #9aa8b8;
}

.pk-demo-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 16px;
}

.pk-demo-label-field {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa8b8;
  margin-bottom: 8px;
}

.pk-demo-paste {
  min-height: 200px;
  max-height: 220px;
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #0f141c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #e8ecf1;
  font-family: "SF Mono", "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.pk-demo-paste.is-structured {
  font-size: 9.5px;
  line-height: 1.65;
}

.pk-demo-paste-line {
  display: block;
  transition: opacity 0.55s ease, color 0.55s ease;
}

.pk-demo-paste.is-filtering .pk-demo-paste-line--noise {
  opacity: 0.28;
  color: #8a9aab;
  text-decoration: line-through;
  text-decoration-color: rgba(196, 92, 92, 0.55);
}

.pk-demo-paste.is-filtering .pk-demo-paste-line--guest {
  color: #d4a853;
  font-weight: 500;
}

.pk-demo-paste.is-extracted {
  border-color: rgba(212, 168, 83, 0.35);
}

.pk-demo-paste.is-extracted .pk-demo-paste-line--noise {
  display: none;
}

.pk-demo-extract-chip {
  margin: -4px 0 10px;
  padding: 6px 10px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #d4a853;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.25);
  border-radius: 6px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.pk-demo-extract-chip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pk-demo-guests {
  min-height: 140px;
  margin-bottom: 12px;
  padding: 8px;
  background: #181f2a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.pk-demo-row {
  display: grid;
  grid-template-columns: 52px 1fr 72px;
  gap: 6px;
  align-items: center;
  padding: 6px 8px;
  margin-bottom: 6px;
  background: #0f141c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  animation: pk-demo-row-in 0.35s ease backwards;
}

.pk-demo-row:nth-child(1) { animation-delay: 0.05s; }
.pk-demo-row:nth-child(2) { animation-delay: 0.12s; }
.pk-demo-row:nth-child(3) { animation-delay: 0.19s; }
.pk-demo-row:nth-child(4) { animation-delay: 0.26s; }
.pk-demo-row:nth-child(5) { animation-delay: 0.33s; }

@keyframes pk-demo-row-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pk-demo-room,
.pk-demo-name {
  padding: 5px 8px;
  font-size: 12px;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: #181f2a;
  color: #e8ecf1;
}

.pk-demo-badge {
  font-size: 8px;
  font-weight: 600;
  text-align: center;
  color: transparent;
}

.pk-demo-badge.is-insp {
  color: #6b7a8c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 2px 3px;
}

.pk-demo-status-text {
  font-size: 0.625rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.pk-demo-status-text.is-inspected {
  color: #8fa8c4;
}

.pk-demo-status-text.is-dirty {
  color: #c47c7c;
}

.pk-demo-badge.is-dirty {
  color: #c47c7c;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(196, 92, 92, 0.35);
  border-radius: 3px;
  padding: 2px 2px;
}

.pk-demo-row.is-excluded {
  opacity: 0.55;
}

.pk-demo-row.is-excluded .pk-demo-name {
  text-decoration: line-through;
  text-decoration-color: rgba(196, 92, 92, 0.5);
}

.pk-demo-column [data-demo-generate] {
  width: 100%;
  margin-top: 4px;
}

.pk-demo-btn.is-success {
  background: #2d6a4f;
  border-color: #2d6a4f;
}

/* Wizard overlay */
.pk-demo-wizard {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 12, 0.72);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 5;
  animation: pk-demo-fade-in 0.35s ease;
}

.pk-demo-wizard-modal {
  width: 100%;
  max-width: 300px;
  background: #181f2a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.pk-demo-wizard-title {
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e8ecf1;
}

.pk-demo-wizard-field {
  margin: 0 0 14px;
  padding: 0;
  border: none;
}

.pk-demo-wizard-field legend {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa8b8;
  margin-bottom: 8px;
}

.pk-demo-wizard-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #e8ecf1;
  margin-bottom: 6px;
  cursor: default;
}

.pk-demo-wizard-check--muted {
  color: #6b7a8c;
}

.pk-demo-wizard-hint {
  margin: 4px 0 0;
  font-size: 0.75rem;
  color: #6b7a8c;
  line-height: 1.45;
}

.pk-demo-wizard-breakfast {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  margin-bottom: 16px;
  background: #0f141c;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 0.75rem;
  color: #9aa8b8;
}

.pk-demo-breakfast-input {
  width: 100%;
  padding: 7px 10px;
  font-size: 0.8125rem;
  font-family: inherit;
  color: #e8ecf1;
  background: #181f2a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.pk-demo-wizard-btns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.pk-demo-wizard-next,
.pk-demo-wizard-generate {
  width: 100%;
}

.pk-demo-wizard-go {
  width: 100%;
}

.pk-demo-btn {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.pk-demo-btn--primary {
  background: #d4a853;
  color: #0b0f14;
}

.pk-demo-btn--primary:hover:not(:disabled) {
  background: #e4bc6a;
}

.pk-demo-btn--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

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

.pk-demo-btn--ghost:hover {
  background: var(--bg-surface);
  color: var(--text-primary);
}

.pk-demo-pulse {
  animation: pk-demo-pulse 1.4s ease infinite;
}

@keyframes pk-demo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(212, 168, 83, 0); }
}

.pk-demo-result {
  background: #121820;
  border: 1px solid rgba(212, 168, 83, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  animation: pk-demo-fade-in 0.5s ease;
}

.pk-demo-ready-banner {
  padding: 14px 18px;
  background: rgba(61, 154, 106, 0.12);
  border-bottom: 1px solid rgba(61, 154, 106, 0.25);
  animation: pk-demo-fade-in 0.4s ease;
}

.pk-demo-ready-banner.hidden {
  display: none;
}

.pk-demo-ready-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pk-demo-ready-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(61, 154, 106, 0.2);
  color: #3d9a6a;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pk-demo-ready-title {
  margin: 0 0 2px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #e8ecf1;
}

.pk-demo-ready-sub {
  margin: 0;
  font-size: 0.75rem;
  color: #9aa8b8;
}

.pk-demo-preview-wrap {
  padding: 0;
}

.pk-demo-preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9aa8b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pk-demo-preview-meta {
  color: #d4a853;
}

.pk-demo-filter-note {
  margin: 0;
  padding: 10px 16px;
  font-size: 0.75rem;
  color: #9aa8b8;
  background: rgba(196, 92, 92, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pk-demo-filter-note strong {
  color: #e8ecf1;
  font-weight: 500;
}

.pk-demo-doc-scroll {
  max-height: 420px;
  overflow-y: auto;
  padding: 20px 16px 24px;
  background: #525f6e;
  scroll-behavior: smooth;
}

.pk-demo-doc-scroll::-webkit-scrollbar {
  width: 8px;
}

.pk-demo-doc-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.pk-demo-doc-viewer {
  max-width: 320px;
  margin: 0 auto;
}

.pk-demo-doc-ruler {
  margin: 0 0 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.pk-demo-doc {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 8px;
}

.pk-demo-a4-page {
  position: relative;
  width: 100%;
  aspect-ratio: 210 / 297;
  background: #fff;
  border-radius: 1px;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
  animation: pk-demo-page-in 0.85s ease backwards;
}

.pk-demo-a4-margin {
  position: absolute;
  inset: 5% 6%;
  border: 1px dashed rgba(26, 38, 52, 0.06);
  pointer-events: none;
}

.pk-demo-label-block {
  position: absolute;
  left: 0;
  right: 0;
  top: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  color: #1a2634;
}

.pk-demo-page-num {
  position: absolute;
  bottom: 4%;
  right: 6%;
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(26, 38, 52, 0.35);
  text-transform: uppercase;
}

.pk-demo-label-room {
  font-size: clamp(1.125rem, 5.5vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.55em;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pk-demo-label-room--omitted {
  min-height: 1.5em;
  margin-bottom: 0.4em;
}

.pk-demo-room-omit-tag {
  display: inline-block;
  font-size: clamp(0.5625rem, 2.4vw, 0.6875rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b85c5c;
  padding: 4px 8px;
  border: 1px dashed rgba(184, 92, 92, 0.45);
  border-radius: 4px;
  background: rgba(184, 92, 92, 0.06);
}

.pk-demo-a4-page--no-room {
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 6px 20px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(184, 92, 92, 0.12);
}

.pk-demo-label-name {
  font-size: clamp(0.8125rem, 3.8vw, 1rem);
  font-weight: 500;
  margin-bottom: 0.85em;
  line-height: 1.25;
}

.pk-demo-label-breakfast {
  font-size: clamp(0.625rem, 2.8vw, 0.75rem);
  color: #5c6f82;
  letter-spacing: 0.01em;
}

@keyframes pk-demo-page-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pk-demo-complete-cta {
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-border);
  background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg-elevated) 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-md);
  animation: pk-demo-fade-in 0.5s ease;
}

.pk-demo-cta-copy h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pk-demo-cta-copy p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.btn-cta-large {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

@keyframes pk-demo-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Outcomes */
.outcomes {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.outcome-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.outcome-card h3 {
  margin: 0 0 12px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.outcome-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.outcomes-scenario {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.outcomes-scenario-heading {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.outcomes-scenario-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.outcomes-scenario-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.outcomes-time-list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.outcomes-time-list li + li {
  margin-top: 6px;
}

.outcomes-scenario-note {
  margin: 16px 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.outcomes-scenario-col--before .outcomes-scenario-label {
  color: var(--text-muted);
}

.outcomes-scenario-col--after .outcomes-scenario-label {
  color: var(--accent-hover);
}

.outcomes-scenario-col--after {
  padding-left: 24px;
  border-left: 2px solid var(--accent-border);
}

/* Social proof */
.social-proof {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.testimonial-quote {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
}

.testimonial-quote::before {
  content: "\201C";
  color: var(--accent-hover);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 2px;
}

.testimonial-cite {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.testimonial-cite strong {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Steps */
.steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-muted);
  color: var(--accent-hover);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 6px;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
}

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

/* Screenshots */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.screenshot-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.screenshot-card figcaption {
  padding: 14px 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  background: #121820;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7a8c;
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

/* Benefits */
.benefits {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.benefit {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
}

.benefit p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.benefit--highlight {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(201, 154, 60, 0.06) 100%);
}

.benefits-aside {
  margin: 32px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.benefits-aside a {
  font-weight: 500;
  margin-left: 4px;
}

/* Trust */
.trust-hotels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.trust-hotel {
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-hotel strong {
  color: var(--text-primary);
}

/* Guest data trust */
.guest-data-trust {
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.trust-facts {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.trust-facts--compact {
  grid-template-columns: repeat(3, 1fr);
}

.trust-facts--compact .trust-fact:nth-child(5) {
  grid-column: auto;
}

.trust-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.trust-fact:nth-child(5) {
  grid-column: 1 / -1;
}

.trust-fact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent-muted);
  color: var(--accent-hover);
}

.trust-fact strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.trust-fact p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.trust-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.trust-detail h3 {
  margin: 0 0 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-detail p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.trust-footer {
  margin-top: 28px;
  text-align: center;
}

.trust-full-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent-hover);
  text-decoration: none;
  padding: 10px 18px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  background: var(--accent-muted);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.trust-full-link:hover {
  background: rgba(201, 154, 60, 0.22);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(184, 141, 53, 0.15);
}

/* Pricing */
.pricing {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
  align-items: start;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  border-color: var(--accent-border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(201, 154, 60, 0.06) 100%);
}

.pricing-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a2634;
  background: var(--accent);
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name {
  margin: 0 0 4px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-tag {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-hover);
  letter-spacing: 0.02em;
}

.pricing-desc {
  margin: 0 0 16px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-price {
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

.pricing-amount--quote {
  font-size: 1.25rem;
}

.pricing-amount--limited {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-period {
  display: block;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-subtitle {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-muted);
  border: 1.5px solid var(--accent-border);
}

.pricing-card--featured .pricing-features li::before {
  background: var(--accent);
  border-color: var(--accent-hover);
}

.pricing-expand {
  margin-bottom: 20px;
  border-top: 1px solid var(--border);
}

.pricing-card--featured .pricing-expand {
  border-top-color: var(--accent-border);
}

.pricing-expand-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.18s ease;
}

.pricing-expand-trigger::-webkit-details-marker {
  display: none;
}

.pricing-expand-trigger::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}

.pricing-expand[open] .pricing-expand-trigger {
  color: var(--text-primary);
}

.pricing-expand[open] .pricing-expand-trigger::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.pricing-expand-trigger:hover {
  color: var(--text-primary);
}

.pricing-expand-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.pricing-expand[open] .pricing-expand-body {
  grid-template-rows: 1fr;
}

.pricing-expand-inner {
  overflow: hidden;
}

.pricing-expand-lead {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-expand-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-expand-list {
  margin: 0 0 12px;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-expand-list li {
  margin-bottom: 4px;
}

.pricing-expand-list li:last-child {
  margin-bottom: 0;
}

.pricing-expand-note {
  margin: 0 0 4px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  font-style: italic;
}

.pricing-expand-note--highlight {
  font-style: normal;
  color: var(--text-secondary);
  background: var(--accent-muted);
  padding: 10px 12px;
  border: 1px solid var(--accent-border);
  border-radius: 6px;
  border-top: 1px solid var(--accent-border);
}

.pricing-hardware {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.pricing-hardware-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-hardware p {
  margin: 0 0 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-hardware p:last-child {
  margin-bottom: 0;
}

.pricing-cta {
  width: 100%;
}

.pricing-renewal {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pricing-renewal-title {
  margin: 0 0 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-renewal-price {
  margin: 0 0 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-renewal p {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-renewal p:last-child {
  margin-bottom: 0;
}

.pricing-vat-note {
  margin: 16px 0 32px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.demo-trust-note {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.demo-trust-note p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.demo-trust-note a {
  font-weight: 500;
  white-space: nowrap;
}

/* Privacy page */
.privacy-page {
  padding: 72px 24px 88px;
}

.privacy-content {
  margin-top: 40px;
  max-width: 720px;
}

.privacy-content section {
  padding: 0;
  margin-bottom: 36px;
}

.privacy-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--text-primary);
}

.privacy-content p {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.privacy-content ol,
.privacy-content ul {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.privacy-content li {
  margin-bottom: 6px;
}

.privacy-summary {
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.privacy-table th,
.privacy-table td {
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.privacy-table th {
  font-weight: 500;
  color: var(--text-primary);
  width: 55%;
  padding-right: 16px;
}

.privacy-table td {
  color: var(--text-secondary);
  font-weight: 500;
}

.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-back {
  margin-top: 48px;
  font-size: 0.9375rem;
}

/* Demo CTA */
.demo {
  padding-bottom: 88px;
}

.demo-box {
  margin-top: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  box-shadow: var(--shadow-md);
}

.demo-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.demo-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c6f82' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.demo-form select.is-invalid,
.demo-form input.is-invalid {
  border-color: #c45c5c;
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.12);
}

.demo-form-error {
  margin: -10px 0 16px;
  font-size: 0.8125rem;
  color: #b85c5c;
  line-height: 1.4;
}

.demo-form-error.hidden {
  display: none;
}

.demo-form input:focus,
.demo-form textarea:focus,
.demo-form select:focus {
  outline: none;
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.demo-form textarea {
  min-height: 88px;
  resize: vertical;
}

.demo-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 12px 0 0;
}

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

.demo-form-success {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.demo-form-success.hidden {
  display: none;
}

.demo-form-success-title {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.demo-form-success p {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.demo-form-success p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq {
  background: var(--bg-surface);
}

.faq-list {
  margin-top: 40px;
  max-width: 720px;
}

.faq-group-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 32px 0 12px;
  line-height: 1.4;
}

h3.faq-group-label {
  font-size: 0.6875rem;
  font-weight: 600;
}

.faq-group-label:first-child {
  margin-top: 0;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(26, 38, 52, 0.16);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.18s ease;
}

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

.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.faq-question:hover {
  color: var(--accent-hover);
}

.faq-answer {
  padding: 0 18px 18px;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  margin: 14px 0 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-answer p:first-child {
  margin-top: 16px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 12px 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer li:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  font-weight: 500;
}

.faq-footer-note {
  margin: 32px 0 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.faq-footer-note a {
  font-weight: 500;
}

/* Privacy */
.privacy-block {
  margin-top: 48px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.privacy-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.privacy-block p {
  margin: 0 0 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  padding: 32px 24px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .hero-inner--centered,
  .problem-grid,
  .problem-grid--three,
  .outcomes-grid,
  .outcomes-scenario-cols,
  .testimonial-grid,
  .trust-facts--compact,
  .demo-box,
  .pk-demo-columns {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .trust-facts {
    grid-template-columns: 1fr;
  }

  .outcomes-scenario-col--after {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
    border-top: 2px solid var(--accent-border);
  }

  .trust-fact:nth-child(5) {
    grid-column: auto;
  }

  .trust-details {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }

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

  .nav-link {
    display: none;
  }

  .nav-link--staff {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 20px;
  }
}
