/* QRCall.sk – landing page (farebná paleta admin panelu) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400..700;1,9..40,400..600&display=swap');

:root {
  --lp-font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --lp-accent: #3cb371;
  --lp-accent-dim: #2a8f57;
  --lp-dark: #0f1a12;
  --lp-dark-2: #121f16;
  --lp-body-bg: #eef1ec;
  --lp-surface: #ffffff;
  --lp-surface-2: #f8faf7;
  --lp-text: #142016;
  --lp-muted: #5c6b60;
  --lp-border: #dce3d9;
  --lp-radius: 14px;
  --lp-radius-sm: 10px;
  --lp-shadow: 0 1px 3px rgba(15, 26, 18, 0.06), 0 8px 28px rgba(15, 26, 18, 0.08);
  --lp-shadow-lg: 0 4px 24px rgba(15, 26, 18, 0.12);
  --lp-max: 72rem;
  --lp-header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

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

.lp-body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--lp-font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--lp-text);
  background: var(--lp-body-bg);
  -webkit-font-smoothing: antialiased;
}

.lp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--lp-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 var(--lp-radius-sm) 0;
}

.lp-skip:focus {
  left: 0;
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--lp-header-h);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lp-border);
  transition: box-shadow 0.2s ease;
}

.lp-header.is-scrolled {
  box-shadow: var(--lp-shadow);
}

.lp-header__inner {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--lp-text);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.lp-brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: var(--lp-radius-sm);
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  background: var(--lp-surface);
  color: var(--lp-text);
  cursor: pointer;
}

.lp-nav-toggle svg {
  display: block;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.lp-nav a {
  padding: 0.45rem 0.75rem;
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.lp-nav a:hover,
.lp-nav a:focus-visible {
  color: var(--lp-text);
  background: var(--lp-surface-2);
}

.lp-nav__cta {
  margin-left: 0.35rem;
  padding: 0.5rem 1rem !important;
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%) !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(60, 179, 113, 0.35);
}

.lp-nav__cta:hover,
.lp-nav__cta:focus-visible {
  filter: brightness(1.05);
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%) !important;
}

@media (max-width: 860px) {
  .lp-nav-toggle {
    display: inline-flex;
  }

  .lp-nav {
    position: fixed;
    inset: var(--lp-header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--lp-surface);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .lp-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .lp-nav a {
    padding: 0.75rem 0.85rem;
  }

  .lp-nav__cta {
    margin-left: 0;
    text-align: center;
  }
}

/* Layout */
.lp-wrap {
  max-width: var(--lp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

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

.lp-section--alt {
  background: var(--lp-surface);
  border-block: 1px solid var(--lp-border);
}

.lp-section--dark {
  background: linear-gradient(165deg, var(--lp-dark-2) 0%, var(--lp-dark) 55%, #0c1510 100%);
  color: #e7ece8;
}

.lp-section__head {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.lp-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lp-accent);
}

.lp-section--dark .lp-eyebrow {
  color: #7dd9a8;
}

.lp-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lp-lead {
  margin: 0;
  font-size: 1.05rem;
  color: var(--lp-muted);
  line-height: 1.6;
}

.lp-section--dark .lp-lead {
  color: #9aab9e;
}

/* Hero */
.lp-hero {
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.lp-hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-hero__grid {
    grid-template-columns: 1fr 0.95fr;
    gap: 3rem;
  }
}

.lp-hero__content .lp-eyebrow {
  margin-bottom: 0.85rem;
}

.lp-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--lp-text);
}

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

.lp-hero__text {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--lp-muted);
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--lp-radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(60, 179, 113, 0.35);
}

.lp-btn--primary:hover,
.lp-btn--primary:focus-visible {
  filter: brightness(1.06);
}

.lp-btn--ghost {
  background: var(--lp-surface);
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}

.lp-btn--ghost:hover,
.lp-btn--ghost:focus-visible {
  background: var(--lp-surface-2);
}

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

.lp-btn--light:hover,
.lp-btn--light:focus-visible {
  filter: brightness(0.98);
}

.lp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-muted);
}

.lp-badge__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lp-accent);
}

/* Phone mockup */
.lp-hero__visual {
  display: flex;
  justify-content: center;
}

.lp-phone {
  width: min(100%, 17.5rem);
  padding: 0.65rem;
  border-radius: 2rem;
  background: linear-gradient(145deg, #1a2a1e 0%, var(--lp-dark) 100%);
  box-shadow: var(--lp-shadow-lg), 0 24px 48px rgba(15, 26, 18, 0.2);
}

.lp-phone__screen {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #fff;
}

.lp-phone__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  background: var(--lp-dark);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.lp-phone__bar span:last-child {
  opacity: 0.7;
}

.lp-phone__menu {
  padding: 0.85rem;
}

.lp-phone__venue {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lp-text);
}

.lp-phone__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--lp-border);
  font-size: 0.78rem;
}

.lp-phone__item:last-of-type {
  border-bottom: none;
}

.lp-phone__item strong {
  font-weight: 600;
}

.lp-phone__item span {
  color: var(--lp-muted);
  white-space: nowrap;
}

.lp-phone__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.lp-phone__action {
  padding: 0.5rem 0.35rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
}

.lp-phone__action--hot {
  background: rgba(60, 179, 113, 0.12);
  color: var(--lp-accent-dim);
}

.lp-phone__action--svc {
  background: var(--lp-surface-2);
  color: var(--lp-muted);
}

