/* Steesio Marketing Web — Design System */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand — Steesio logo: cyan → blue → purple */
  --color-cyan: #22d3ee;
  --color-blue: #3b82f6;
  --color-purple: #8b5cf6;
  --color-primary: #3b82f6;
  --color-primary-dark: #2563eb;
  --color-primary-light: #22d3ee;
  --color-accent: #8b5cf6;
  --color-accent-hover: #7c3aed;
  --color-success: #22c55e;

  /* Neutrals */
  --color-ink: #1e293b;
  --color-ink-muted: #475569;
  --color-ink-subtle: #64748b;
  --color-surface: #ffffff;
  --color-surface-alt: #f8fafc;
  --color-surface-elevated: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #050508 0%, #0f172a 38%, #1e1b4b 72%, #312e81 100%);
  --gradient-brand: linear-gradient(90deg, #22d3ee 0%, #4f8ef7 42%, #7c5cfc 78%, #8b5cf6 100%);
  --gradient-brand-hover: linear-gradient(90deg, #06b6d4 0%, #3b82f6 42%, #6d28d9 78%, #7c3aed 100%);
  --shadow-btn: 0 8px 28px rgba(79, 142, 247, 0.38), 0 2px 8px rgba(139, 92, 246, 0.22);
  --shadow-btn-hover: 0 14px 36px rgba(79, 142, 247, 0.48), 0 4px 14px rgba(139, 92, 246, 0.3);
  --gradient-mesh: radial-gradient(ellipse 80% 60% at 15% 0%, rgba(34, 211, 238, 0.18), transparent),
                   radial-gradient(ellipse 60% 50% at 85% 15%, rgba(139, 92, 246, 0.15), transparent),
                   radial-gradient(ellipse 50% 40% at 50% 100%, rgba(59, 130, 246, 0.1), transparent);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-section: clamp(3rem, 6vw, 5rem);
  --container: min(1200px, calc(100% - 2.5rem));
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 60px rgba(59, 130, 246, 0.25), 0 0 100px rgba(139, 92, 246, 0.12);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-surface);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Skip link — accessibility + SEO crawlability */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.625rem 0;
  transition: padding var(--duration) var(--ease-out);
}

.site-header.is-scrolled {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-dark .nav-link { color: rgba(255, 255, 255, 0.82); }
.site-header.is-dark .nav-link:hover,
.site-header.is-dark .nav-link.is-active { color: #fff; }
.site-header.is-dark .logo-text { color: #fff; }
.site-header.is-scrolled .nav-link { color: var(--color-ink-muted); }
.site-header.is-scrolled .nav-link:hover { color: var(--color-ink); }
.site-header.is-scrolled .nav-link.is-active {
  color: var(--color-ink);
  font-weight: 600;
}
.site-header.is-scrolled .logo-text { color: var(--color-ink); }

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 3.5rem;
  padding: 0.375rem 0.875rem;
  transition: background var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out),
              border-radius var(--duration) var(--ease-out);
}

.site-header.is-scrolled .header-inner {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow:
    0 4px 24px rgba(15, 23, 42, 0.06),
    0 1px 2px rgba(15, 23, 42, 0.04);
}

.site-header.is-dark:not(.is-scrolled) .header-inner {
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  justify-self: start;
}

.logo img { height: 2rem; width: auto; }
.logo-text { color: var(--color-ink); }

.site-header.is-dark .logo {
  background: rgba(255, 255, 255, 0.96);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.is-scrolled .logo {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 0.125rem;
  padding: 0.25rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-light);
}

.site-header.is-dark:not(.is-scrolled) .nav-desktop {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-ink-muted);
  padding: 0.5rem 0.9375rem;
  border-radius: var(--radius-full);
  transition: color var(--duration), background var(--duration), box-shadow var(--duration);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.65);
}
.site-header.is-dark:not(.is-scrolled) .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-link.is-active {
  color: var(--color-ink);
  font-weight: 600;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.site-header.is-dark:not(.is-scrolled) .nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.nav-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.4rem 0.55rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--color-ink-muted);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: color var(--duration), background var(--duration);
}
.nav-actions .nav-lang {
  flex-shrink: 0;
  margin-left: 0.125rem;
}
.nav-lang:hover {
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.08);
}
.site-header.is-dark:not(.is-scrolled) .nav-lang {
  color: rgba(255, 255, 255, 0.82);
}
.site-header.is-dark:not(.is-scrolled) .nav-lang:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.site-header.is-scrolled .nav-lang:hover {
  color: var(--color-primary);
  background: rgba(13, 148, 136, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.5rem;
}

.site-header.is-scrolled .nav-actions .btn-ghost {
  background: #fff;
  border: 2px solid var(--color-border);
  color: var(--color-ink-muted);
  opacity: 1;
}
.site-header.is-scrolled .nav-actions .btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.site-header.is-scrolled .nav-actions .btn-ghost-light {
  background: #fff;
  border: 2px solid var(--color-border);
  color: var(--color-ink-muted);
  backdrop-filter: none;
}
.site-header.is-scrolled .nav-actions .btn-ghost-light:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff;
}

