/* PraxisLocate Credibility Website — style.css */

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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-primary-50: #eff6ff;
  --color-secondary: #0f172a;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-border: #e2e8f0;
  --color-success: #16a34a;
  --color-success-light: #dcfce7;
  --color-alert: #dc2626;
  --color-alert-light: #fef2f2;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1140px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-primary-dark); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

/* === Scroll Animations === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children delay */
.problem-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.problem-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }
.features-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.features-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.features-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.steps .fade-up:nth-child(2) { transition-delay: 0.12s; }
.steps .fade-up:nth-child(3) { transition-delay: 0.24s; }
.pricing-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0;
  transition: box-shadow var(--transition), padding var(--transition);
}

.nav.scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--color-primary); }
.nav-logo:hover { color: var(--color-secondary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-light);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
  background: var(--color-primary-50);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  margin-left: 0.5rem;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.4;
}

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

.btn-sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* === Section Headers === */
.section-header {
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary-50);
  border-radius: 100px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 640px;
  line-height: 1.7;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 10rem 1.5rem 6rem;
  text-align: center;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge-top {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.03em;
}

.hero h1 span { color: var(--color-primary); }

.hero-lead {
  font-size: 1.25rem;
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* === Problem === */
.problem {
  background: var(--color-bg);
}

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

.problem-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  background: var(--color-alert-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.problem-stat {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-alert);
  padding: 0.5rem 0.75rem;
  background: var(--color-alert-light);
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* === Solution === */
.solution {
  background: var(--color-bg-alt);
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.solution-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.solution-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.7;
}

.solution-point-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Architecture Diagram (CSS-based) */
.solution-diagram {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.arch-diagram { text-align: center; }

.arch-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.arch-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.arch-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  min-width: 90px;
}

.arch-node-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-50);
  border: 1px solid var(--color-primary-light);
}

.arch-node-highlight .arch-node-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.arch-node-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.arch-node-sub {
  font-size: 0.625rem;
  color: var(--color-text-light);
}

.arch-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  min-width: 48px;
}

.arch-connector-line {
  width: 32px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
}

.arch-connector-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 6px solid var(--color-primary);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.arch-connector-label {
  font-size: 0.5625rem;
  color: var(--color-primary);
  font-weight: 600;
}

.arch-down-arrow {
  margin: 0.75rem auto;
  display: flex;
  justify-content: center;
}

.arch-down-arrow-small {
  margin: 0.5rem auto;
  display: flex;
  justify-content: center;
}

.arch-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.arch-backend {
  border: 2px dashed var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  width: 100%;
  max-width: 420px;
}

.arch-backend-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.arch-backend-chips {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  justify-content: center;
}

.arch-backend-chips span {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  background: var(--color-primary-50);
  color: var(--color-primary-dark);
  border-radius: 100px;
}

.arch-frontend {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  max-width: 360px;
}

.arch-frontend-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.arch-devices {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.arch-devices span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  color: var(--color-text-light);
}

/* === How It Works === */
.how-it-works {
  background: var(--color-bg-alt);
}

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

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step-line {
  position: absolute;
  top: 52px;
  left: calc(50% + 36px);
  width: calc(100% - 36px);
  height: 2px;
  background: var(--color-primary-light);
  z-index: 1;
}

.step:last-child .step-line { display: none; }

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* === Features === */
.features {
  background: var(--color-bg);
}

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

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--color-primary-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* === Dashboard Mockup === */
.dashboard {
  background: var(--color-bg-alt);
  text-align: center;
}

.dashboard .section-header { text-align: center; }
.dashboard .section-subtitle { margin: 0 auto; }

.dashboard-mockup {
  margin-top: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

/* macOS-style window chrome */
.mockup-chrome {
  background: #f1f3f5;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-url {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  flex: 1;
  max-width: 360px;
}

.mockup-body {
  display: flex;
  flex-direction: column;
}

/* Top bar inside mockup */
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.625rem 1.25rem;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.mockup-app-title {
  font-size: 0.8125rem;
  color: var(--color-secondary);
}

.mockup-logo-text { font-weight: 400; }
.mockup-logo-text strong { font-weight: 700; color: var(--color-primary); }

.mockup-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.75rem;
  font-size: 0.6875rem;
  color: var(--color-text-light);
  flex: 1;
  max-width: 260px;
}

.mockup-floor-select {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.375rem 0.625rem;
  margin-left: auto;
}

/* Mockup content area */
.mockup-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 440px;
}

/* Sidebar */
.mockup-sidebar {
  background: var(--color-bg-alt);
  border-right: 1px solid var(--color-border);
  padding: 1rem 0.875rem;
  text-align: left;
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 1.25rem;
}

.mockup-sidebar h4 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.room-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  margin-bottom: 0.125rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  color: var(--color-text);
  cursor: default;
  transition: background var(--transition);
}

.room-item:hover { background: #fff; }

.room-item.active {
  background: var(--color-primary-50);
  color: var(--color-primary);
  font-weight: 600;
}

.room-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.room-status.free { background: var(--color-success); }
.room-status.occupied { background: var(--color-alert); }

.room-count {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--color-text-light);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 0 0.375rem;
  min-width: 18px;
  text-align: center;
  line-height: 1.6;
}

.person-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  margin-bottom: 0.125rem;
  font-size: 0.6875rem;
}

