/**
 * DataDent.cz — Landing Page Design System
 * Standalone CSS — does NOT include main.css.
 * BEM-style with .lp-* prefix.
 *
 * Sections:
 *   1. Variables (:root)
 *   2. Fonts (Inter @font-face)
 *   3. Resets + base body
 *   4. Skip link, container, utility
 *   5. Navigation (lp-nav)
 *   6. Buttons (lp-btn)
 *   7. Cards (lp-card)
 *   8. Grid (lp-grid)
 *   9. Sections (lp-section)
 *  10. Hero (lp-hero)
 *  11. Stat / Trust counter
 *  12. Feature cards
 *  13. Flow / Workflow
 *  14. Comparison (lp-cmp)
 *  15. Highlight box (lp-hl)
 *  16. Table (lp-tbl)
 *  17. FAQ accordion
 *  18. Tabs
 *  19. Screenshot frame
 *  20. TOC sticky
 *  21. Promo strip
 *  22. Pill, alert
 *  23. Form, checklist
 *  24. Footer
 *  25. Animation classes
 *  26. Responsive breakpoints
 *  27. prefers-reduced-motion
 */

/* ===========================================================================
   1. VARIABLES
   =========================================================================== */

:root {
  /* Brand */
  --lp-primary: #0d9488;
  --lp-primary-d: #0f766e;
  --lp-primary-l: #14b8a6;
  --lp-accent: #5eead4;
  --lp-accent-d: #2dd4bf;

  /* Text */
  --lp-text: #1a1d2b;
  --lp-muted: #64748b;
  --lp-h2: #0f172a;
  --lp-text-on-dark: rgba(255, 255, 255, 0.92);
  --lp-muted-on-dark: rgba(255, 255, 255, 0.6);

  /* Backgrounds */
  --lp-bg: #ffffff;
  --lp-bg-alt: #f8fafc;
  --lp-bg-soft: #f1f5f9;
  --lp-bg-dark: #0f172a;
  --lp-bg-darker: #020617;
  --lp-bg-teal-soft: #f0fdfa;

  /* Borders */
  --lp-border: #e8ebf0;
  --lp-border-dark: rgba(255, 255, 255, 0.08);
  --lp-border-soft: #f1f5f9;

  /* Status */
  --lp-success: #16a34a;
  --lp-success-bg: #f0fdf4;
  --lp-success-border: #bbf7d0;
  --lp-warn: #f59e0b;
  --lp-warn-bg: #fffbeb;
  --lp-warn-border: #fde68a;
  --lp-err: #dc2626;
  --lp-err-bg: #fef2f2;
  --lp-err-border: #fecaca;
  --lp-info: #0ea5e9;
  --lp-info-bg: #f0f9ff;
  --lp-info-border: #bae6fd;

  /* Hero gradient — slate → teal */
  --lp-hero-gradient: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #134e4a 100%);
  --lp-section-dark-gradient: linear-gradient(160deg, #0f172a, #134e4a);
  --lp-feature-icon-gradient: linear-gradient(135deg, #f0fdfa, #ccfbf1);

  /* Layout — sjednoceno s app po přihlášení (--app-content-max: 1800px / width 90%) */
  --lp-container: 1800px;
  --lp-container-narrow: 920px;
  --lp-container-wide: 1800px;
  --lp-radius-sm: 6px;
  --lp-radius: 10px;
  --lp-radius-lg: 12px;
  --lp-radius-xl: 16px;
  --lp-radius-pill: 999px;

  /* Shadows */
  --lp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --lp-shadow: 0 4px 16px rgba(13, 148, 136, 0.10);
  --lp-shadow-lg: 0 10px 30px rgba(13, 148, 136, 0.18);
  --lp-shadow-card: 0 2px 8px rgba(15, 23, 42, 0.05);
  --lp-shadow-card-hover: 0 8px 28px rgba(15, 23, 42, 0.10);

  /* Transitions */
  --lp-t-fast: 0.15s ease;
  --lp-t: 0.2s ease;
  --lp-t-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Typography */
  --lp-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --lp-font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;
}

/* ===========================================================================
   2. FONTS — Inter (self-hosted, swap)
   =========================================================================== */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/Inter/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/Inter/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/Inter/Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/Inter/Inter-ExtraBold.woff2') format('woff2');
}

/* ===========================================================================
   3. RESETS + BASE
   =========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

.lp {
  margin: 0;
  font-family: var(--lp-font);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.65;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Žádné overflow-x — rozbíjí sticky navbar (.lp-nav).
     Mobilní menu (.lp-nav-menu) používá right: -100% místo transform pro skrytí
     offscreen, takže nepřispívá k horizontálnímu scrollu. */
}

/* iOS PWA — viewport-fit=cover vyžaduje safe-area-inset pro notch + rounded corners */
.lp .lp-w {
  padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
}
@media (max-width: 600px) {
  .lp .lp-w {
    width: 100%;
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }
}

.lp h1,
.lp h2,
.lp h3,
.lp h4,
.lp h5,
.lp h6 {
  font-family: var(--lp-font);
  color: var(--lp-h2);
  margin: 0 0 0.65em;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.lp h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.lp h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
}

.lp h4 {
  font-size: 1rem;
  font-weight: 700;
}

.lp p {
  margin: 0 0 1em;
}

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

.lp a:hover {
  color: var(--lp-primary-d);
}

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

.lp ul,
.lp ol {
  margin: 0 0 1em;
  padding-left: 1.25em;
}

.lp ul li,
.lp ol li {
  margin-bottom: 0.35em;
}

.lp code {
  font-family: var(--lp-font-mono);
  font-size: 0.9em;
  background: var(--lp-bg-soft);
  padding: 0.15em 0.4em;
  border-radius: var(--lp-radius-sm);
  color: var(--lp-primary-d);
}

.lp main {
  display: block;
  min-height: 60vh;
}

.lp :focus-visible {
  outline: 3px solid var(--lp-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===========================================================================
   4. SKIP LINK + CONTAINER + UTILITY
   =========================================================================== */

.lp-skip {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--lp-h2);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 var(--lp-radius) 0;
  text-decoration: none;
  transition: top var(--lp-t);
}

.lp-skip:focus {
  top: 0;
  color: #fff;
  outline: 3px solid var(--lp-accent);
  outline-offset: 0;
}

.lp-w {
  width: 90%;
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.lp-w--narrow {
  max-width: var(--lp-container-narrow);
}

.lp-w--wide {
  max-width: var(--lp-container-wide);
}

.lp-text-center {
  text-align: center;
}

.lp-text-muted {
  color: var(--lp-muted);
}

.lp-mb-0 { margin-bottom: 0; }
.lp-mb-1 { margin-bottom: 0.5rem; }
.lp-mb-2 { margin-bottom: 1rem; }
.lp-mb-3 { margin-bottom: 1.5rem; }
.lp-mb-4 { margin-bottom: 2rem; }
.lp-mt-1 { margin-top: 0.5rem; }
.lp-mt-2 { margin-top: 1rem; }
.lp-mt-3 { margin-top: 1.5rem; }
.lp-mt-4 { margin-top: 2rem; }

.lp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===========================================================================
   5. NAVIGATION
   =========================================================================== */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1a2035;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Embed režim — dokument načtený v iframu (modal při registraci):
   hlavička bez klikatelné navigace, jen logo + název dokumentu. */
.lp-nav--embed .lp-nav-inner {
  justify-content: flex-start;
  gap: 0.85rem;
}
.lp-nav-embed-doc {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.95rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.lp-footer--embed {
  background: #1a2035;
  padding: 0.9rem 0;
  text-align: center;
}
.lp-footer--embed p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

/* Malá bílá mezera mezi navbarem a hero — odděluje barevně podobné tmavé sekce. */
.lp main {
  margin-top: 2px;
}

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

.lp-nav-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.lp-nav-brand img {
  height: 35.2px;
  width: auto;
}

.lp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: var(--lp-radius-sm);
}

.lp-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform var(--lp-t), opacity var(--lp-t);
  transform-origin: center;
}

.lp-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.lp-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobilní rychlé akce vedle hamburgeru — Přihlásit + Registrace.
   Skryté na desktopu, zobrazí se ≤768px (viz media query). */
.lp-nav-m {
  display: none;
  align-items: center;
  gap: 0.45rem;
}
.lp-nav-m__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--lp-radius-sm);
  text-decoration: none;
  flex-shrink: 0;
}
.lp-nav-m__btn svg {
  width: 20px;
  height: 20px;
}
.lp-nav-m__btn--login {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.lp-nav-m__btn--register {
  color: #ffffff;
  background: var(--lp-primary);
}

.lp-nav-menu {
  display: flex;
  align-items: center;
}

.lp-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

/* "Domů" link — viditelný jen v mobile menu (na desktopu slouží jako návrat brand logo vlevo) */
.lp-nav-home-li {
  display: none;
}

.lp-nav-list > li {
  position: relative;
  margin: 0;
}

.lp-nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: background var(--lp-t), color var(--lp-t);
}

.lp-nav-list > li > a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.lp-nav-has-sub > a span {
  font-size: 0.7rem;
  margin-left: 0.1rem;
  transition: transform var(--lp-t);
}

.lp-nav-has-sub:hover > a span,
.lp-nav-has-sub:focus-within > a span {
  transform: rotate(180deg);
}

.lp-nav-sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--lp-t), visibility var(--lp-t), transform var(--lp-t);
  z-index: 110;
}

.lp-nav-has-sub:hover > .lp-nav-sub,
.lp-nav-has-sub:focus-within > .lp-nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lp-nav-sub li {
  margin: 0;
}

.lp-nav-sub a {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lp-text);
  border-radius: 8px;
  transition: background var(--lp-t), color var(--lp-t);
}

.lp-nav-sub a:hover {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
}

.lp-nav-cta-li {
  margin-left: 0.65rem;
}

/* ===========================================================================
   6. BUTTONS
   =========================================================================== */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.6rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.005em;
  border-radius: var(--lp-radius);
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--lp-text);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--lp-t), color var(--lp-t), border-color var(--lp-t),
              transform var(--lp-t), box-shadow var(--lp-t);
  white-space: nowrap;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn:active {
  transform: translateY(0);
}

.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  border-color: var(--lp-primary);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}

.lp-btn--primary:hover {
  background: var(--lp-primary-d);
  border-color: var(--lp-primary-d);
  color: #fff;
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.35);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}

.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.lp-btn--white {
  background: #fff;
  color: var(--lp-h2);
  border-color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.lp-btn--white:hover {
  background: var(--lp-bg-alt);
  color: var(--lp-h2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}

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

.lp-btn--outline:hover {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: var(--lp-primary-d);
}

.lp-btn--dark {
  background: var(--lp-h2);
  color: #fff;
  border-color: var(--lp-h2);
}

.lp-btn--dark:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

.lp-btn--sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
  border-radius: 8px;
}

/* Navbar CTA pair: Přihlásit (outline) + Registrace (primary) — stejná velikost,
   konzistentní styling pro tmavý navbar (slate). */
.lp-nav-list > li > a.lp-btn--sm {
  min-width: 116px;
  text-align: center;
  justify-content: center;
}
/* Outline tlačítko v tmavém navbaru — bílý border + bílý text */
.lp-nav-list > li > a.lp-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.lp-nav-list > li > a.lp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.lp-btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 1.02rem;
}

.lp-btn--block {
  width: 100%;
}

.lp-btn[disabled],
.lp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

/* ===========================================================================
   7. CARDS
   =========================================================================== */

.lp-card {
  position: relative;
  padding: 1.6rem 1.5rem;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: var(--lp-shadow-card);
  transition: transform var(--lp-t), box-shadow var(--lp-t), border-color var(--lp-t);
}

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

.lp-card--bordered {
  box-shadow: none;
  border: 1px solid var(--lp-border);
}