.site-header.is-dark:not(.is-scrolled) .nav-actions .btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: inherit;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration);
}
.nav-mobile.is-open { opacity: 1; visibility: visible; }

.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--color-surface);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  overflow-y: auto;
}
.nav-mobile.is-open .nav-mobile-panel { transform: translateX(0); }

.nav-mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}
.nav-mobile-close button {
  background: var(--color-surface-alt);
  border: none;
  border-radius: var(--radius-md);
  padding: 0.5rem;
  cursor: pointer;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-links a {
  display: block;
  padding: 0.875rem 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: background var(--duration);
}
.nav-mobile-links a:hover { background: var(--color-surface-alt); }

.nav-mobile-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out),
              box-shadow 0.22s,
              background 0.22s,
              border-color 0.22s,
              color 0.22s;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary,
.btn-accent {
  background-color: var(--color-blue);
  background-image: var(--gradient-brand);
  background-clip: border-box;
  color: #fff;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover,
.btn-accent:hover {
  background-image: var(--gradient-brand-hover);
  color: #fff;
  box-shadow: var(--shadow-btn-hover), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-success {
  background: var(--color-success);
  color: #fff;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}
.btn-success:hover {
  background: #16a34a;
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  opacity: 0.9;
}
.btn-ghost:hover { opacity: 1; }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.btn-outline {
  position: relative;
  isolation: isolate;
  background-color: #fff;
  color: var(--color-ink);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: transparent;
  background-color: transparent;
  background-image: none;
  color: #fff;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-outline:hover::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient-brand);
  z-index: -1;
}

.btn-outline-gradient {
  position: relative;
  isolation: isolate;
  background-color: transparent;
  color: var(--color-ink);
  border: none;
  box-shadow: var(--shadow-sm);
}
.btn-outline-gradient::before,
.btn-outline-gradient::after {
  content: '';
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.btn-outline-gradient::before {
  inset: 0;
  z-index: -2;
  background: var(--gradient-brand);
}
.btn-outline-gradient::after {
  inset: 2px;
  z-index: -1;
  background: #fff;
  transition: opacity 0.22s;
}
.btn-outline-gradient:hover {
  color: #fff;
  box-shadow: var(--shadow-btn), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-outline-gradient:hover::before {
  background: var(--gradient-brand-hover);
}
.btn-outline-gradient:hover::after {
  opacity: 0;
}

.btn-lg {
  padding: 1.0625rem 2.125rem;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-block: 4rem;
}

.hero-content { color: #fff; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--color-cyan);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, var(--text-6xl));
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #22d3ee, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.5rem;
  max-width: 36rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--color-cyan);
}

.hero-visual {
  position: relative;
}

/* ─── Product screenshot presentation ─── */
.product-shot {
  position: relative;
  margin: 0;
  width: 100%;
}

.product-shot--hero {
  perspective: 1400px;
}

.product-shot-glow {
  position: absolute;
  inset: -15% -8%;
  background:
    radial-gradient(ellipse 55% 45% at 30% 40%, rgba(34, 211, 238, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 45% at 75% 55%, rgba(139, 92, 246, 0.32), transparent 65%);
  filter: blur(48px);
  z-index: 0;
  pointer-events: none;
}

.product-shot-frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 32px 64px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 100px rgba(59, 130, 246, 0.18);
  transition: transform 0.55s var(--ease-out), box-shadow 0.55s;
}

.product-shot--hero .product-shot-frame {
  transform: perspective(1400px) rotateY(-5deg) rotateX(3deg) scale(0.98);
}

.product-shot--hero:hover .product-shot-frame {
  transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg) scale(1);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 120px rgba(139, 92, 246, 0.25);
}

.product-shot-browser {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(180deg, #1a2332 0%, #0f172a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.product-shot-browser span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-shot-browser span:nth-child(1) { background: #f87171; }
.product-shot-browser span:nth-child(2) { background: #fbbf24; }
.product-shot-browser span:nth-child(3) { background: #4ade80; }

.product-shot-url {
  flex: 1;
  margin-left: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  letter-spacing: 0.02em;
}

.product-shot-viewport {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  line-height: 0;
}

.product-shot-viewport::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.06), transparent);
  pointer-events: none;
}

.product-shot-viewport img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature sections — celé UI včetně barevného sidebaru */
.product-shot--feature .product-shot-viewport {
  max-height: none;
  aspect-ratio: auto;
  background: #eef2f7;
}

.product-shot--feature .product-shot-viewport::after {
  display: none;
}

.product-shot--feature .product-shot-viewport img {
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: unset;
  display: block;
}

.product-shot--feature.product-shot--light .product-shot-frame {
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow:
    0 28px 56px -24px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 0 100px rgba(34, 211, 238, 0.1),
    0 0 60px rgba(139, 92, 246, 0.08);
}

.product-shot--feature.product-shot--light .product-shot-glow {
  inset: -14% -8%;
  filter: blur(42px);
  opacity: 1;
}

.product-shot--light .product-shot-frame {
  background: #fff;
  border-color: rgba(59, 130, 246, 0.14);
  box-shadow:
    0 24px 48px -20px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(59, 130, 246, 0.06),
    0 0 80px rgba(139, 92, 246, 0.07);
}

.product-shot--light .product-shot-glow {
  inset: -12% -6%;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(59, 130, 246, 0.1), transparent 70%);
  filter: blur(36px);
}

.product-shot--light .product-shot-browser {
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom-color: var(--color-border);
}

.product-shot--light .product-shot-url {
  background: #fff;
  border-color: var(--color-border);
  color: var(--color-ink-subtle);
}

.product-shot-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Feature rows — glow only, bez 3D perspektivy (nekřiví sidebar) */
.product-shot--feature .product-shot-frame {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  transform: none;
}

.feature-row:hover .product-shot--feature .product-shot-frame {
  transform: translateY(-4px);
}

.feature-row:nth-child(4n + 1) .product-shot-glow {
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(34, 211, 238, 0.32), transparent 68%),
    radial-gradient(ellipse 50% 45% at 85% 65%, rgba(139, 92, 246, 0.18), transparent 70%);
}
.feature-row:nth-child(4n + 2) .product-shot-glow {
  background:
    radial-gradient(ellipse 55% 48% at 80% 28%, rgba(139, 92, 246, 0.28), transparent 68%),
    radial-gradient(ellipse 45% 40% at 15% 78%, rgba(34, 211, 238, 0.16), transparent 72%);
}
.feature-row:nth-child(4n + 3) .product-shot-glow {
  inset: -10% -6%;
  background:
    radial-gradient(ellipse 55% 50% at 35% 45%, rgba(59, 130, 246, 0.22), transparent 70%),
    radial-gradient(ellipse 45% 42% at 70% 60%, rgba(236, 72, 153, 0.12), transparent 72%);
}
.feature-row:nth-child(4n) .product-shot-glow {
  background:
    radial-gradient(ellipse 50% 45% at 55% 38%, rgba(34, 211, 238, 0.24), transparent 65%),
    radial-gradient(ellipse 48% 44% at 25% 82%, rgba(139, 92, 246, 0.2), transparent 70%);
}

/* Compact tile variant for bento homepage grid */
.product-shot--tile .product-shot-frame {
  border-radius: var(--radius-xl);
}
.product-shot--tile .product-shot-browser {
  padding: 0.45rem 0.7rem;
}
.product-shot--tile .product-shot-browser span {
  width: 7px;
  height: 7px;
}
.product-shot--tile .product-shot-url {
  font-size: 0.5625rem;
  padding: 0.2rem 0.5rem;
}
.product-shot--tile .product-shot-viewport {
  aspect-ratio: 16 / 10;
  max-height: none;
}
.product-shot--tile .product-shot-viewport img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.showcase-bento .showcase-tile {
  padding: 0;
  border: none;
  background: transparent;
  min-height: 220px;
}
.showcase-bento .showcase-tile:hover {
  transform: translateY(-4px);
}
.showcase-bento .product-shot--tile .product-shot-frame {
  min-height: 220px;
  box-shadow: var(--shadow-md);
}
.showcase-bento .product-shot {
  height: 100%;
}
.showcase-bento .product-shot-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.showcase-bento .product-shot-viewport {
  flex: 1;
}
.showcase-bento .showcase-tile:hover .product-shot-frame {
  box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.12);
}

/* Raw screenshot without monitor hardware — flat float */
.feature-shot-plain {
  position: relative;
  margin: 0;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow:
    0 24px 48px -20px rgba(15, 23, 42, 0.2),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}
.feature-shot-plain::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}
.feature-shot-plain img {
  display: block;
  width: 100%;
  height: auto;
}

