.mkt-body { background: var(--bg); }

.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.mkt-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mkt-brand img { height: 24px; width: auto; display: block; }
.mkt-links { display: flex; align-items: center; gap: 24px; }
.mkt-links a:not(.btn) { color: var(--muted); font-weight: 600; font-size: 0.92rem; }
.mkt-links a:not(.btn):hover { color: var(--text); text-decoration: none; }
.mkt-links .btn { padding: 9px 18px; font-size: 0.9rem; }

.mkt-hero {
  padding: 80px 24px 30px;
  text-align: center;
  background:
    radial-gradient(1000px 460px at 15% -10%, rgba(89, 133, 188, 0.12), transparent),
    radial-gradient(800px 460px at 100% 0%, rgba(22, 163, 74, 0.06), transparent);
}
.mkt-hero-inner { max-width: 720px; margin: 0 auto; }
.mkt-hero h1 { font-size: 2.4rem; line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.03em; }
.mkt-hero-sub { font-size: 1.1rem; color: var(--muted); margin: 0 0 32px; line-height: 1.55; }
.mkt-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.mkt-hero-actions .btn { width: auto; }

.mkt-hero-video {
  max-width: 860px;
  margin: 48px auto 0;
}
.mkt-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--card);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mkt-video-frame video, .mkt-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}
.mkt-video-placeholder { text-align: center; color: var(--muted); padding: 24px; }
.mkt-video-placeholder .mkt-video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 14px;
  box-shadow: var(--shadow-md);
}
.mkt-video-placeholder p { margin: 0; font-size: 0.92rem; }

.mkt-section { max-width: 1100px; margin: 0 auto; padding: 70px 24px; }
.mkt-section#features { padding-top: 30px; }
.mkt-section-alt { background: var(--card); border-radius: var(--radius); }
.mkt-section-title { text-align: center; font-size: 1.7rem; margin: 0 0 8px; letter-spacing: -0.02em; }
.mkt-section-sub { text-align: center; color: var(--muted); margin: 0 auto 40px; max-width: 560px; }

.mkt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mkt-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.mkt-feature-icon { font-size: 1.8rem; margin-bottom: 12px; }
.mkt-feature-card h3 { font-size: 1.05rem; margin: 0 0 8px; }
.mkt-feature-card:last-child {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--blue-soft);
  border-color: var(--blue);
}
.mkt-feature-card:last-child .mkt-feature-icon { margin-bottom: 0; flex-shrink: 0; font-size: 2.2rem; }
.mkt-feature-card:last-child h3 { margin-top: 0; }

@media (max-width: 720px) {
  .mkt-feature-card:last-child { flex-direction: column; text-align: center; }
}

.mkt-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.mkt-price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.mkt-price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.mkt-price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; letter-spacing: 0.02em;
}
.mkt-price-card h3 { margin: 4px 0 12px; font-size: 1.1rem; }
.mkt-price { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.02em; }
.mkt-price-suffix { font-size: 0.95rem; font-weight: 500; color: var(--muted); }

.mkt-contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.mkt-footer { border-top: 1px solid var(--border); padding: 32px 24px; }
.mkt-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.mkt-footer-logo { height: 18px; width: auto; opacity: 0.7; }

@media (max-width: 720px) {
  .mkt-grid, .mkt-price-grid { grid-template-columns: 1fr; }
  .mkt-hero h1 { font-size: 1.85rem; }
  .mkt-price-card.featured { transform: none; }
  .mkt-links { gap: 14px; }
  .mkt-links a:not(.btn) { display: none; }
}