.lp-card--bordered:hover {
  box-shadow: 0 4px 18px rgba(13, 148, 136, 0.08);
}

.lp-card--elevated {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.lp-card--elevated:hover {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.14);
}

.lp-card--dark {
  background: var(--lp-bg-dark);
  color: var(--lp-text-on-dark);
  border: 1px solid var(--lp-border-dark);
  box-shadow: none;
}

.lp-card--dark h3,
.lp-card--dark h4 {
  color: #fff;
}

.lp-card--dark p {
  color: var(--lp-muted-on-dark);
}

.lp-card--dark:hover {
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.20);
}

.lp-card--gradient {
  background: var(--lp-feature-icon-gradient);
  border: 1px solid #ccfbf1;
}

.lp-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--lp-h2);
}

.lp-card p {
  font-size: 0.93rem;
  color: var(--lp-muted);
  margin: 0 0 0.6rem;
  line-height: 1.6;
}

.lp-card p:last-child {
  margin-bottom: 0;
}

.lp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-radius);
  background: var(--lp-feature-icon-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--lp-primary-d);
}

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

/* ===========================================================================
   8. GRID
   =========================================================================== */

.lp-grid {
  display: grid;
  gap: 1.25rem;
}

.lp-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

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

.lp-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.lp-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.lp-grid--auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.lp-grid--auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.lp-grid--gap-sm {
  gap: 0.75rem;
}

.lp-grid--gap-lg {
  gap: 2rem;
}

/* ===========================================================================
   9. SECTIONS
   =========================================================================== */

.lp-section {
  padding: 6rem 0;
  position: relative;
}

.lp-section--white {
  background: var(--lp-bg);
}

.lp-section--alt {
  background: var(--lp-bg-alt);
}

.lp-section--soft {
  background: var(--lp-bg-soft);
}

.lp-section--dark {
  background: var(--lp-section-dark-gradient);
  color: var(--lp-text-on-dark);
}

.lp-section--dark h2,
.lp-section--dark h3 {
  color: #fff;
}

.lp-section--dark p {
  color: var(--lp-muted-on-dark);
}

.lp-section--gradient {
  background: var(--lp-hero-gradient);
  color: var(--lp-text-on-dark);
}

.lp-section--gradient h2,
.lp-section--gradient h3 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.lp-section--narrow {
  padding: 3.5rem 0;
}

.lp-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.lp-section--has-sub h2 {
  margin-bottom: 0.75rem;
}

.lp-section-sub {
  text-align: center;
  font-size: 1.02rem;
  color: var(--lp-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.lp-section--dark .lp-section-sub,
.lp-section--gradient .lp-section-sub {
  color: var(--lp-muted-on-dark);
}

.lp-section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-primary-d);
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.8rem;
  background: var(--lp-bg-teal-soft);
  border-radius: var(--lp-radius-pill);
}

/* ===========================================================================
   10. HERO
   =========================================================================== */

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  color: #fff;
}

.lp-hero--home,
.lp-hero--module {
  background: var(--lp-hero-gradient);
  padding: 5.5rem 0; /* symetrické — fallback pro low-specificity rule */
}

.lp-hero--simple {
  background: var(--lp-bg-alt);
  color: var(--lp-text);
  padding: 4rem 0 3rem;
}

.lp-hero--simple h1 {
  color: var(--lp-h2) !important; /* override hero h1 white */
}

.lp-hero--simple .lp-hero-sub {
  color: var(--lp-muted);
}

.lp-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.10), transparent 70%);
  top: -250px;
  right: -150px;
  pointer-events: none;
}

.lp-hero--home::after,
.lp-hero--module::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12), transparent 70%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

.lp-hero--simple::before,
.lp-hero--simple::after {
  display: none;
}

.lp-hero-inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

.lp-hero-text {
  flex: 1 1 auto;
  min-width: 280px;
}

.lp-hero-pill {
  display: inline-block;
  padding: 0.4rem 1.05rem;
  border-radius: var(--lp-radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.lp-hero--simple .lp-hero-pill {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: #ccfbf1;
}

.lp-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.18;
  font-weight: 800;
  margin: 0 0 1.1rem;
  color: #fff !important;
  letter-spacing: -0.025em;
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--lp-accent);
}

.lp-hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.lp-hero-nums {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.lp-hero-num {
  min-width: 100px;
}

.lp-hero-num span {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lp-hero-num small {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-top: 0.3rem;
  display: block;
  letter-spacing: 0.01em;
}

.lp-hero--simple .lp-hero-num span {
  color: var(--lp-primary-d);
}

.lp-hero--simple .lp-hero-num small {
  color: var(--lp-muted);
}

.lp-hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lp-hero-visual {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero-visual svg,
.lp-hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.30));
}

/* ===========================================================================
   11. STAT / TRUST
   =========================================================================== */

.lp-stat {
  text-align: center;
}

.lp-stat-num {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--lp-primary-d);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.lp-stat-label {
  font-size: 0.92rem;
  color: var(--lp-muted);
  margin-top: 0.4rem;
}

.lp-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.lp-trust-card {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  transition: border-color var(--lp-t), transform var(--lp-t), box-shadow var(--lp-t);
}

.lp-trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.08);
}

.lp-trust-num {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--lp-primary-d);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-trust-card p {
  font-size: 0.92rem;
  color: var(--lp-muted);
  margin: 0.45rem 0 0;
  line-height: 1.55;
}

.lp-trust-src {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 0.55rem;
  display: block;
}

/* ===========================================================================
   12. FEATURE CARDS
   =========================================================================== */

.lp-feature {
  position: relative;
  padding: 1.65rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  transition: border-color var(--lp-t), transform var(--lp-t), box-shadow var(--lp-t);
  display: flex;
  flex-direction: column;
}

.lp-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.10);
}

.lp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-radius);
  background: var(--lp-feature-icon-gradient);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary-d);
  margin-bottom: 0.95rem;
}

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

.lp-feature h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--lp-h2);
}

.lp-feature p {
  font-size: 0.92rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.6;
  flex: 1 1 auto;
}

.lp-feature--linked {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.lp-feature--linked:hover {
  color: inherit;
}

.lp-feature-arrow {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-bg-teal-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary-d);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--lp-t), transform var(--lp-t);
}

.lp-feature--linked:hover .lp-feature-arrow {
  opacity: 1;
  transform: translateX(0);
}

.lp-feature-arrow svg {
  width: 14px;
  height: 14px;
}

/* ===========================================================================
   13. FLOW / WORKFLOW
   =========================================================================== */

.lp-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  counter-reset: lpflow;
}

.lp-flow-item {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 240px;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  counter-increment: lpflow;
}

.lp-flow-item::after {
  content: '';
  position: absolute;
  top: 18px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--lp-primary), transparent);
}

.lp-flow-item:last-child::after {
  display: none;
}

.lp-flow-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.30);
}

.lp-flow-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--lp-h2);
}

.lp-flow-item p {
  font-size: 0.85rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.5;
}

.lp-section--dark .lp-flow-item h3,
.lp-section--gradient .lp-flow-item h3 {
  color: #fff;
}

.lp-section--dark .lp-flow-item p,
.lp-section--gradient .lp-flow-item p {
  color: var(--lp-muted-on-dark);
}

/* ===========================================================================
   14. COMPARISON
   =========================================================================== */

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

.lp-cmp-card {
  padding: 1.75rem 1.6rem;
  border-radius: var(--lp-radius-lg);
}

.lp-cmp--old {
  background: var(--lp-err-bg);
  border: 1px solid var(--lp-err-border);
}

.lp-cmp--old h3 {
  color: #991b1b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-cmp--new {
  background: var(--lp-success-bg);
  border: 1px solid var(--lp-success-border);
}

.lp-cmp--new h3 {
  color: #166534;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lp-cmp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #475569;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.lp-cmp-row:last-child {
  border-bottom: none;
}

.lp-cmp-row b {
  color: var(--lp-h2);
  font-weight: 700;
  flex-shrink: 0;
}

.lp-cmp--old .lp-cmp-row b {
  color: #991b1b;
}

.lp-cmp--new .lp-cmp-row b {
  color: #166534;
}

/* ===========================================================================
   15. HIGHLIGHT BOX
   =========================================================================== */

.lp-hl {
  background: linear-gradient(160deg, #1e293b, #334155);
  border-radius: var(--lp-radius-lg);
  padding: 2rem 1.85rem;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
  color: #fff;
}

.lp-hl-card {
  padding: 0.5rem 0;
}

.lp-hl b,
.lp-hl-num {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--lp-accent);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.lp-hl small,
.lp-hl-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  line-height: 1.45;
}

/* ===========================================================================
   16. TABLE
   =========================================================================== */

.lp-tbl-wrap {
  overflow-x: auto;
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lp-tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--lp-radius-lg);
  overflow: hidden;
  background: #fff;
}

.lp-tbl th {
  padding: 0.85rem 1.1rem;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: #1e293b;
}

.lp-tbl td {
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
  color: var(--lp-text);
  border-bottom: 1px solid var(--lp-border-soft);
}

.lp-tbl tr:last-child td {
  border-bottom: none;
}

.lp-tbl tr:nth-child(even) td {
  background: #fafbfc;
}

.lp-tbl .v {
  font-weight: 700;
  color: var(--lp-primary-d);
  text-align: right;
  white-space: nowrap;
}

.lp-tbl-caption {
  caption-side: bottom;
  text-align: left;
  font-size: 0.8rem;
  color: var(--lp-muted);
  padding: 0.75rem 0;
}

/* ===========================================================================
   17. FAQ ACCORDION
   =========================================================================== */

.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 820px;
  margin: 0 auto;
}

.lp-faq-item {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  transition: border-color var(--lp-t), box-shadow var(--lp-t);
  overflow: hidden;
}

.lp-faq-item:hover {
  border-color: #cbd5e1;
}

.lp-faq-open {
  border-color: var(--lp-primary);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.08);
}

.lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lp-h2);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--lp-t);
}

.lp-faq-q:hover {
  color: var(--lp-primary-d);
}

.lp-faq-q:focus-visible {
  outline: 2px solid var(--lp-primary);
  outline-offset: -2px;
}

.lp-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform var(--lp-t), background var(--lp-t), color var(--lp-t);
}

.lp-faq-open .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--lp-primary);
  color: #fff;
}

.lp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--lp-t-slow), padding var(--lp-t);
  padding: 0 1.4rem;
}

.lp-faq-open .lp-faq-a {
  padding: 0 1.4rem 1.2rem;
}

.lp-faq-a p {
  font-size: 0.95rem;
  color: var(--lp-muted);
  line-height: 1.65;
  margin: 0 0 0.65em;
}

.lp-faq-a p:last-child {
  margin-bottom: 0;
}

/* ===========================================================================
   18. TABS
   =========================================================================== */

.lp-tabs {
  margin: 0;
}

.lp-tabs-list {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0.4rem;
  margin: 0 0 1.5rem;
  background: var(--lp-bg-soft);
  border-radius: var(--lp-radius);
  border: 1px solid var(--lp-border);
}

.lp-tabs-tab {
  padding: 0.6rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--lp-t), color var(--lp-t);
  white-space: nowrap;
}

.lp-tabs-tab:hover {
  color: var(--lp-text);
  background: rgba(255, 255, 255, 0.5);
}

.lp-tabs-tab--active {
  background: #fff;
  color: var(--lp-primary-d);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.lp-tabs-panel {
  display: none;
}

.lp-tabs-panel--active {
  display: block;
}

/* ===========================================================================
   19. SCREENSHOT FRAMES
   =========================================================================== */

.lp-screenshot {
  position: relative;
  background: #1e293b;
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.lp-screenshot img,
.lp-screenshot video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.lp-screenshot--desktop {
  border-radius: 14px;
  padding-top: 32px;
}

.lp-screenshot--desktop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: #0f172a;
  border-radius: 14px 14px 0 0;
}

.lp-screenshot--desktop::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow:
    14px 0 0 #f59e0b,
    28px 0 0 #16a34a;
}