/* Homepage monitor gallery — subtle, pre-composed mockups */
.monitor-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  align-items: end;
}

.monitor-item {
  margin: 0;
  text-align: center;
}

.monitor-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(15, 23, 42, 0.1));
  transition: transform 0.45s var(--ease-out), filter 0.45s;
}

.monitor-item:hover img {
  transform: translateY(-5px);
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.14));
}

.monitor-item figcaption {
  margin-top: 0.875rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-muted);
}

.monitor-hero-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.35));
}

.monitor-showcase-wide {
  margin-top: 3rem;
  text-align: center;
}

.monitor-showcase-wide img {
  width: min(920px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.12));
}

/* Homepage — jeden lifestyle mockup místo bento mřížky */
.showcase-spotlight {
  position: relative;
  margin: 0;
  text-align: center;
}

.showcase-spotlight-glow {
  position: absolute;
  inset: 10% 5% -5%;
  background:
    radial-gradient(ellipse 55% 50% at 30% 50%, rgba(34, 211, 238, 0.14), transparent 70%),
    radial-gradient(ellipse 50% 45% at 75% 45%, rgba(139, 92, 246, 0.12), transparent 72%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.showcase-spotlight-link {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 960px;
  margin-inline: auto;
  transition: transform 0.4s var(--ease-out);
}

.showcase-spotlight-link:hover {
  transform: translateY(-4px);
}

.showcase-spotlight-link img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(15, 23, 42, 0.14));
}