/* Feature grid */
.lp-features {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.lp-feature {
  padding: 1.5rem 1.35rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: var(--lp-radius-sm);
  background: linear-gradient(135deg, rgba(60, 179, 113, 0.15) 0%, rgba(42, 143, 87, 0.08) 100%);
  color: var(--lp-accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

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

/* Steps */
.lp-steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: lp-step;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .lp-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-step {
  position: relative;
  padding: 1.35rem 1.25rem 1.25rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-step::before {
  counter-increment: lp-step;
  content: counter(lp-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.lp-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
}

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

/* Storyous */
.lp-storyous {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .lp-storyous {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.lp-storyous__panel {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lp-radius);
}

.lp-storyous__panel h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

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

.lp-flow li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #c5d0c8;
  line-height: 1.5;
}

.lp-flow__icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: rgba(60, 179, 113, 0.2);
  color: #7dd9a8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-storyous__note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: var(--lp-radius-sm);
  background: rgba(60, 179, 113, 0.12);
  border: 1px solid rgba(60, 179, 113, 0.25);
  font-size: 0.9rem;
  color: #b8e6cc;
  line-height: 1.5;
}

.lp-storyous__note strong {
  color: #fff;
}

/* Split benefits */
.lp-split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .lp-split {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-split-card {
  padding: 1.75rem 1.5rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
}

.lp-split-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

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

.lp-split-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--lp-muted);
  line-height: 1.5;
}

.lp-split-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lp-accent);
}

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

/* Pricing */
.lp-pricing-trial {
  max-width: 36rem;
  margin: 0 auto 2rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, var(--lp-dark-2) 0%, var(--lp-dark) 100%);
  color: #fff;
  box-shadow: var(--lp-shadow-lg);
}

.lp-pricing-trial__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7dd9a8;
}

.lp-pricing-trial__price {
  margin: 0 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.lp-pricing-trial__amount {
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lp-pricing-trial__period {
  font-size: 1.05rem;
  font-weight: 600;
  opacity: 0.9;
}

.lp-pricing-trial__text {
  margin: 0;
  font-size: 0.92rem;
  color: #9aab9e;
  line-height: 1.5;
}

.lp-pricing-rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  max-width: 30rem;
  margin: 0 auto 2rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  box-shadow: var(--lp-shadow);
}

.lp-pricing-rate__label {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-pricing-rate__value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--lp-accent-dim);
  letter-spacing: -0.02em;
}

.lp-pricing-rate__unit {
  font-size: 0.95rem;
  color: var(--lp-muted);
}

.lp-pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 560px) {
  .lp-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.15rem 1.15rem;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  text-align: center;
}

.lp-price-card--featured {
  border-color: rgba(60, 179, 113, 0.45);
  box-shadow: 0 8px 28px rgba(60, 179, 113, 0.15);
}

.lp-price-card__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-price-card h3 {
  margin: 0.25rem 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.lp-price-card__amount {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lp-accent-dim);
  line-height: 1.05;
}

.lp-price-card__period {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: var(--lp-muted);
}

.lp-price-card__detail {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-price-card__includes {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  text-align: left;
  font-size: 0.82rem;
  color: var(--lp-muted);
  line-height: 1.45;
}

.lp-price-card__includes li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
}

.lp-price-card__includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lp-accent);
  font-weight: 700;
}

.lp-price-card__link {
  margin-top: auto;
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--lp-radius-sm);
  border: 1px solid var(--lp-border);
  background: var(--lp-surface-2);
  color: var(--lp-text);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lp-price-card__link:hover,
.lp-price-card__link:focus-visible {
  background: #fff;
  border-color: rgba(60, 179, 113, 0.35);
}

.lp-price-card--featured .lp-price-card__link {
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-dim) 100%);
  border-color: transparent;
  color: #fff;
}

.lp-price-card--featured .lp-price-card__link:hover,
.lp-price-card--featured .lp-price-card__link:focus-visible {
  filter: brightness(1.06);
}

.lp-pricing-note {
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

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

/* FAQ */
.lp-faq {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.lp-faq details {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-sm);
  overflow: hidden;
}

.lp-faq summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.lp-faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--lp-surface-2);
  color: var(--lp-muted);
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.lp-faq details[open] summary::after {
  content: "−";
}

.lp-faq details p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  font-size: 0.92rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

/* CTA band */
.lp-cta-band {
  padding: 3.5rem 0;
  text-align: center;
}

.lp-cta-band__inner {
  max-width: 36rem;
  margin: 0 auto;
  padding: 2.5rem 1.75rem;
  border-radius: var(--lp-radius);
  background: linear-gradient(135deg, var(--lp-dark-2) 0%, var(--lp-dark) 100%);
  color: #fff;
  box-shadow: var(--lp-shadow-lg);
}

.lp-cta-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-cta-band p {
  margin: 0 0 1.5rem;
  color: #9aab9e;
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Footer */
.lp-footer {
  padding: 2.5rem 0 2rem;
  background: var(--lp-dark);
  color: #9aab9e;
  font-size: 0.88rem;
}

.lp-footer__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .lp-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }
}

.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  color: #e7ece8;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
}

.lp-footer__brand .lp-brand__mark {
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.85rem;
}

.lp-footer p {
  margin: 0;
  line-height: 1.55;
}

.lp-footer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-footer nav li {
  margin-bottom: 0.45rem;
}

.lp-footer nav a {
  color: #c5d0c8;
  text-decoration: none;
  font-weight: 600;
}

.lp-footer nav a:hover,
.lp-footer nav a:focus-visible {
  color: #fff;
}

.lp-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dd9a8;
}

.lp-footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
}