.lp-screenshot--mobile {
  max-width: 320px;
  border-radius: 28px;
  padding: 12px;
  background: #0f172a;
}

.lp-screenshot--mobile img {
  border-radius: 18px;
}

.lp-screenshot--mobile::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #1e293b;
  border-radius: 2px;
  z-index: 2;
}

.lp-screenshot-caption {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--lp-muted);
  margin-top: 0.85rem;
}

/* ===========================================================================
   20. TOC STICKY
   =========================================================================== */

.lp-toc {
  position: sticky;
  top: 88px;
  max-height: 70vh;
  overflow-y: auto;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
}

.lp-toc h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lp-muted);
  margin: 0 0 0.85rem;
}

.lp-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lp-toc li {
  margin: 0;
}

.lp-toc a {
  display: block;
  padding: 0.45rem 0.6rem;
  font-size: 0.88rem;
  color: var(--lp-muted);
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition: background var(--lp-t), color var(--lp-t), border-color var(--lp-t);
}

.lp-toc a:hover {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
}

.lp-toc-active,
.lp-toc a.lp-toc-active {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  font-weight: 600;
  border-left-color: var(--lp-primary);
}

/* ===========================================================================
   21. PROMO STRIP
   =========================================================================== */

.lp-promo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(90deg, var(--lp-promo-c, #0d9488), var(--lp-promo-c2, #14b8a6));
  color: #fff;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--lp-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-promo-text {
  font-size: 0.95rem;
  font-weight: 600;
  flex: 1 1 auto;
  text-align: center;
}

.lp-promo-text b {
  font-weight: 800;
}

.lp-promo a.lp-promo-btn,
.lp-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.05rem;
  background: #fff;
  color: var(--lp-promo-c, var(--lp-primary-d)) !important;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--lp-radius);
  text-decoration: none;
  transition: transform var(--lp-t), box-shadow var(--lp-t);
}

.lp-promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}

/* ===========================================================================
   22. PILL + ALERT
   =========================================================================== */

.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--lp-radius-pill);
  background: var(--lp-bg-soft);
  color: var(--lp-muted);
  border: 1px solid transparent;
}

.lp-pill--primary {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: #ccfbf1;
}

.lp-pill--success {
  background: var(--lp-success-bg);
  color: #166534;
  border-color: var(--lp-success-border);
}

.lp-pill--warn {
  background: var(--lp-warn-bg);
  color: #92400e;
  border-color: var(--lp-warn-border);
}

.lp-pill--err {
  background: var(--lp-err-bg);
  color: #991b1b;
  border-color: var(--lp-err-border);
}

.lp-pill--info {
  background: var(--lp-info-bg);
  color: #075985;
  border-color: var(--lp-info-border);
}

.lp-pill--dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}

.lp-alert {
  padding: 1rem 1.2rem;
  border-radius: var(--lp-radius);
  font-size: 0.95rem;
  border: 1px solid var(--lp-border);
  background: var(--lp-bg-alt);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.lp-alert--success {
  background: var(--lp-success-bg);
  border-color: var(--lp-success-border);
  color: #166534;
}

.lp-alert--error {
  background: var(--lp-err-bg);
  border-color: var(--lp-err-border);
  color: #991b1b;
}

.lp-alert--warn {
  background: var(--lp-warn-bg);
  border-color: var(--lp-warn-border);
  color: #92400e;
}

.lp-alert--info {
  background: var(--lp-info-bg);
  border-color: var(--lp-info-border);
  color: #075985;
}

.lp-alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
}

/* ===========================================================================
   23. FORM + CHECKLIST
   =========================================================================== */

.lp-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 540px;
}

.lp-form--wide {
  max-width: 720px;
}

.lp-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lp-muted);
  margin-bottom: 0.35rem;
  letter-spacing: 0.005em;
}

.lp-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.lp-form input[type="text"],
.lp-form input[type="email"],
.lp-form input[type="tel"],
.lp-form input[type="url"],
.lp-form input[type="number"],
.lp-form input[type="password"],
.lp-form select,
.lp-form textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--lp-text);
  background: #fff;
  border: 1.5px solid var(--lp-border);
  border-radius: 8px;
  transition: border-color var(--lp-t), box-shadow var(--lp-t);
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
  outline: none;
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.10);
}

.lp-form textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.lp-form-help {
  font-size: 0.8rem;
  color: var(--lp-muted);
  margin-top: 0.2rem;
}

.lp-form-error {
  font-size: 0.82rem;
  color: var(--lp-err);
  margin-top: 0.2rem;
  font-weight: 600;
}

.lp-form input.lp-input-error,
.lp-form textarea.lp-input-error {
  border-color: var(--lp-err);
}

.lp-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--lp-text);
  cursor: pointer;
  line-height: 1.45;
}

.lp-checkbox input[type="checkbox"],
.lp-checkbox input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--lp-primary);
  flex-shrink: 0;
}

.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-checklist li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.95rem;
  color: var(--lp-text);
  line-height: 1.55;
  margin: 0;
}

.lp-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lp-bg-teal-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-checklist--err li::before {
  background: var(--lp-err-bg);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23991b1b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
}

/* CTA section convenience */
.lp-cta {
  text-align: center;
}

.lp-cta-btns {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===========================================================================
   24. FOOTER
   =========================================================================== */

.lp-footer {
  background: var(--lp-bg-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

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

.lp-footer-brand {
  max-width: 320px;
}

.lp-footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.lp-footer-brand p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.65;
}

.lp-footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 1.05rem;
}

.lp-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lp-footer-col li {
  margin: 0;
}

.lp-footer-col a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--lp-t);
}

.lp-footer-col a:hover {
  color: var(--lp-accent);
}

.lp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.lp-footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.lp-footer-bottom a:hover {
  color: var(--lp-accent);
}

.lp-footer-social {
  display: inline-flex;
  gap: 0.5rem;
}

.lp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--lp-t), transform var(--lp-t);
}

.lp-footer-social a:hover {
  background: var(--lp-primary);
  transform: translateY(-2px);
}

.lp-footer-social svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.lp-footer-social a:hover svg {
  color: #fff;
}

/* ===========================================================================
   25. ANIMATIONS
   =========================================================================== */

.lp-fade-in {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.lp-slide-up {
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.lp-fade-in-delay-1 { transition-delay: 0.1s; }
.lp-fade-in-delay-2 { transition-delay: 0.2s; }
.lp-fade-in-delay-3 { transition-delay: 0.3s; }
.lp-fade-in-delay-4 { transition-delay: 0.4s; }

@keyframes lp-bounce-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes lp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

@keyframes lp-fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.lp-anim-bounce {
  animation: lp-bounce-soft 4s ease-in-out infinite;
}

.lp-anim-pulse {
  animation: lp-pulse 3s ease-in-out infinite;
}

/* Hero visual signature path animation */
@keyframes lp-draw-signature {
  to { stroke-dashoffset: 0; }
}

.lp-hero-signature path {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: lp-draw-signature 3s ease-out 0.5s forwards;
}

/* ===========================================================================
   26. RESPONSIVE BREAKPOINTS
   =========================================================================== */

/* Tablet & smaller desktop */
@media (max-width: 1024px) {
  .lp-section {
    padding: 5rem 0;
  }

  .lp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .lp-footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* Tablet portrait + hamburger */
@media (max-width: 768px) {
  .lp-section {
    padding: 4rem 0;
  }

  .lp-section--narrow {
    padding: 3rem 0;
  }

  .lp-grid--3,
  .lp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-grid--2 {
    grid-template-columns: 1fr;
  }

  .lp-cmp {
    grid-template-columns: 1fr;
  }

  .lp-hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .lp-hero-text {
    min-width: 0;
    width: 100%;
  }

  .lp-hero-nums,
  .lp-hero-cta {
    justify-content: center;
  }

  .lp-hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .lp-hero-visual {
    flex: 0 0 auto;
    max-width: 280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }

  /* Hide visual on tablets (per spec under 820px) */
  .lp-hero-visual--mobile-hide {
    display: none;
  }

  /* ── MOBILE NAV — fullscreen modal panel (≤768px) ───────────────────────
     Pattern: opacity-based modal overlay s pointer-events toggle.
     - Žádný transform/right offset → nepřispívá k horizontálnímu scrollu
     - Plný viewport (top:0 right:0 bottom:0 left:0) → snadná čitelnost
     - z-index: 200 nad sticky navbar (z-index: 100) → překryje i nav
     - Toggle přes .lp-nav-open třídu (přidanou JS) */
  .lp-nav-toggle {
    display: inline-flex !important;
    position: relative;
    z-index: 201; /* nad menu — hamburger se zachovává klikatelný i při otevření */
  }

  /* Rychlé akce Přihlásit + Registrace vedle hamburgeru (jen mobil) */
  .lp-nav-m {
    display: flex;
  }

  .lp-nav-menu {
    /* SKRYTÝ STAV — pointer-events:none + opacity:0 + visibility:hidden.
       Element zůstává v DOMu na pozici inset:0, ale je neviditelný a neinteraktivní.
       Žádný transform = žádný horizontal scroll bug. */
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important; /* dynamic viewport unit — bez safari toolbar issue */
    max-width: 100vw !important;
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5rem 1.5rem 2rem; /* 5rem top — prostor pro hamburger + close */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    display: block !important;
  }

  .lp-nav-menu.lp-nav-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0s linear 0s;
  }

  .lp-nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.25rem !important;
    width: 100% !important;
    max-width: 480px;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none;
  }

  .lp-nav-list > li {
    width: 100%;
    display: block;
    margin: 0;
  }

  /* Aktivovat "Domů" link v mobile menu */
  .lp-nav-home-li {
    display: block !important;
  }

  /* Hlavní položky — kartová podoba s viditelným pozadím a borderem */
  .lp-nav-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    width: 100%;
    padding: 1.05rem 1.15rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lp-h2);
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  }
  .lp-nav-list > li > a::after {
    /* šipka indikující navigaci */
    content: '›';
    font-size: 1.4rem;
    line-height: 1;
    color: var(--lp-muted);
    font-weight: 400;
    transition: transform 0.15s, color 0.15s;
  }
  .lp-nav-list > li > a:hover,
  .lp-nav-list > li > a:active {
    background: var(--lp-bg-teal-soft);
    color: var(--lp-primary-d);
    border-color: rgba(13, 148, 136, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.10);
  }
  .lp-nav-list > li > a:hover::after,
  .lp-nav-list > li > a:active::after {
    color: var(--lp-primary);
    transform: translateX(3px);
  }

  /* Domů — výrazný akcent (ikona domu před textem) */
  .lp-nav-home-li > a {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%) !important;
    border-color: rgba(13, 148, 136, 0.20) !important;
    color: var(--lp-primary-d) !important;
    font-weight: 700;
  }
  .lp-nav-home-li > a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12l9-9 9 9M5 10v10a1 1 0 001 1h4v-7h4v7h4a1 1 0 001-1V10'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 12l9-9 9 9M5 10v10a1 1 0 001 1h4v-7h4v7h4a1 1 0 001-1V10'/></svg>") no-repeat center / contain;
    flex-shrink: 0;
  }

  /* Funkce ▾ — větší vizuální váha, indikuje že má submenu */
  .lp-nav-has-sub > a {
    font-weight: 700;
    color: var(--lp-primary-d) !important;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-color: rgba(13, 148, 136, 0.18);
  }
  .lp-nav-has-sub > a::after {
    content: '▾';
    font-size: 0.95rem;
    color: var(--lp-primary);
  }

  /* Submenu — viditelný oddělený box s odsazením a teal levým borderem */
  .lp-nav-sub {
    position: static !important;
    display: flex !important;
    flex-direction: column;
    gap: 0.2rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: var(--lp-bg-soft) !important;
    border: 1px solid var(--lp-border) !important;
    border-left: 3px solid var(--lp-primary) !important;
    margin: 0.4rem 0 0.5rem 0.65rem !important;
    padding: 0.5rem !important;
    border-radius: 0 10px 10px 0;
    list-style: none;
    width: calc(100% - 0.65rem);
  }
  .lp-nav-sub li {
    display: block;
    width: 100%;
    margin: 0;
  }
  .lp-nav-sub a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.7rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--lp-text);
    background: transparent;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
  }
  .lp-nav-sub a::before {
    content: '·';
    margin-right: 0.55rem;
    color: var(--lp-primary);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 0;
  }
  .lp-nav-sub a:hover,
  .lp-nav-sub a:active {
    background: #fff;
    color: var(--lp-primary-d);
    padding-left: 1.05rem;
  }

  /* CTA Přihlásit — outline button styl */
  .lp-nav-list > li:has(a.lp-btn--outline) > a,
  .lp-nav-list > li > a.lp-btn--outline {
    background: transparent;
    border: 2px solid var(--lp-primary);
    color: var(--lp-primary-d) !important;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    box-shadow: none;
  }
  .lp-nav-list > li > a.lp-btn--outline::after {
    display: none;
  }
  .lp-nav-list > li > a.lp-btn--outline:hover {
    background: var(--lp-bg-teal-soft);
    transform: translateY(-1px);
  }

  /* CTA Registrace — primary fill button */
  .lp-nav-cta-li {
    margin-top: 1.25rem !important;
    margin-left: 0;
    padding-top: 1rem;
    border-top: 1px dashed var(--lp-border);
  }
  .lp-nav-list > li.lp-nav-cta-li > a {
    background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-d) 100%) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.30);
  }
  .lp-nav-list > li.lp-nav-cta-li > a::after {
    color: rgba(255, 255, 255, 0.85);
  }
  .lp-nav-list > li.lp-nav-cta-li > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 148, 136, 0.40);
  }

  .lp-flow {
    flex-direction: column;
    align-items: center;
  }

  .lp-flow-item {
    max-width: 380px;
    margin-bottom: 1.25rem;
  }

  .lp-flow-item::after {
    display: none;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Phone landscape */
@media (max-width: 640px) {
  body.lp {
    font-size: 1rem;
  }

  .lp-section {
    padding: 3.5rem 0;
  }

  .lp-w {
    padding: 0 1.1rem;
  }

  .lp-hero {
    padding: 3.5rem 0;
  }

  .lp-hero--home,
  .lp-hero--module {
    padding: 4rem 0; /* SYMETRICKÉ — stejné nahoře i dole na mobilu */
    min-height: 480px;
    align-items: flex-start; /* top-anchored — pill+H1 vždy na stejné Y na mobilu */
  }

  .lp-grid--3,
  .lp-grid--4 {
    grid-template-columns: 1fr;
  }

  .lp-grid {
    gap: 1rem;
  }

  .lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .lp-footer {
    padding: 3rem 0 1.5rem;
  }

  .lp-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .lp-form-row--inline {
    grid-template-columns: 1fr;
  }

  .lp-hl {
    padding: 1.5rem;
    gap: 1.1rem;
  }

  .lp-cmp-card {
    padding: 1.35rem 1.2rem;
  }

  .lp-promo {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
  }

  .lp-tabs-list {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .lp-tabs-tab {
    flex-shrink: 0;
  }
}

/* Mid-phone */
@media (max-width: 600px) {
  .lp-hero h1,
  .lp .lp-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.4rem) !important;
  }

  .lp-hero-nums {
    gap: 1.35rem;
    margin-bottom: 1.5rem;
  }

  .lp-hero-cta {
    flex-direction: column;
    gap: 0.6rem;
  }

  .lp-hero-cta .lp-btn {
    width: 100%;
  }

  .lp-card,
  .lp-feature,
  .lp-trust-card {
    padding: 1.35rem 1.2rem;
  }

  .lp-faq-q {
    padding: 0.95rem 1.1rem;
    font-size: 0.95rem;
  }

  .lp-faq-a {
    padding: 0 1.1rem;
  }

  .lp-faq-open .lp-faq-a {
    padding: 0 1.1rem 1rem;
  }
}