.showcase-spotlight figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
}

.showcase-module-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.625rem 1rem;
  margin-top: 2rem;
}

.showcase-module-links a {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-muted);
  text-decoration: none;
  padding: 0.375rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.showcase-module-links a:hover {
  color: var(--color-primary);
  border-bottom-color: rgba(59, 130, 246, 0.35);
}

.showcase-module-links .showcase-module-more {
  color: var(--color-primary);
  margin-left: 0.25rem;
}

/* Origin story block */
.story-block {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}

.story-intro {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.story-block .lead-quote {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.story-block p {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

/* Target audience */
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.audience-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0 1.25rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  color: var(--color-ink-muted);
}

/* Pricing — 3 plans */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin-inline: auto;
}

.pricing-grid .pricing-card.featured {
  transform: scale(1.02);
}

.pricing-combo-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-top: 1.5rem;
  max-width: 36rem;
  margin-inline: auto;
}

/* Legacy bento — removed from use */
.showcase-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}

.showcase-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  text-decoration: none;
  color: inherit;
}
.showcase-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(59, 130, 246, 0.1);
}

.showcase-tile.span-8 { grid-column: span 8; }
.showcase-tile.span-4 { grid-column: span 4; }
.showcase-tile.span-6 { grid-column: span 6; }

.showcase-tile img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.showcase-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.1) 45%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  color: #fff;
}

.showcase-tile-overlay h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.showcase-tile-overlay p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.hero-screenshot {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: block;
}

.hero-mockup {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  aspect-ratio: 4/3;
}

.mockup-browser {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-content {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  height: calc(100% - 45px);
}

.mockup-sidebar {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mockup-nav-item {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
}
.mockup-nav-item.active {
  background: linear-gradient(90deg, #22d3ee, #8b5cf6);
  width: 80%;
}

.mockup-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.mockup-stat {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.mockup-stat-label {
  height: 6px;
  width: 60%;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin-bottom: 0.5rem;
}
.mockup-stat-value {
  height: 14px;
  width: 40%;
  background: linear-gradient(90deg, #22d3ee, #8b5cf6);
  border-radius: 3px;
}
.mockup-chart {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1rem;
}
.mockup-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(59,130,246,0.85), rgba(139,92,246,0.25));
  border-radius: 4px 4px 0 0;
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  color: var(--color-ink);
  animation: float 6s ease-in-out infinite;
}
.hero-float-card.top-right {
  top: -1rem;
  right: -1.5rem;
  animation-delay: -2s;
}
.hero-float-card.bottom-left {
  bottom: 2rem;
  left: -2rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-card-label {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  margin-bottom: 0.25rem;
}
.float-card-value {
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--color-primary);
}

/* ─── Sections ─── */
.section {
  padding-block: var(--space-section);
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}


.section-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  line-height: 1.65;
}

/* ─── Pain → Solution (Sales psychology) ─── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pain-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  color: #d97706;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.pain-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pain-card p {
  color: var(--color-ink-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}

.pain-card .solution {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
}

/* ─── Pillars ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13,148,136,0.1), rgba(2,132,199,0.1));
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.pillar-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.6;
}

/* ─── Module cards ─── */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.module-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}
.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.3);
}