.person-badge {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.staff-badge { background: var(--color-primary); }

.person-name {
  font-weight: 600;
  color: var(--color-primary);
}

.person-location {
  margin-left: auto;
  font-size: 0.625rem;
  color: var(--color-text-light);
}

.sidebar-legend {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
  font-size: 0.625rem;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.sidebar-legend span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.staff-dot { background: var(--color-primary); }
.patient-dot { background: var(--color-success); }

/* Main floor plan area */
.mockup-main {
  padding: 1.5rem;
  background: #f1f5f9;
}

.floor-plan {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 380px;
}

.fp-room {
  position: absolute;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.fp-room-free {
  background: #f0fdf4;
  border-color: #86efac;
}

.fp-room-active {
  background: #eff6ff;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.fp-room-util {
  background: #f8fafc;
  border-color: #e2e8f0;
  border-style: dashed;
}

.fp-room-label {
  position: absolute;
  top: 6px;
  left: 8px;
  font-size: 0.5625rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.fp-hallway {
  position: absolute;
  background: #e2e8f0;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-hall-label {
  font-size: 0.5rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.person-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: #fff;
  font-weight: 700;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.person-dot.staff { background: var(--color-primary); }
.person-dot.patient { background: var(--color-success); }

/* Pulsing animation for person dots */
@keyframes person-pulse {
  0%, 100% { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(37, 99, 235, 0.15); }
}

.person-dot.staff {
  animation: person-pulse 3s ease-in-out infinite;
}

/* === Pricing === */
.pricing {
  background: var(--color-bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-featured {
  border-color: var(--color-primary);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.12);
}

.pricing-featured:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.25rem;
}

.pricing-target {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.pricing-rooms {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-left: 0.25rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li.included::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-success-light);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}

.pricing-features li.excluded {
  color: var(--color-text-light);
}

.pricing-features li.excluded::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f1f5f9;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12L12 4M4 4l8 8' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

/* === Privacy === */
.privacy {
  background: var(--color-bg-alt);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.privacy-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.privacy-check {
  width: 28px;
  height: 28px;
  background: var(--color-success-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === Pilot / Social Proof === */
.pilot {
  background: var(--color-bg);
}

.pilot-card {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #1e293b 100%);
  border-radius: var(--radius-xl);
  padding: 4rem;
  color: #fff;
}

.pilot-card .section-label {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
}

.pilot-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pilot-text {
  font-size: 1.0625rem;
  color: #94a3b8;
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.pilot-progress {
  max-width: 400px;
  margin-bottom: 2rem;
}

.pilot-progress-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}

.pilot-progress-header span:first-child { color: #94a3b8; }

.pilot-progress-count {
  font-weight: 700;
  color: #fff;
}

.pilot-progress-bar {
  height: 10px;
  background: #334155;
  border-radius: 100px;
  overflow: hidden;
}

.pilot-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #60a5fa);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pilot-progress-footer {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
}

.pilot-remaining {
  color: #60a5fa;
  font-weight: 600;
}

.pilot-criteria {
  margin-bottom: 2rem;
}

.pilot-criteria h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #e2e8f0;
}

.pilot-criteria ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.pilot-criteria li {
  font-size: 0.8125rem;
  color: #94a3b8;
  padding-left: 1.25rem;
  position: relative;
}

.pilot-criteria li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

.pilot-card .btn-primary {
  background: #fff;
  color: var(--color-secondary);
  border-color: #fff;
}

.pilot-card .btn-primary:hover {
  background: #e2e8f0;
  border-color: #e2e8f0;
  color: var(--color-secondary);
}

/* === FAQ === */
.faq {
  background: var(--color-bg-alt);
}

.faq .section-header { text-align: center; }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  background: var(--color-bg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  gap: 1rem;
  user-select: none;
  -webkit-user-select: none;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-light);
}

.faq-toggle:checked ~ .faq-question .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-toggle:checked ~ .faq-question {
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.cta-card {
  background: var(--color-secondary);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  color: #fff;
}

.cta-card h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 1.0625rem;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  margin-bottom: 1.25rem;
}

.cta-card .btn-primary {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

.cta-sub {
  font-size: 0.875rem;
  color: #64748b;
}

.cta-sub a {
  color: #93c5fd;
}

.cta-sub a:hover { color: #fff; }

/* === Footer === */
.footer {
  padding: 2.5rem 0;
  background: var(--color-secondary);
  border-top: 1px solid #1e293b;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #e2e8f0;
}

.footer-logo span { color: var(--color-primary); }

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #94a3b8;
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.75rem;
  color: #475569;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 1024px) {
  .solution-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .arch-row { flex-wrap: wrap; gap: 0.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.25rem;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero { padding: 8rem 1.5rem 4rem; }

  .hero h1 { font-size: 2.25rem; }

  .hero-lead { font-size: 1.0625rem; }

  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .section-title { font-size: 1.875rem; }

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

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

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

  .step-line { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .pilot-card { padding: 2.5rem 1.5rem; }

  .pilot-title { font-size: 1.75rem; }

  .pilot-criteria ul { grid-template-columns: 1fr; }

  .mockup-content { grid-template-columns: 1fr; }

  .mockup-sidebar { display: none; }

  .mockup-search { display: none; }

  .cta-card { padding: 3rem 1.5rem; }

  .cta-card h2 { font-size: 1.75rem; }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.875rem; }

  .section-title { font-size: 1.5rem; }

  .hero-buttons { flex-direction: column; align-items: center; }

  .hero-buttons .btn { width: 100%; }

  .btn-lg { padding: 0.875rem 1.75rem; }

  .mockup-chrome { padding: 0.5rem 0.75rem; }

  .mockup-url { display: none; }

  .floor-plan { min-height: 280px; }

  .person-dot {
    width: 18px;
    height: 18px;
    font-size: 0.4375rem;
  }

  .fp-room-label { font-size: 0.5rem; }

  .pilot-card { padding: 2rem 1.25rem; }
}

/* === Print === */
@media print {
  .nav, .hero-buttons, .cta-section, .pilot { display: none; }
  .section { padding: 2rem 0; }
  body { font-size: 12pt; }
}