/* Small phone */
@media (max-width: 480px) {
  body.lp {
    font-size: 0.95rem;
  }

  .lp-section {
    padding: 3rem 0;
  }

  .lp-w {
    padding: 0 1rem;
  }

  .lp-hero {
    padding: 3rem 0 2.5rem;
  }

  .lp-hero h1,
  .lp .lp-hero h1 {
    font-size: clamp(1.55rem, 7vw, 2.1rem) !important;
    margin-bottom: 0.85rem;
  }

  .lp-hero-sub {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .lp-section-sub {
    margin-bottom: 2rem;
    font-size: 0.95rem;
  }

  .lp-btn {
    padding: 0.75rem 1.3rem;
    font-size: 0.92rem;
  }

  .lp-btn--lg {
    padding: 0.95rem 1.7rem;
    font-size: 0.98rem;
  }

  .lp-card-icon,
  .lp-feature-icon {
    width: 40px;
    height: 40px;
  }

  .lp-card-icon svg,
  .lp-feature-icon svg {
    width: 20px;
    height: 20px;
  }

  .lp-hl {
    padding: 1.25rem 1rem;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .lp-tbl th,
  .lp-tbl td {
    padding: 0.55rem 0.7rem;
    font-size: 0.85rem;
  }

  .lp-screenshot--desktop {
    padding-top: 24px;
  }

  .lp-screenshot--desktop::before {
    height: 24px;
  }

  .lp-screenshot--desktop::after {
    top: 8px;
  }
}

/* ===========================================================================
   27. PREFERS-REDUCED-MOTION
   =========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lp-fade-in,
  .lp-slide-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lp-anim-bounce,
  .lp-anim-pulse,
  .lp-hero-signature path {
    animation: none !important;
  }

  .lp-btn:hover,
  .lp-card:hover,
  .lp-feature:hover,
  .lp-trust-card:hover {
    transform: none !important;
  }
}

/* ===========================================================================
   PRINT
   =========================================================================== */

@media print {
  .lp-nav,
  .lp-footer,
  .lp-nav-toggle,
  .lp-promo,
  .lp-hero::before,
  .lp-hero::after {
    display: none !important;
  }

  body.lp {
    background: #fff;
    color: #000;
  }

  .lp-hero {
    background: #fff !important;
    color: #000 !important;
    padding: 1rem 0;
  }

  .lp-hero h1,
  .lp-hero-sub {
    color: #000 !important;
  }

  .lp-section {
    padding: 1.5rem 0;
    page-break-inside: avoid;
  }

  .lp-card,
  .lp-feature,
  .lp-trust-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* ── Newsletter footer widget (redesign 2026-05-01 — single inline row) */
.lp-footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.5rem;
}
.lp-footer-newsletter__copy { flex: 1 1 240px; min-width: 220px; }
.lp-footer-newsletter__copy h4 { margin: 0; font-size: 0.88rem; color: #fff; font-weight: 700; line-height: 1.2; }
.lp-footer-newsletter__copy p  { margin: 0.15rem 0 0; font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); line-height: 1.4; }
.lp-footer-newsletter .lp-form--inline {
  display: flex;
  gap: 0.5rem;
  flex: 0 1 auto;
  align-items: stretch;
}
.lp-footer-newsletter .lp-form--inline input[type=email] {
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  font-size: 0.88rem;
  min-width: 240px;
  font-family: inherit;
  color: #0f172a;
}
.lp-footer-newsletter .lp-form--inline input[type=email]::placeholder { color: #94a3b8; }
.lp-footer-newsletter .lp-form--inline input[type=email]:focus {
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}
.lp-footer-newsletter .lp-form--inline button,
.lp-footer-newsletter .lp-btn--primary {
  padding: 0.55rem 1.1rem;
  background: var(--lp-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.lp-footer-newsletter .lp-form--inline button:hover,
.lp-footer-newsletter .lp-btn--primary:hover {
  background: var(--lp-primary-d);
}
.lp-footer-newsletter__legal {
  flex: 1 0 100%;
  margin: 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  order: 99;
}
@media (max-width: 720px) {
  .lp-footer-newsletter { padding: 0.9rem 1rem; gap: 0.55rem; }
  .lp-footer-newsletter__copy { flex: 1 0 100%; }
  .lp-footer-newsletter .lp-form--inline { flex: 1 0 100%; }
  .lp-footer-newsletter .lp-form--inline input[type=email] { min-width: 0; flex: 1; }
}

/* ===========================================================================
   28. SPECIFICITY FIXES — overrides for base reset bleed (2026-05-01)
   ===========================================================================
   Base resets `.lp ul`, `.lp p`, `.lp a`, `.lp img` have specificity (0,1,1)
   which beats single-class component rules (0,1,0). These fixes use compound
   `.lp .lp-X` selectors (0,2,0) to win specificity for components that need
   to override base styles.
   =========================================================================== */

/* Lists — prevent .lp ul padding-left/margin from bleeding into nav, footer, blog */
.lp .lp-nav-list,
.lp .lp-nav-sub,
.lp .lp-nav-menu ul,
.lp .lp-footer-col ul,
.lp .lp-blog-cats,
.lp .lp-checklist,
.lp .lp-toc ul,
.lp .lp-pagination {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Section sub centering — beats .lp p margin: 0 0 1em */
.lp .lp-section-sub {
  margin: 0 auto 3rem;
  max-width: 640px;
  text-align: center;
  font-size: 1.02rem;
  color: var(--lp-muted);
  line-height: 1.7;
}

.lp .lp-section--dark .lp-section-sub,
.lp .lp-section--gradient .lp-section-sub {
  color: var(--lp-muted-on-dark);
}

/* Section padding — consistent across all sections incl. responsive */
.lp .lp-section { padding: 6rem 0; }
@media (max-width: 768px) { .lp .lp-section { padding: 4rem 0; } }
@media (max-width: 480px) { .lp .lp-section { padding: 3rem 0; } }

/* Hero buttons readability — .lp a (0,1,1) was overriding .lp-btn--primary (0,1,0) */
.lp a.lp-btn,
.lp button.lp-btn,
.lp a[class*="lp-btn"],
.lp button[class*="lp-btn"] {
  text-decoration: none;
}

.lp a.lp-btn--primary,
.lp button.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  border-color: var(--lp-primary);
  box-shadow: 0 4px 16px rgba(13, 148, 136, 0.25);
}
.lp a.lp-btn--primary:hover,
.lp button.lp-btn--primary:hover {
  background: var(--lp-primary-d);
  border-color: var(--lp-primary-d);
  color: #fff;
  box-shadow: 0 6px 22px rgba(13, 148, 136, 0.35);
}

.lp a.lp-btn--white,
.lp button.lp-btn--white {
  background: #fff;
  color: var(--lp-h2);
  border-color: #fff;
}
.lp a.lp-btn--white:hover,
.lp button.lp-btn--white:hover {
  background: var(--lp-bg-alt);
  color: var(--lp-h2);
}

.lp a.lp-btn--ghost,
.lp button.lp-btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.18);
}
.lp a.lp-btn--ghost:hover,
.lp button.lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.lp a.lp-btn--outline,
.lp button.lp-btn--outline {
  background: transparent;
  color: var(--lp-primary-d);
  border-color: var(--lp-primary);
}
.lp a.lp-btn--outline:hover,
.lp button.lp-btn--outline:hover {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: var(--lp-primary-d);
}

.lp a.lp-btn--dark,
.lp button.lp-btn--dark {
  background: var(--lp-h2);
  color: #fff;
  border-color: var(--lp-h2);
}
.lp a.lp-btn--dark:hover,
.lp button.lp-btn--dark:hover {
  background: #1e293b;
  border-color: #1e293b;
  color: #fff;
}

/* Logo — explicit size enforcement (was breaking nav layout when too big) */
.lp .lp-nav-brand img {
  height: 44px;
  width: auto;
  max-width: 200px;
}
.lp .lp-footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

/* lp-flow — step cards (redesigned 2026-05-01 — items must always be visible) */
.lp .lp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
@media (max-width: 1280px) { .lp .lp-flow { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) { .lp .lp-flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .lp .lp-flow { grid-template-columns: 1fr; } }

.lp .lp-flow-item {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* override base .lp-flow-item max-width:240px — v gridu musí karta vyplnit cell */
  max-width: none;
  min-width: 0;
  width: auto;
  justify-self: stretch;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.lp .lp-flow-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.10);
  border-color: var(--lp-primary);
}
.lp .lp-flow-item::after { display: none; }
.lp .lp-flow-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-h2);
  margin: 0 0 0.5rem;
}
.lp .lp-flow-item p {
  font-size: 0.92rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.6;
}

/* Comparison grid — explicit responsive grid */
.lp .lp-cmp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .lp .lp-cmp { grid-template-columns: 1fr; }
}