.module-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.module-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.module-card p {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.6;
  flex: 1;
}

.module-card .module-link {
  margin-top: 1rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* ─── Feature showcase (alternating) ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-content { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }

.feature-visual {
  padding: 0;
  border: none;
  background: transparent;
  min-height: unset;
  overflow: visible;
  box-shadow: none;
}

.feature-monitor {
  margin: 0;
}

.feature-monitor img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 44px rgba(15, 23, 42, 0.13));
  border-radius: var(--radius-lg);
}

.feature-visual-icon {
  font-size: 4rem;
  opacity: 0.9;
}

.feature-content h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.feature-content p {
  color: var(--color-ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  margin-top: 0.125rem;
}

/* ─── Pricing ─── */
.pricing-card {
  position: relative;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-2xl);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--gradient-brand);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-desc {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}
.pricing-features li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(59, 130, 246, 0.06);
  border-radius: var(--radius-xl);
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.65;
}

/* ─── Interactive plan cards (pricing page) ─── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.plan-card:hover {
  box-shadow: var(--shadow-md);
}

.plan-card.is-featured {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(139, 92, 246, 0.1);
}

.plan-card.is-featured:hover {
  transform: translateY(-2px);
}

.plan-card-accent {
  height: 4px;
  width: 100%;
}

.plan-card--ops .plan-card-accent { background: linear-gradient(90deg, #34d399, #10b981); }
.plan-card--people .plan-card-accent { background: linear-gradient(90deg, #a78bfa, #8b5cf6); }
.plan-card--finance .plan-card-accent { background: linear-gradient(90deg, #60a5fa, #3b82f6); }

.plan-card-body {
  padding: 1.75rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.plan-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: 1.35rem;
}

.plan-card--ops .plan-icon { background: rgba(16, 185, 129, 0.12); }
.plan-card--people .plan-icon { background: rgba(139, 92, 246, 0.12); }
.plan-card--finance .plan-icon { background: rgba(59, 130, 246, 0.12); }

.plan-card-title h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

.plan-price-amount {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-card--ops .plan-price-amount { color: #059669; }
.plan-card--people .plan-price-amount { color: #7c3aed; }
.plan-card--finance .plan-price-amount { color: #2563eb; }

.plan-price-unit {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  font-weight: 500;
}

.plan-ribbon {
  margin-bottom: 1rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}

.plan-card--people .plan-ribbon {
  background: rgba(139, 92, 246, 0.1);
  color: #6d28d9;
}

.plan-card--finance .plan-ribbon {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
}

.plan-summary {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.plan-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.plan-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
}

.plan-highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.plan-card--ops .plan-highlight-dot { background: #10b981; }
.plan-card--people .plan-highlight-dot { background: #8b5cf6; }
.plan-card--finance .plan-highlight-dot { background: #3b82f6; }

.plan-expandable {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

.plan-card.is-expanded .plan-expandable {
  max-height: 2000px;
}

.plan-modules {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid var(--color-border-light);
}

.plan-module {
  display: flex;
  gap: 0.75rem;
  padding: 0.625rem 0;
}

.plan-module-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--color-surface-alt);
}

.plan-module-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.125rem;
}

.plan-module-text span {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  line-height: 1.45;
}

.plan-footer-text {
  margin-top: auto;
  padding-top: 1rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-ink-muted);
  line-height: 1.45;
  border-top: 1px solid var(--color-border-light);
}

.plan-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.625rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.plan-toggle:hover {
  background: var(--color-surface);
  color: var(--color-ink);
}

.plan-toggle svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s var(--ease-out);
}

.plan-card.is-expanded .plan-toggle svg {
  transform: rotate(180deg);
}

.plan-card-actions {
  padding: 0 1.75rem 1.75rem;
}

.plan-card-actions .btn {
  width: 100%;
}

/* ─── Complete pricing detail page ─── */
.page-hero--compact {
  padding-bottom: 3rem;
}

.page-hero-inner--single {
  grid-template-columns: 1fr;
}

.page-hero-inner--single .page-hero-content {
  max-width: 42rem;
}

.pricing-detail {
  max-width: min(76rem, 100%);
  margin-inline: auto;
}

.pricing-detail-intro {
  margin-bottom: 3rem;
  padding: 1.75rem 2.25rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
}

.pricing-detail-intro h2 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.pricing-detail-intro .pricing-detail-list {
  list-style: none;
  padding-left: 0;
}

.pricing-detail-intro .pricing-detail-list li + li {
  margin-top: 0.625rem;
}

.pricing-detail-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

.pricing-detail-list li + li {
  margin-top: 0.5rem;
}

.pricing-detail-block {
  margin-bottom: 3rem;
}

.pricing-detail-header {
  margin-bottom: 1.25rem;
}

.pricing-detail-header .section-desc {
  text-align: left;
  margin-inline: 0;
}

.pricing-detail-footnote {
  margin-top: 1rem;
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
}

.pricing-detail-example {
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border);
}

.pricing-detail-example p {
  margin: 0 0 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
  line-height: 1.55;
}

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

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.price-table th,
.price-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

.price-table th {
  background: var(--color-surface-alt);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-ink-subtle);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.03);
}

.price-table-amount {
  font-weight: 700;
  color: var(--color-ink);
  white-space: nowrap;
}

.price-table-note {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  font-weight: 400;
}

.price-table--finance td:first-child,
.price-table--finance th:first-child {
  font-weight: 600;
}

.pricing-detail-list--compact {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: var(--text-sm);
}

.pricing-detail-header .pricing-detail-list--compact {
  max-width: 40rem;
}

/* Remove per-plan button overrides — unified gradient CTAs */

.billing-fair {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}

.billing-fair-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.45;
}

.billing-fair-item strong {
  display: block;
  color: var(--color-ink);
  font-size: var(--text-sm);
  margin-bottom: 0.125rem;
}

.billing-fair-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.pricing-expand-all {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pricing-expand-all button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-expand-all button:hover {
  color: var(--color-accent);
}

/* ─── Positioning: one system vs chaos ─── */
.unify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin-inline: auto;
}

.unify-card {
  padding: 2rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
}

.unify-card--before {
  background: var(--color-surface-alt);
  opacity: 0.92;
}

.unify-card--after {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.06), rgba(139, 92, 246, 0.08));
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-md);
}

.unify-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.unify-card--before h3 { color: var(--color-ink-muted); }
.unify-card--after h3 {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.unify-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.unify-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.5;
}

.unify-card--before .unify-list li::before {
  content: '×';
  color: #94a3b8;
  font-weight: 700;
  flex-shrink: 0;
}

.unify-card--after .unify-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.philosophy-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.philosophy-pill {
  padding: 0.625rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
  box-shadow: var(--shadow-sm);
}

.philosophy-pill strong {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Tak akorát / pragmatic ─── */
.pragmatic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pragmatic-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}

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

.pragmatic-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.pragmatic-card h3 {
  font-size: var(--text-lg);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.pragmatic-lead {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.pragmatic-card p:last-child {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.6;
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.section-cta--sm { margin-top: 2rem; }

/* ─── Trust / Security ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 2rem 1.25rem;
}

.trust-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
}

.trust-item h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.trust-item p {
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  line-height: 1.5;
}

/* Security page — layered protection */
.security-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin-inline: auto;
}

.security-layer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

.security-layer-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.08));
  color: var(--color-primary);
  flex-shrink: 0;
}

.security-layer-icon--accent {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(59, 130, 246, 0.1));
  color: var(--color-accent);
}

.security-layer-body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.security-layer-body p {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.6;
  margin: 0;
}

.data-shield-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.data-shield-card {
  padding: 1.25rem 1.125rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px -12px rgba(15, 23, 42, 0.12);
}

.data-shield-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.375rem;
}

.data-shield-card p {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.5;
  margin: 0;
}

.data-shield-note {
  margin-top: 1rem;
  font-size: var(--text-xs);
  color: var(--color-ink-subtle);
  text-align: center;
  font-style: italic;
}

.feature-content .feature-list + a,
.feature-content p a,
.faq-answer-inner a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.feature-content p a:hover,
.faq-answer-inner a:hover {
  text-decoration: underline;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--color-ink);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--color-surface-alt); }

.faq-question svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s var(--ease-out);
  color: var(--color-ink-subtle);
}
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  padding: 4rem 2rem;
  background: var(--gradient-hero);
  border-radius: var(--radius-2xl);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
}
.cta-banner-inner { position: relative; }