/* Hero CTA buttons — proper gap and wrap */
.lp .lp-hero-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Newsletter widget — relocated to bottom of footer (after copyright) */
.lp .lp-footer-newsletter {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/* ===========================================================================
   PROFESSIONAL POLISH (2026-05-02) — typografická hierarchie, spacing, hover
   =========================================================================== */

/* Hero — silnější vizuální impact (sjednoceno: home a module vypadají identicky)
   ─────────────────────────────────────────────────────────────────────────────
   - align-items: center (content vertikálně vyrovnán s grafickým prvkem vpravo)
   - padding 4rem + min-height 520px → konzistentní výška napříč LP stránkami
   - krize/home s velkým mockem se přirozeně protáhnou nad 520px (zachová rozměry obsahu) */
.lp .lp-hero { padding: 3.5rem 0; }
.lp .lp-hero--home,
.lp .lp-hero--module {
  padding: 4rem 0;
  min-height: 520px;
  display: flex;
  align-items: center; /* text vlevo + visual vpravo zarovnané na vertikální střed */
}

/* Ultra-wide (≥1920px) — větší hero proporcionálně k 1800px obsahu */
@media (min-width: 1920px) {
  .lp .lp-hero--home,
  .lp .lp-hero--module {
    min-height: 600px;
    padding: 5rem 0;
  }
}

/* Phone landscape (height-limited) — hero MUSÍ kolapsovat,
   jinak content nepřečetný v 360-414px výšky */
@media (max-height: 500px) and (orientation: landscape) {
  .lp .lp-hero--home,
  .lp .lp-hero--module {
    min-height: auto;
    padding: 3rem 0;
  }
}
.lp .lp-hero-inner {
  /* text + visual zarovnáno vertikálně na střed (důsledné napříč všemi hero variantami) */
  align-items: center;
}

/* Větší horizontální dech od okrajů — SJEDNOCENĚ napříč navbarem, hero, sekcemi i footerem.
   Container `.lp-w` má max-width 1800px + width 90%, padding přidává vnitřní okraj
   tak, aby obsah nebyl nalepený k hraně .lp-w containeru. */
@media (min-width: 1025px) {
  .lp .lp-w {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (min-width: 1440px) {
  .lp .lp-w {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.lp .lp-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  letter-spacing: -0.028em;
  line-height: 1.1;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.lp .lp-hero-sub {
  font-size: clamp(1.05rem, 1.55vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 2.25rem;
}
.lp .lp-hero-pill {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(94, 234, 212, 0.12);
  border-color: rgba(94, 234, 212, 0.3);
  color: rgba(94, 234, 212, 0.95);
  padding: 0.45rem 1.05rem;
}

/* Sekce — větší vertikální rytmus + lepší typografická hierarchie */
@media (min-width: 1024px) {
  .lp .lp-section { padding: 7rem 0; }
}
.lp .lp-section h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.lp .lp-section-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.65;
  color: var(--lp-muted);
}

/* Eyebrow label nad h2 — diskrétní teal label pro premium feel */
.lp .lp-section > .lp-w > h2:first-child::before {
  /* placeholder; eyebrow lze přidat manuálně přes <span class="lp-eyebrow"> */
}
.lp .lp-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-primary);
  margin-bottom: 0.85rem;
}

/* Module grid 12 karet — fixní 4-sloupce desktop, ne auto-fit (řeší asymetrický last row) */
.lp .lp-grid.lp-grid--auto {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) { .lp .lp-grid.lp-grid--auto { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 768px)  { .lp .lp-grid.lp-grid--auto { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px)  { .lp .lp-grid.lp-grid--auto { grid-template-columns: 1fr; } }

/* Feature cards — premium hover s teal accent
   Layout: icon vlevo + h3 vpravo na první řádce, popis pod tím přes celou šířku */
.lp .lp-feature {
  padding: 1.85rem 1.65rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "desc desc";
  column-gap: 1rem;
  row-gap: 0;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp .lp-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lp-primary), var(--lp-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.lp .lp-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}
.lp .lp-feature:hover::before { transform: scaleX(1); }
.lp .lp-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  background: var(--lp-feature-icon-gradient);
  border: 1px solid #ccfbf1;
  border-radius: 12px;
  grid-area: icon;
  align-self: center;
  flex-shrink: 0;
}
.lp .lp-feature-icon svg { width: 24px; height: 24px; }
.lp .lp-feature h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.012em;
  grid-area: title;
  align-self: center;
  padding-right: 2.5rem;
}
.lp .lp-feature p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0.85rem 0 0;
  grid-area: desc;
}

/* Připravujeme — pill ETA v pravém spodním rohu karty */
.lp .lp-feature--with-eta {
  padding-bottom: 3rem;
}
.lp .lp-feature-eta {
  position: absolute;
  right: 1.65rem;
  bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  margin: 0;
}
/* Mobile (<480px) — pill v normálním flow, vycentrovaná pod popisem */
@media (max-width: 480px) {
  .lp .lp-feature--with-eta {
    padding-bottom: 1.85rem;
  }
  .lp .lp-feature-eta {
    position: static;
    margin-top: 0.6rem;
    align-self: center;
    grid-column: 1 / -1 !important;
    justify-self: center;
  }
}

/* Trust card — větší impact pro statistiky */
.lp .lp-trust { gap: 1.75rem; }
.lp .lp-trust-card {
  padding: 2.2rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp .lp-trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.10);
}
.lp .lp-trust-num {
  font-size: clamp(2.5rem, 4.8vw, 3.4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-primary-d) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.lp .lp-trust-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--lp-text);
  margin: 0 0 0.85rem;
}
.lp .lp-trust-src {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lp-muted);
  background: var(--lp-bg-alt);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--lp-border-soft);
}