.cta-banner h2 {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  max-width: 32rem;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-banner .btn-outline-gradient {
  color: var(--color-ink);
}
.cta-banner .btn-outline-gradient:hover {
  color: #fff;
}

/* ─── Page hero (subpages) ─── */
.page-hero {
  position: relative;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #ecfeff 0%, #f8fafc 38%, #ffffff 100%);
  pointer-events: none;
}

.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 12% 20%, rgba(34, 211, 238, 0.18), transparent 68%),
    radial-gradient(ellipse 45% 40% at 88% 15%, rgba(139, 92, 246, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 35% at 70% 85%, rgba(59, 130, 246, 0.08), transparent 72%);
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero-content {
  max-width: 34rem;
}

.page-hero h1 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-hero p {
  font-size: var(--text-lg);
  color: var(--color-ink-muted);
  max-width: 36rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.page-hero-visual {
  margin: 0;
  position: relative;
}

.page-hero-shot {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.375rem;
  background: linear-gradient(165deg, #e2e8f0 0%, #f8fafc 55%, #f1f5f9 100%);
  box-shadow:
    0 32px 64px -28px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.page-hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-2xl) - 0.375rem);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.page-hero-carousel-track {
  position: relative;
  aspect-ratio: 1024 / 524;
  background: #fff;
}

.page-hero-carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.page-hero-carousel-track img.is-active {
  opacity: 1;
  z-index: 1;
}

.page-hero-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.page-hero-carousel-dots button {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.page-hero-carousel-dots button.is-active {
  background: linear-gradient(90deg, #22d3ee, #8b5cf6);
  transform: scale(1.15);
}

.page-hero-carousel-dots button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-carousel-track img {
    transition: none;
  }

  .page-hero-carousel-dots {
    display: none;
  }
}

.page-hero--photo .page-hero-shot {
  border: none;
  background: transparent;
  box-shadow: 0 24px 48px -20px rgba(15, 23, 42, 0.18);
}

.page-hero--photo .page-hero-shot img {
  border-radius: var(--radius-2xl);
}

.page-hero-visual-glow {
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.14), transparent 70%);
  filter: blur(32px);
  z-index: -1;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--color-ink-subtle);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--color-primary); }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,148,136,0.1);
  border-radius: var(--radius-md);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 0.25rem;
}
.contact-detail span,
.contact-detail a {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
}
.contact-detail a:hover { color: var(--color-primary); }

.contact-info-title,
.contact-form-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.contact-paths {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-path {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}
.contact-path--demo {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08) 0%, var(--color-surface) 58%);
  border-color: rgba(13, 148, 136, 0.22);
}
.contact-path--trial {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, var(--color-surface) 58%);
  border-color: rgba(37, 99, 235, 0.18);
}
.contact-path--live {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.07) 0%, var(--color-surface) 58%);
  border-color: rgba(124, 58, 237, 0.18);
}
.contact-path-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}
.contact-path--demo .contact-path-icon {
  background: rgba(13, 148, 136, 0.14);
}
.contact-path--trial .contact-path-icon {
  background: rgba(37, 99, 235, 0.12);
}
.contact-path--live .contact-path-icon {
  background: rgba(124, 58, 237, 0.12);
}
.contact-path-body {
  flex: 1;
  min-width: 0;
}
.contact-path-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--color-ink);
}
.contact-path p {
  font-size: var(--text-sm);
  color: var(--color-ink-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}
.contact-path p:last-child {
  margin-bottom: 0;
}
.contact-path-body .btn {
  margin-top: 0.25rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 0;
}

.contact-form-error {
  font-size: var(--text-sm);
  color: #b91c1c;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: var(--text-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.6;
  padding: 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

.footer-col h4 a {
  color: inherit;
  text-decoration: none;
}
.footer-col h4 a:hover { color: rgba(255, 255, 255, 0.85); }

.footer-col .footer-soon {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.5rem;
  font-size: var(--text-xs);
}

.pricing-detail-list--compact {
  margin-top: 0.75rem;
}

.pricing-detail-list--numbered {
  list-style: decimal;
  padding-left: 1.5rem;
}

.legal-doc {
  max-width: min(76rem, 100%);
  margin-inline: auto;
}

.legal-doc h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.legal-doc h3:first-child {
  margin-top: 0;
}

.legal-doc h4 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 1.75rem 0 0.75rem;
}

.legal-doc p,
.legal-doc li {
  color: var(--color-ink-muted);
  line-height: 1.75;
}

.legal-doc p + p {
  margin-top: 0.875rem;
}

.legal-doc .legal-table-wrap {
  margin: 1.25rem 0 2rem;
}

.legal-doc code {
  font-size: 0.9em;
  background: var(--color-surface-alt);
  padding: 0.1em 0.35em;
  border-radius: 0.25rem;
}

.legal-doc h5 {
  font-size: var(--text-base);
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.legal-doc .pricing-detail-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.5rem;
  list-style: disc outside;
}

.legal-doc .pricing-detail-list > li {
  display: list-item;
}

.legal-doc .pricing-detail-list > li + li {
  margin-top: 0.5rem;
}

.legal-doc .pricing-detail-list--numbered {
  list-style: decimal outside;
  padding-left: 1.5rem;
}

.legal-doc .pricing-detail-list .pricing-detail-list {
  margin: 0.5rem 0 0.25rem;
  padding-left: 1.25rem;
  list-style: circle outside;
}

.legal-doc .pricing-detail-list li::marker {
  color: var(--color-primary);
}

.legal-doc p + .pricing-detail-list,
.legal-doc .pricing-detail-list + p {
  margin-top: 0.75rem;
}

.legal-doc a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

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

.legal-doc .legal-translation-notice a {
  color: var(--color-primary);
}

.legal-meta {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  color: var(--color-ink-muted);
}

.legal-subheading {
  margin: 1.5rem 0 0.75rem;
}

.legal-definition {
  margin: 0.75rem 0 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-border);
}