/* Comparison cards (papír vs el.) — premium */
.lp .lp-cmp { gap: 1.75rem; margin-top: 0; }
.lp .lp-cmp-card {
  padding: 1.85rem 1.6rem;
  border-radius: 16px;
}
.lp .lp-cmp-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid currentColor;
  border-bottom-color: rgba(0, 0, 0, 0.08);
  letter-spacing: -0.012em;
}
.lp .lp-cmp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.lp .lp-cmp-row strong {
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Calc tabulka — premium look s teal accentem */
.lp .lp-tbl-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--lp-border);
}
.lp .lp-tbl { margin: 0; border: none; }
.lp .lp-tbl thead th {
  background: linear-gradient(135deg, var(--lp-h2) 0%, #1e293b 100%);
  color: #fff;
  padding: 1rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}
.lp .lp-tbl tbody td {
  padding: 0.95rem 1.4rem;
  border-bottom: 1px solid var(--lp-border-soft);
  font-size: 0.95rem;
  color: var(--lp-text);
}
.lp .lp-tbl tbody tr:nth-child(even) { background: var(--lp-bg-alt); }
.lp .lp-tbl tbody tr:hover { background: var(--lp-bg-teal-soft); }
.lp .lp-tbl tbody tr:last-child td {
  background: linear-gradient(135deg, var(--lp-bg-teal-soft) 0%, #ccfbf1 100%);
  font-weight: 800;
  color: var(--lp-primary-d);
  font-size: 1.02rem;
  border-bottom: none;
}
.lp .lp-tbl .v {
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  color: var(--lp-primary-d);
  font-feature-settings: 'tnum' 1;
}

/* Highlight box (525 h / 65 dní / 175 000 Kč) — premium */
.lp .lp-hl {
  margin-top: 2rem;
  padding: 2.25rem 1.75rem;
  background: linear-gradient(135deg, var(--lp-h2) 0%, #1e293b 50%, #134e4a 100%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.lp .lp-hl::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(94, 234, 212, 0.15), transparent 60%);
  pointer-events: none;
}
.lp .lp-hl-card {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lp .lp-hl-num {
  display: block;
  font-size: clamp(1.85rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--lp-accent);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}
.lp .lp-hl-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Větší odsazení mezi h2 a obsahem, když sekce nemá subtitle
   (h2 + .lp-faq / .lp-grid / .lp-flow / .lp-cmp / .lp-tbl-wrap / .lp-trust) */
.lp .lp-section h2 + .lp-faq,
.lp .lp-section h2 + .lp-grid,
.lp .lp-section h2 + .lp-flow,
.lp .lp-section h2 + .lp-cmp,
.lp .lp-section h2 + .lp-tbl-wrap,
.lp .lp-section h2 + .lp-trust,
.lp .lp-section h2 + .lp-card,
.lp .lp-section h2 + .lp-chart-iframe-wrap {
  margin-top: 2.75rem;
}

/* Section note — drobný citační text pod sekcí */
.lp .lp-section-note {
  font-size: 0.78rem;
  color: var(--lp-muted);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.55;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Card 'lp-card' — sjednocení padding + hover */
.lp .lp-card {
  padding: 1.65rem 1.4rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--lp-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.lp .lp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}
.lp .lp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--lp-feature-icon-gradient);
  border: 1px solid #ccfbf1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary-d);
  margin-bottom: 1rem;
}
.lp .lp-card-icon svg { width: 22px; height: 22px; }

/* lp-card-head — wrapper pro icon + h3 (icon vlevo, titul vpravo) */
.lp .lp-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
.lp .lp-card-head .lp-card-icon {
  margin: 0;
  flex-shrink: 0;
}
.lp .lp-card-head h3 {
  margin: 0;
}

.lp .lp-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.lp .lp-card p {
  font-size: 0.92rem;
  color: var(--lp-muted);
  line-height: 1.55;
  margin: 0 0 0.85rem;
}

/* CTA sekce na dark — silnější impact */
.lp .lp-cta { padding: 5rem 0; }
.lp .lp-cta h2 {
  color: #fff !important;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.lp .lp-cta p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.lp .lp-cta-btns {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Promo strip — vyladění */
.lp .lp-promo {
  padding: 0.85rem 0;
  font-size: 0.92rem;
  font-weight: 600;
}

/* Hero --simple variant: opravit specificity tak, aby h1 byl tmavý na světlém pozadí
   (default `.lp-hero h1 { color: #fff !important }` přepisoval `.lp-hero--simple h1`) */
.lp .lp-hero--simple h1 {
  color: var(--lp-h2) !important;
}
.lp .lp-hero--simple h1 em {
  color: var(--lp-primary) !important;
}
.lp .lp-hero--simple .lp-hero-sub {
  color: var(--lp-muted);
}
.lp .lp-hero--simple .lp-hero-pill {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: #ccfbf1;
}

/* Footer 5-col grid (Brand / Funkce / Společnost / Povinné info / MAGNAPRO) */
.lp .lp-footer-grid--5 {
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr 1fr;
}
@media (max-width: 1024px) {
  .lp .lp-footer-grid--5 { grid-template-columns: 1fr 1fr 1fr; }
  .lp .lp-footer-col--magnapro { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .lp .lp-footer-grid--5 { grid-template-columns: 1fr 1fr; }
  .lp .lp-footer-col--magnapro { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .lp .lp-footer-grid--5 { grid-template-columns: 1fr; }
  .lp .lp-footer-col--magnapro { grid-column: auto; }
}

.lp .lp-footer-col--magnapro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.lp .lp-footer-magnapro-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
  font-family: inherit;
}
.lp .lp-footer-magnapro-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(94, 234, 212, 0.45);
  transform: translateY(-1px);
}
.lp .lp-footer-magnapro-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.lp .lp-footer-magnapro-fallback {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.lp .lp-footer-magnapro-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.15rem 0 0;
  line-height: 1.4;
}
.lp .lp-footer-demo-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

/* DEMO banner — top of footer (jen v demo režimu) */
.lp-demo-banner {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  padding: 0.65rem 0;
}
.lp-demo-banner__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.lp-demo-banner__badge {
  background: #fff;
  color: #b45309;
  padding: 0.18rem 0.6rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.lp-demo-banner__text {
  font-size: 0.84rem;
  line-height: 1.5;
  max-width: 1000px;
}
.lp-demo-banner__text strong {
  font-weight: 700;
}

/* MAGNAPRO modal — compact, refined styling */
.lp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}
.lp-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    0 4px 14px rgba(13, 148, 136, 0.12);
  overflow: hidden;
  font-family: var(--lp-font);
  animation: lpModalIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes lpModalIn {
  from { opacity: 0; transform: translateY(8px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.lp-modal-header {
  position: relative;
  padding: 2.25rem 2.5rem 1.65rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(13, 148, 136, 0.35) 0%, transparent 60%),
    linear-gradient(135deg, #1a2035 0%, #2c3a52 100%);
  color: #fff;
  overflow: hidden;
}
.lp-modal-header::after {
  /* jemný teal accent na spodu hlavičky */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-primary), var(--lp-accent), transparent);
}
.lp-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  z-index: 2;
}
.lp-modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: scale(1.05);
}
.lp-modal-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding-right: 2.5rem; /* prostor pro close tlačítko, žádné překryvy */
}
.lp-modal-logo {
  display: block;
  height: 19.5px;
  width: auto;
  max-width: 150px;
  opacity: 0.95;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}
.lp-modal-brand-text {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(94, 234, 212, 0.9);
}
.lp-modal-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
  max-width: none;
  text-wrap: pretty;
}
.lp-modal-tagline strong {
  color: #fff;
  font-weight: 700;
}
.lp-modal-body {
  padding: 1.75rem 2.5rem 1rem;
}
.lp-modal-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lp-primary-d);
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.lp-modal-section-title::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--lp-primary), transparent);
  border-radius: 1px;
}
.lp-modal-section-title:not(:first-child) {
  margin-top: 1.1rem;
}
.lp-modal-svc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-modal-svc li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--lp-text);
  line-height: 1.45;
}
.lp-modal-svc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--lp-primary);
  border-bottom: 2px solid var(--lp-primary);
  transform: rotate(-45deg);
}
.lp-modal-products {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.lp-modal-product {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border: 1px solid #ccfbf1;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.lp-modal-product:hover {
  background: #ccfbf1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.18);
}
.lp-modal-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--lp-border);
}
.lp-modal-contact a {
  font-size: 0.88rem;
  color: var(--lp-primary-d);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.lp-modal-contact a:hover {
  color: var(--lp-primary);
  text-decoration: underline;
}
.lp-modal-footer {
  padding: 1.1rem 2.5rem 1.6rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.02));
}
@media (max-width: 700px) {
  .lp-modal-svc { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .lp-modal-overlay { padding: 1rem; }
  .lp-modal { border-radius: 12px; }
  .lp-modal-header { padding: 1.5rem 1.5rem 1.2rem; }
  .lp-modal-body { padding: 1.25rem 1.5rem 0.7rem; }
  .lp-modal-footer { padding: 0.85rem 1.5rem 1.25rem; }
  .lp-modal-close { top: 0.6rem; right: 0.6rem; width: 30px; height: 30px; }
  .lp-modal-brand { padding-right: 2.25rem; }
  .lp-modal-svc { grid-template-columns: 1fr; }
}

/* Chart iframe — embed reálných demo souborů z wiki/funkce/ (autentický vizuál aplikace) */
.lp .lp-chart-iframe-wrap {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border: 1px solid var(--lp-border);
  background: #f0f2f5;
}
.lp .lp-chart-iframe {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #f0f2f5;
}
@media (max-width: 768px) {
  .lp .lp-chart-iframe { height: 920px; }
}

/* ===========================================================================
   FAQ accordion — kartová s šíří (redesign 2026-05-01)
   =========================================================================== */
.lp .lp-faq {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.lp .lp-faq-item {
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lp .lp-faq-item:hover {
  border-color: var(--lp-primary);
  box-shadow: 0 6px 16px rgba(13, 148, 136, 0.08);
}
.lp .lp-faq-item.lp-faq-open {
  border-color: var(--lp-primary);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.12);
}
.lp .lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--lp-h2);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  line-height: 1.4;
  transition: background 0.15s ease;
}
.lp .lp-faq-q:hover {
  background: var(--lp-bg-alt);
  color: var(--lp-primary-d);
}
.lp .lp-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--lp-primary);
  background: var(--lp-bg-teal-soft);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.lp .lp-faq-item.lp-faq-open .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--lp-primary);
  color: #fff;
}
.lp .lp-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.7rem;
  transition: max-height 0.45s ease, padding-top 0.25s ease, padding-bottom 0.25s ease;
}
.lp .lp-faq-item.lp-faq-open .lp-faq-a {
  max-height: 1500px;
  padding: 1.6rem 1.7rem 1.6rem;
  border-top: 1px solid var(--lp-border-soft);
  margin-top: -1px;
}
.lp .lp-faq-a p,
.lp .lp-faq-a ul,
.lp .lp-faq-a ol {
  margin: 0 0 0.85rem;
  color: var(--lp-text);
  line-height: 1.7;
  font-size: 0.98rem;
}
.lp .lp-faq-a p:last-child,
.lp .lp-faq-a ul:last-child,
.lp .lp-faq-a ol:last-child {
  margin-bottom: 0;
}
.lp .lp-faq-a a {
  color: var(--lp-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.lp .lp-faq-a a:hover {
  color: var(--lp-primary-d);
}

/* FAQ on dark sections */
.lp .lp-section--dark .lp-faq-q,
.lp .lp-section--gradient .lp-faq-q { color: #fff; }
.lp .lp-section--dark .lp-faq-a p,
.lp .lp-section--gradient .lp-faq-a p { color: rgba(255, 255, 255, 0.85); }
.lp .lp-section--dark .lp-faq-item,
.lp .lp-section--gradient .lp-faq-item { border-color: rgba(255, 255, 255, 0.12); }

/* ===========================================================================
   Fade-in / slide-up — visible by default; JS opt-in skrývá přes is-anim-init
   (2026-05-01) — fix: when JS doesn't run / IO unsupported / above-fold,
   elements remain visible instead of stuck opacity:0
   =========================================================================== */
.lp .lp-fade-in,
.lp .lp-slide-up {
  opacity: 1;
  transform: none;
}

.lp .lp-fade-in.is-anim-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.lp .lp-fade-in.is-anim-init.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp .lp-slide-up.is-anim-init {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lp .lp-slide-up.is-anim-init.lp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================================================
   Brand wordmark + landing fixes (2026-05-01)
   =========================================================================== */

/* Brand: ikona + text DataDent.cz (header + footer) */
.lp .lp-nav-brand {
  gap: .55rem;
}
.lp .lp-nav-brand img {
  height: 44px;
  width: 44px;  /* malá ikona vedle textu (+25 % oproti 35.2px) */
  max-width: 44px;
}
.lp .lp-nav-brand-text {
  font-size: 1.58rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
}
.lp .lp-nav-brand-accent,
.lp .lp-nav-brand-tld {
  color: var(--lp-accent);
  font-weight: 800;
}
.lp .lp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  text-decoration: none;
}
.lp .lp-footer-brand img {
  height: 28px;
  width: 28px;
  max-width: 28px;
  margin-bottom: 0;
}
.lp .lp-footer-brand-text {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.lp .lp-footer-brand-accent,
.lp .lp-footer-brand-tld {
  color: var(--lp-accent);
  font-weight: 800;
}

/* Flow numbered circles — sjednocení (workflow sekce) */
.lp .lp-flow-num {
  background: var(--lp-primary) !important;
  color: #fff !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.lp .lp-flow-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lp-h2);
  margin: 0 0 0.5rem;
}
.lp .lp-flow-item p {
  font-size: 0.9rem;
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.55;
}

/* FAQ — kartový vzhled, full container width (sjednoceno s ostatními sekcemi) */
.lp .lp-faq {
  max-width: none;
  margin: 0;
  background: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
}
.lp .lp-faq-item {
  border-bottom: 1px solid var(--lp-border);
}
.lp .lp-faq-item:last-child {
  border-bottom: none;
}
.lp .lp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--lp-h2);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  line-height: 1.4;
  transition: background var(--lp-t, 0.2s);
}
.lp .lp-faq-q:hover {
  background: var(--lp-bg-alt);
  color: var(--lp-primary-d);
}
.lp .lp-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--lp-primary);
  transition: transform 0.3s ease;
  background: var(--lp-bg-teal-soft);
  border-radius: 50%;
}
.lp .lp-faq-item.lp-faq-open .lp-faq-icon {
  transform: rotate(45deg);
  background: var(--lp-primary);
  color: #fff;
}
/* Duplicitní pravidlo z 2026-05-01 odstraněno — kanonické rule výše (řádek ~3628) */
.lp .lp-faq-a p,
.lp .lp-faq-a ul,
.lp .lp-faq-a ol {
  margin: 0 0 0.8rem;
  color: var(--lp-text);
  line-height: 1.7;
  font-size: 0.96rem;
}
.lp .lp-faq-a p:last-child,
.lp .lp-faq-a ul:last-child,
.lp .lp-faq-a ol:last-child {
  margin-bottom: 0;
}
.lp .lp-faq-a a {
  color: var(--lp-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════════════
   MODERN ACCENTS  (v0.27 — vizuální rytmus, jemné efekty)
   ════════════════════════════════════════════════════════════════════ */

/* Eyebrow label nad H2 — krátká uppercase „kapitola" s gradient čárou */
.lp .lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--lp-primary-d);
  margin: 0 0 .9rem;
}
.lp .lp-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: linear-gradient(to right, var(--lp-primary), transparent);
  border-radius: 1px;
}
.lp .lp-section--dark .lp-eyebrow,
.lp .lp-section--gradient .lp-eyebrow {
  color: rgba(94, 234, 212, .9);
}
.lp .lp-section--dark .lp-eyebrow::before,
.lp .lp-section--gradient .lp-eyebrow::before {
  background: linear-gradient(to right, rgba(94, 234, 212, .8), transparent);
}

/* H2 s jemným gradient přechodem (slate → teal) */
.lp .lp-h-grad {
  background: linear-gradient(135deg, var(--lp-h2) 0%, var(--lp-primary) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

/* Soft mesh pozadí — radiální gradienty pro hloubku, místo plochých alt sekcí */
.lp .lp-section--mesh {
  position: relative;
  overflow: hidden; /* fallback pro iOS ≤15, kde clip není podporovaný — blobs by jinak přetekly */
  overflow: clip;
  background:
    radial-gradient(ellipse 60% 60% at 0% 0%, rgba(13, 148, 136, .055) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(94, 234, 212, .07) 0%, transparent 55%),
    var(--lp-bg-alt);
}
.lp .lp-section--mesh-soft {
  position: relative;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(13, 148, 136, .035) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(94, 234, 212, .04) 0%, transparent 60%),
    #fff;
}

/* Dekorativní rozmazaná „blob" pro pozadí — accent points */
.lp .lp-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: .5;
  z-index: 0;
}
.lp .lp-blob--teal {
  background: radial-gradient(circle, rgba(13, 148, 136, .35), transparent 70%);
}
.lp .lp-blob--mint {
  background: radial-gradient(circle, rgba(94, 234, 212, .42), transparent 70%);
}
.lp .lp-section > .lp-w {
  position: relative;
  z-index: 1;
}

/* Gradient hairline divider (mezi pasážemi v jedné sekci) */
.lp .lp-divider-grad {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, .28), transparent);
  margin: 2.25rem auto;
  max-width: 460px;
  border: 0;
}

/* Modernizovaný hover na kartách (jemnější, tintovaný stín) */
.lp .lp-card--modern {
  transition: transform .28s cubic-bezier(.4, 0, .2, 1),
              box-shadow .28s,
              border-color .28s;
}
.lp .lp-card--modern:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 38px -14px rgba(13, 148, 136, .20),
    0 4px 14px rgba(15, 23, 42, .06);
}

/* Větší dýchací prostor mezi sekcemi (od v0.27 polish) */
.lp .lp-section + .lp-section {
  /* ponechá default padding sekcí, ale subtle "break" mezi dvěma */
}

/* ════════════════════════════════════════════════════════════════════
   FORMS LIBRARY — rozbalovací nabídka šablon (funkce/formulare)
   ════════════════════════════════════════════════════════════════════ */

.lp .lp-forms-details {
  margin: 2rem 0 0;
  width: 100%;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-bg-soft);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.lp .lp-forms-details[open] {
  border-color: rgba(13, 148, 136, .28);
  box-shadow: 0 6px 24px -10px rgba(13, 148, 136, .15);
}

.lp .lp-forms-details__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: .98rem;
  color: var(--lp-h2);
  transition: background .2s;
  user-select: none;
}
.lp .lp-forms-details__summary::-webkit-details-marker {
  display: none;
}
.lp .lp-forms-details__summary:hover {
  background: rgba(13, 148, 136, .04);
}
.lp .lp-forms-details__label {
  flex: 1;
}
.lp .lp-forms-details__label strong {
  color: var(--lp-primary-d);
}
.lp .lp-forms-details__chev {
  flex-shrink: 0;
  color: var(--lp-primary);
  transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}
.lp .lp-forms-details[open] .lp-forms-details__chev {
  transform: rotate(180deg);
}

.lp .lp-forms-details__body {
  padding: .25rem 0 1rem;
  border-top: 1px solid var(--lp-border);
  background: #fff;
}

.lp .lp-forms-group {
  /* row-based layout — kategorie jako section header + 1 řádek = 1 šablona */
}
.lp .lp-forms-group + .lp-forms-group {
  margin-top: .35rem;
}
.lp .lp-forms-group__title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lp-primary-d);
  margin: 1.4rem 0 0;
  padding: .8rem 1.5rem .65rem;
  background: linear-gradient(to right, rgba(13, 148, 136, .07), transparent 70%);
  border-left: 3px solid var(--lp-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.lp .lp-forms-group:first-child .lp-forms-group__title {
  margin-top: .6rem;
}
.lp .lp-forms-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 .5rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, .12);
  color: var(--lp-primary-d);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.lp .lp-forms-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp .lp-forms-group__list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: .9rem;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--lp-text);
  padding: .55rem 1.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, .045);
  transition: background .15s;
}
.lp .lp-forms-group__list li:last-child {
  border-bottom: 0;
}
.lp .lp-forms-group__list li:hover {
  background: rgba(13, 148, 136, .05);
}
.lp .lp-forms-group__id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 80px;
  padding: .15rem .55rem;
  border-radius: 4px;
  background: rgba(15, 23, 42, .055);
  color: var(--lp-muted);
  font-family: ui-monospace, 'Cascadia Code', Menlo, monospace;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  text-align: center;
}

/* Mobile — collapse to single column row, hide grid columns */
@media (max-width: 600px) {
  .lp .lp-forms-group__list li {
    grid-template-columns: 1fr;
    gap: .25rem;
    padding: .55rem 1rem;
  }
  .lp .lp-forms-group__title {
    padding: .6rem 1rem .5rem;
  }
  .lp .lp-forms-group__list li {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   CHART SCREENSHOT WRAP — funkce/krize (nahrazuje iframe demo)
   ════════════════════════════════════════════════════════════════════ */

.lp .lp-chart-shot {
  margin: 1.75rem 0 1.25rem;
  padding: 0;
  text-align: center;
}
.lp .lp-chart-shot img {
  display: block;
  width: 100%;
  max-width: var(--lp-container);
  height: auto;
  margin: 0 auto;
  border-radius: var(--lp-radius-lg);
  border: 1px solid var(--lp-border);
  box-shadow:
    0 14px 38px -16px rgba(15, 23, 42, .18),
    0 4px 12px -4px rgba(15, 23, 42, .08);
  background: #fff;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
              box-shadow .35s;
}
.lp .lp-chart-shot:hover img {
  transform: translateY(-2px) scale(1.005);
  box-shadow:
    0 20px 48px -16px rgba(13, 148, 136, .22),
    0 6px 16px -4px rgba(15, 23, 42, .1);
}
.lp .lp-chart-shot__cap {
  margin-top: .85rem;
  font-size: .82rem;
  color: var(--lp-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════
   HERO MOCKUP — funkce/krize hero (jeden velký screenshot + tab indikátory)
   ════════════════════════════════════════════════════════════════════ */

.lp .lp-hero-mockup {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow:
    0 24px 48px -16px rgba(15, 23, 42, .45),
    0 8px 18px rgba(15, 23, 42, .18);
  border: 1px solid rgba(255, 255, 255, .08);
}

.lp .lp-hero-mockup__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.lp .lp-hero-mockup__tabs::-webkit-scrollbar { display: none; }

.lp .lp-hero-mockup__tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--lp-muted);
  border-radius: 8px;
  background: var(--lp-bg-alt);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.lp .lp-hero-mockup__tab.is-active {
  background: var(--lp-bg-teal-soft);
  color: var(--lp-primary-d);
  border-color: rgba(13, 148, 136, .25);
}
.lp .lp-hero-mockup__tab svg {
  flex-shrink: 0;
  color: currentColor;
  opacity: .85;
}

.lp .lp-hero-mockup__shot {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--lp-bg-alt);
  border: 1px solid rgba(15, 23, 42, .08);
  aspect-ratio: 2451 / 1353;
}
.lp .lp-hero-mockup__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Mobile — užší tabs, menší padding */
@media (max-width: 640px) {
  .lp .lp-hero-mockup {
    padding: 10px;
    border-radius: 12px;
  }
  .lp .lp-hero-mockup__tab {
    padding: 5px 9px;
    font-size: .65rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILNÍ POLISH (2026-05-03 fix-up) — řeší 4 specifické issues:
   1) hamburger nav-sub viditelnost (řešeno výš v media query)
   2) zarovnání karet na střed
   3) knihovna formulářů wide karta — internal grid stack
   4) tabulka kalkulace úspory — proper horizontal scroll wrapper
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* ── 2) Karty — full width, centered content ── */
  .lp .lp-grid > .lp-card,
  .lp .lp-grid > .lp-feature {
    justify-self: stretch;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  /* ── 3) Knihovna formulářů — wide karta „Spolupráce" ──
     Override inline `grid-template-columns: 64px 1fr` na 1-col stack */
  .lp .lp-card--gradient[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    text-align: center !important;
    padding: 1.4rem 1.25rem !important;
  }
  .lp .lp-card--gradient[style*="grid-template-columns"] .lp-card-icon {
    margin: 0 auto !important;
  }
  .lp .lp-card--gradient[style*="grid-template-columns"] > div:last-child {
    text-align: center;
  }

  /* ── 4) Tabulka kalkulace úspory ──
     Force overflow-x scroll — některé browsery ignorují overflow-x:auto bez explicit
     min-width na inner table. Wrap má box, table inside má responsive padding. */
  .lp .lp-tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--lp-radius);
    margin: 0 -1.1rem; /* let table breathe edge-to-edge */
    padding: 0 1.1rem;
  }
  .lp .lp-tbl {
    min-width: 100%;
    font-size: 0.85rem;
  }
  .lp .lp-tbl th,
  .lp .lp-tbl td {
    padding: 0.55rem 0.6rem;
    line-height: 1.4;
  }
  .lp .lp-tbl td:first-child {
    /* první sloupec (Metrika) — necháme zalamovat */
    word-break: break-word;
    hyphens: auto;
  }
  .lp .lp-tbl .v {
    white-space: nowrap;
    font-size: 0.8rem;
  }

  /* Highlight box (4 stat boxes pod tabulkou) — 2x2 grid je OK na mobilu */
  .lp .lp-hl {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1rem;
  }
  .lp .lp-hl-card {
    padding: 0.85rem 0.6rem;
  }
  .lp .lp-hl-num {
    font-size: 1.3rem;
  }
  .lp .lp-hl-label {
    font-size: 0.7rem;
  }
}