.legal-definition-term {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--color-ink);
}

.legal-definition-body {
  margin: 0;
}

.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 23, 42, 0.96);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 20rem;
  max-width: 52rem;
}

.cookie-consent-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: #fff;
}

.cookie-consent-text p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-consent-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  font-weight: 600;
}

.cookie-consent-text a:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-consent .btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
}

.cookie-consent .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.cookie-consent .btn-outline:hover::before {
  content: none;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a:hover { color: #fff; }

.section--legal-pdf {
  padding-top: 1rem;
}

.legal-pdf-frame-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: min(78vh, 56rem);
  height: min(78vh, 56rem);
}

.legal-pdf-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: min(78vh, 56rem);
  border: 0;
}

.legal-pdf-mobile-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--color-surface-alt);
  text-align: center;
}

.legal-pdf-mobile-card p {
  margin: 0 0 1rem;
  color: var(--color-ink-muted);
}

@media (min-width: 900px) {
  [data-legal-pdf-desktop] {
    display: block !important;
  }

  [data-legal-pdf-mobile] {
    display: none;
  }
}

@media (max-width: 899px) {
  [data-legal-pdf-desktop] {
    display: none !important;
  }

  [data-legal-pdf-mobile] {
    display: block;
  }
}

/* ─── Animations (scroll reveal) ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-doc.reveal {
  opacity: 1;
  transform: none;
}

.legal-translation-notice {
  margin: 0 0 2rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-alt);
}

.legal-translation-notice + .legal-translation-notice {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.legal-translation-notice p {
  margin: 0;
  color: var(--color-ink);
  font-size: var(--text-sm);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 640px; margin-inline: auto; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-hero-visual { max-width: 560px; margin-inline: auto; order: 0; }
  .page-hero-visual--pricing {
    order: 0;
    width: min(100%, 760px);
    max-width: none;
    margin-top: 0.5rem;
  }
  .page-hero-content { max-width: none; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .security-layers { grid-template-columns: 1fr; max-width: 420px; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-content,
  .feature-row.reverse .feature-visual { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card.featured { transform: none; }
  .unify-grid { grid-template-columns: 1fr; }
  .pragmatic-grid { grid-template-columns: 1fr; }
  .monitor-gallery { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .plans-grid { grid-template-columns: 1fr; }
  .billing-fair { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .nav-desktop, .nav-actions .btn:not(.nav-cta-mobile-hide) { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile { display: block; }

  .pain-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card.featured { transform: none; }
  .monitor-gallery { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .showcase-tile.span-8,
  .showcase-tile.span-4,
  .showcase-tile.span-6 { grid-column: span 12; }
  .product-shot--hero .product-shot-frame { transform: none; }
  .product-shot--hero:hover .product-shot-frame { transform: none; }
  .feature-row:nth-child(n) .product-shot--feature .product-shot-frame,
  .feature-row:hover .product-shot--feature .product-shot-frame {
    transform: none;
  }
  .page-hero {
    padding: 5.5rem 0 3rem;
  }
  .page-hero-inner {
    gap: 1.75rem;
  }
  .page-hero-visual--pricing {
    width: min(100%, 34rem);
  }
  .page-hero-visual--pricing .page-hero-shot {
    padding: 0.25rem;
    border-radius: var(--radius-xl);
  }
  .page-hero-visual--pricing .page-hero-carousel-dots {
    margin-top: 0.75rem;
  }
  .hero-float-card { display: none; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