/* Velmi malé telefony ≤380px — karty potřebují víc dýchacího prostoru */
@media (max-width: 380px) {
  .lp .lp-tbl th,
  .lp .lp-tbl td {
    padding: 0.5rem 0.45rem;
    font-size: 0.78rem;
  }
  .lp .lp-tbl .v {
    font-size: 0.75rem;
  }
  .lp .lp-hl {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILNÍ CENTROVÁNÍ KARET (2026-05-03 polish)
   - "Co všechno DataDent umí" (module-card.php — lp-feature cards)
   - "4 způsoby, jak dostat formulář k pacientovi" (workflow.php — lp-flow-item)
   - "Jak přijde formulář" (workflow.php — lp-flow-item)
   - "Hlavní přínosy" (index.php — lp-feature)
   - "Připravujeme" (coming-soon.php — lp-feature)
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* Karty v lp-grid--auto — vnitřní obsah CENTROVANÝ (icon + h3 + p)
     namísto výchozího left-alignu z .lp-feature grid (icon vedle h3). */
  .lp .lp-grid.lp-grid--auto > .lp-feature,
  .lp .lp-grid > .lp-feature,
  .lp .lp-feature {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "icon"
      "title"
      "desc" !important;
    justify-items: center !important;
    align-items: center !important;
    text-align: center !important;
    max-width: 420px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center;
  }
  .lp .lp-feature .lp-feature-icon {
    margin-bottom: 0.85rem !important;
  }
  .lp .lp-feature h3 {
    padding-right: 0 !important;
  }

  /* lp-card v lp-grid (sekce „Knihovna formulářů" 6 kategorií) — také centrovat */
  .lp .lp-grid.lp-grid--auto > .lp-card,
  .lp .lp-grid > .lp-card,
  .lp .lp-card {
    text-align: center;
    max-width: 420px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-self: center;
  }
  .lp .lp-card-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
  }

  /* Grid sekce — vycentrovat track v případě jediného sloupce */
  .lp .lp-grid.lp-grid--auto,
  .lp .lp-grid {
    justify-content: center;
    justify-items: center;
  }

  /* Workflow steps (.lp-flow-item) — flex column, číslo + h3 + p centrované */
  .lp .lp-flow {
    align-items: center;
  }
  .lp .lp-flow-item {
    max-width: 420px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    align-items: center;
  }

  /* lp-feature icon: na mobilu margin: 0 auto (bezpečně centrováno) */
  .lp .lp-feature .lp-feature-icon,
  .lp .lp-card .lp-card-icon {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Wide karta v knihovně formulářů („Spolupráce") — také centrovat */
  .lp .lp-card.lp-card--gradient {
    max-width: 420px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════════════════
   CROSS-PAGE MOBILNÍ KONZISTENCE (2026-05-03 finalizace)
   - Sjednocení paddingů, zarovnání, max-widths napříč všemi landing pages
   - Aplikuje se na: funkce.php, funkce/*, cenik, o-nas, kontakt, register, promo
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
  /* Hero — všechny landing pages mají stejnou strukturu */
  .lp .lp-hero {
    padding-left: 0;
    padding-right: 0;
  }
  .lp .lp-hero-text {
    text-align: center;
    width: 100%;
  }
  .lp .lp-hero-text > * {
    max-width: 100%;
  }
  .lp .lp-hero-pill {
    margin-left: auto;
    margin-right: auto;
  }
  .lp .lp-hero-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
    gap: 0.6rem;
  }
  .lp .lp-hero-cta .lp-btn {
    width: 100%;
    justify-content: center;
  }

  /* Trust cards (sekce „Důvěryhodnost", „Podloženo daty") — také vycentrovat */
  .lp .lp-trust {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: center;
  }
  .lp .lp-trust-card {
    max-width: 420px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

  /* Highlight cards (4 boxy s čísly: 525h/65 dní/3 měsíce/175 000 Kč) */
  .lp .lp-hl {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1rem;
  }

  /* Porovnání papír vs digitální (sekce „Kolik času ztrácí vaše recepce") */
  .lp .lp-cmp {
    grid-template-columns: 1fr !important;
    gap: 1rem;
    max-width: 420px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .lp .lp-cmp-card {
    width: 100%;
  }

  /* Section subtitle (lp-section-sub) — víc breathable na mobilu */
  .lp .lp-section-sub {
    max-width: 100%;
    padding: 0 0.5rem;
    font-size: 1rem;
  }

  /* H2 section headings — větší, výraznější */
  .lp .lp-section h2,
  .lp section.lp-section > .lp-w > h2 {
    font-size: clamp(1.55rem, 5.5vw, 1.95rem);
    line-height: 1.2;
    text-align: center;
  }
  .lp .lp-eyebrow {
    justify-content: center;
    text-align: center;
  }

  /* Sekce: padding zmenšit pro lepší proporce */
  .lp .lp-section {
    padding: 3rem 0;
  }
  .lp .lp-section--mesh,
  .lp .lp-section--mesh-soft {
    padding: 3rem 0;
  }

  /* Pill v hero (lp-hero-pill) — centrovat vertikálně */
  .lp .lp-hero-text > .lp-hero-pill {
    display: inline-block;
    margin-bottom: 1rem;
  }
}

/* ≤480px — jemnější paddings */
@media (max-width: 480px) {
  .lp .lp-section {
    padding: 2.5rem 0;
  }
  .lp .lp-section--mesh,
  .lp .lp-section--mesh-soft {
    padding: 2.5rem 0;
  }
  .lp .lp-hero {
    padding: 3rem 0 2.5rem;
  }
  .lp .lp-hero--home,
  .lp .lp-hero--module {
    padding: 3.5rem 0 3rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   TABLET OPTIMIZATION (601–1024px) — 2026-05-03
   Cílí na: iPad mini (768×1024), iPad (810×1080), iPad Air (820×1180),
   iPad Pro 11" (834×1194), Galaxy Tab (800×1280), generic 768/1024 tablety
   v portrait i landscape.
   ════════════════════════════════════════════════════════════════════ */

@media (min-width: 601px) and (max-width: 1024px) {

  /* === KONTEJNER & SEKCE ===
     Width 100% (NE 90% z desktopu) — na tabletu by 5 % prázdného místa
     po stranách rozbíjelo navbar i obsah. Padding 2rem řeší breathing room. */
  .lp .lp-w {
    width: 100%;
    padding-left: max(2rem, env(safe-area-inset-left, 0px));
    padding-right: max(2rem, env(safe-area-inset-right, 0px));
  }

  /* === NAVBAR — symetrické vertikální paddingy ===
     POZOR: nepoužívat shorthand `padding: X 0` — přepsalo by horizontální padding z .lp-w
     (které dává navbaru bezpečný odstup od okrajů). Setovat jen padding-top/bottom. */
  .lp .lp-nav-inner {
    height: auto;
    min-height: 0;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    align-items: center;
  }
  /* Brand img bez baseline padding — display:block odstraňuje inline descender */
  .lp .lp-nav-brand img {
    display: block;
  }
  /* (Touch dropdown rule odebrán — klik na Funkce ▾ vede přímo na /funkce.) */
  /* Mobilní hamburger menu se na tabletu při ≥769px nezobrazí — proto offset menu má top:64px,
     u tabletu nad 769px to není relevantní (full nav viditelný). */

  .lp .lp-section {
    padding: 4rem 0;
  }
  .lp .lp-section--mesh,
  .lp .lp-section--mesh-soft {
    padding: 4rem 0;
  }

  /* === TYPOGRAFIE === */
  .lp .lp-hero h1,
  .lp section.lp-hero h1 {
    font-size: clamp(2.9rem, 5.5vw, 4rem);
    line-height: 1.12;
  }
  /* Unified tablet hero — top-anchored content + min-height (žádné skákání) */
  .lp .lp-hero--home,
  .lp .lp-hero--module {
    min-height: 560px;
    align-items: flex-start;
  }
  .lp .lp-section h2 {
    font-size: clamp(2rem, 3.8vw, 2.6rem);
    line-height: 1.2;
  }
  .lp .lp-section-sub {
    font-size: 1.05rem;
    max-width: 680px;
  }

  /* === HERO — text + visual centrované na tabletu ===
     Při tablet portrait (≤820px) stack vertikálně + text centrovaný.
     Při landscape (821-1024) side-by-side, ale s centrovaným textem v textovém sloupci. */
  .lp .lp-hero-inner {
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
  }
  .lp .lp-hero-text {
    flex: 1 1 360px;
    min-width: 0;
    text-align: center;
  }
  .lp .lp-hero-text > .lp-hero-pill,
  .lp .lp-hero-text > .lp-hero-cta,
  .lp .lp-hero-text > .lp-hero-nums {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .lp .lp-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  /* Hero CTA tlačítka — stejně veliká (rovnoměrný flex grow + symetrický min/max) */
  .lp .lp-hero-cta {
    gap: 0.85rem;
    flex-wrap: wrap;
  }
  .lp .lp-hero-cta .lp-btn {
    flex: 1 1 200px;
    min-width: 200px;
    max-width: 260px;
    justify-content: center;
    text-align: center;
  }
  .lp .lp-hero-visual {
    flex: 0 0 320px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  /* iPad mini portrait (≤820px) — radši stack než cramped side-by-side */
  @media (max-width: 820px) and (orientation: portrait) {
    .lp .lp-hero-inner {
      flex-direction: column;
      align-items: center;
    }
    .lp .lp-hero-visual {
      max-width: 360px;
      margin: 0 auto;
    }
    .lp .lp-hero-text {
      width: 100%;
      max-width: 560px;
    }
  }

  /* === UNIFIED GAP napříč všemi gridy na tabletu (konzistentní mezery) === */
  .lp .lp-grid,
  .lp .lp-grid.lp-grid--auto,
  .lp .lp-grid--2,
  .lp .lp-grid--3,
  .lp .lp-grid--4,
  .lp .lp-flow,
  .lp .lp-trust,
  .lp .lp-cmp,
  .lp .lp-hl,
  .lp .lp-modal-svc,
  .lp .lp-modal-products {
    gap: 1.25rem !important;
  }

  /* === CARDS GRID — 2 col při menším tabletu, 3 col při větším === */
  .lp .lp-grid.lp-grid--auto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Větší tablet (≥820px) — 3-col grid karty */
  @media (min-width: 820px) {
    .lp .lp-grid.lp-grid--auto {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  /* lp-grid--3 a --4 — 2 col na malém tabletu, 3 col na větším */
  .lp .lp-grid--3,
  .lp .lp-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 820px) {
    .lp .lp-grid--3 {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  /* === KARTY — sjednotit padding + zarovnání === */
  .lp .lp-card,
  .lp .lp-feature {
    padding: 1.6rem 1.4rem;
  }

  /* === WIDE KARTA „Spolupráce s ordinacemi" v knihovně formulářů ===
     Při tabletu (2 nebo 3 col grid) zabere VŽDY celý řádek (žádné prázdné buňky) */
  .lp .lp-grid--auto > .lp-card.lp-card--gradient[style*="grid-column: span 2"] {
    grid-column: 1 / -1 !important; /* full row */
    grid-template-columns: 64px 1fr !important; /* zachovat původní vnitřní layout */
  }

  /* === WORKFLOW (lp-flow) — CSS GRID na tabletu, items vyplňují celé tracky ===
     .lp-flow je grid 2-col na ≤1024px. Items dříve měly max-width:240/320 → uvnitř
     480px tracků zbývalo cca 80–160px white space na každé straně = vizuálně velké mezery.
     Fix: remove max-width + justify-self: stretch → karty vyplní celé tracky, mezery jsou
     dány pouze grid gap (1.25rem). */
  .lp .lp-flow-item {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    text-align: center;
  }

  /* === TRUST CARDS (Důvěryhodnost) === */
  .lp .lp-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  /* === HIGHLIGHT BOX (4 stat boxy v Kalkulaci úspory) === */
  .lp .lp-hl {
    grid-template-columns: repeat(4, 1fr);
  }

  /* === POROVNÁNÍ papír vs digitální — vedle sebe === */
  .lp .lp-cmp {
    grid-template-columns: 1fr 1fr;
  }

  /* === FORM — 2-col rows při tabletu === */
  .lp .lp-form-row--inline {
    grid-template-columns: 1fr 1fr;
  }

  /* === MODAL „MAGNAPRO o společnosti" — proporcionální velikost === */
  .lp-modal {
    max-width: 580px;
  }
  .lp .lp-modal-svc {
    grid-template-columns: 1fr 1fr;
  }

  /* === FOOTER GRID === */
  .lp .lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .lp .lp-footer-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* === MAGNACLOUD SEKCE (10c) — vnitřní 6 features === */
  .lp .lp-section .lp-grid.lp-grid--auto > div[style*="display:flex"] {
    /* MagnaCloud module-card has inline grid — nech je 2-3 col */
  }

  /* === FUNKCE/KRIZE — chart screenshots (lp-chart-shot) === */
  .lp .lp-chart-shot img {
    max-width: 100%;
  }

  /* === REGISTER FORM — 2-col reg-fields === */
  .lp .reg-fields {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* === KONTAKT 3 cards (Adresa/Telefon/E-mail) === */
  /* Spadne na lp-grid--3 → 2 col na malém, 3 col na větším — řízeno globálně */

  /* === KNIHOVNA FORMULÁŘŮ collapsible (lp-forms-details) === */
  .lp .lp-forms-group__list li {
    grid-template-columns: 100px 1fr; /* trochu širší ID buňka */
    gap: 1rem;
    padding: 0.6rem 1.5rem;
  }
}

/* ════════════════════════════════════════════════════════════════════
   LANDSCAPE TABLET (1024×768) — speciální horizontální optimalizace
   ════════════════════════════════════════════════════════════════════ */
@media (min-width: 901px) and (max-width: 1024px) and (orientation: landscape) {
  .lp .lp-hero {
    padding: 4.5rem 0 4rem;
  }
  .lp .lp-section {
    padding: 4.5rem 0;
  }
}
