/* BoraOp — Luxury Enterprise SaaS (Gold / Black / White / Green) */
:root {
  --mkt-black: #0a0a0b;
  --mkt-black-soft: #121214;
  --mkt-black-card: #161618;
  --mkt-white: #ffffff;
  --mkt-gray-50: #f7f7f8;
  --mkt-gray-100: #ececee;
  --mkt-gray-400: #9ca3af;
  --mkt-gray-600: #6b7280;
  --mkt-gold: #c9a227;
  --mkt-gold-light: #e4c04d;
  --mkt-gold-dark: #9a7b1a;
  --mkt-green: #22c55e;
  --mkt-green-dark: #16a34a;
  --mkt-red-accent: #f97316;
  --mkt-wrap: 1180px;
  --mkt-font-display: "Poppins", system-ui, sans-serif;
  --mkt-font-body: "Inter", system-ui, sans-serif;
  --mkt-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --mkt-shadow-gold: 0 0 40px rgba(201, 162, 39, 0.25);
  --mkt-radius: 14px;
  --mkt-header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.mkt-body {
  margin: 0;
  font-family: var(--mkt-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #1f2937;
  background: var(--mkt-white);
  -webkit-font-smoothing: antialiased;
}

.mkt-wrap {
  max-width: var(--mkt-wrap);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mkt-gold-text {
  background: linear-gradient(135deg, var(--mkt-gold-light), var(--mkt-gold), var(--mkt-gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Header */
.mkt-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--mkt-header-h);
  background: rgba(10, 10, 11, 0.92);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  backdrop-filter: blur(14px);
}

.mkt-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--mkt-header-h);
}

.mkt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--mkt-white);
  font-family: var(--mkt-font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.mkt-logo i { color: var(--mkt-gold); font-size: 1.35rem; }

.mkt-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.mkt-nav a {
  color: var(--mkt-gray-400);
  text-decoration: none;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.mkt-nav a:hover { color: var(--mkt-gold-light); background: rgba(255,255,255,0.05); }

.mkt-lang {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  padding: 0.2rem;
  border-radius: 8px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(0, 0, 0, 0.35);
}
.mkt-lang a {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--mkt-gray-400);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mkt-lang a:hover { color: var(--mkt-gold-light); }
.mkt-lang a.is-active {
  color: var(--mkt-black);
  background: var(--mkt-gold);
}
.mkt-header__cta { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; }

.mkt-header__menu {
  display: none;
  background: transparent;
  border: 1px solid rgba(201,162,39,0.4);
  color: var(--mkt-gold);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 960px) {
  .mkt-header__menu { display: block; }
  .mkt-lang { margin-left: 0.5rem; margin-right: 0.25rem; }
  .mkt-nav {
    display: none;
    position: absolute;
    top: var(--mkt-header-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--mkt-black);
    padding: 1rem 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
  }
  .mkt-nav.is-open { display: flex; }
  .mkt-header__cta { display: none; }
  .mkt-nav.is-open + .mkt-header__cta,
  .mkt-header__inner:has(.mkt-nav.is-open) .mkt-header__cta {
    display: flex;
    width: 100%;
    padding-bottom: 1rem;
  }
}

/* Buttons */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  font-family: var(--mkt-font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.mkt-btn--gold {
  background: linear-gradient(135deg, var(--mkt-gold-light), var(--mkt-gold));
  color: var(--mkt-black);
  border-color: var(--mkt-gold);
  box-shadow: var(--mkt-shadow-gold);
}
.mkt-btn--gold:hover { transform: translateY(-2px); filter: brightness(1.05); }

.mkt-btn--outline {
  background: transparent;
  color: var(--mkt-white);
  border-color: rgba(255,255,255,0.45);
}
.mkt-btn--outline:hover { border-color: var(--mkt-gold); color: var(--mkt-gold-light); }

.mkt-btn--green {
  background: linear-gradient(135deg, #34d399, var(--mkt-green-dark));
  color: #fff;
  border-color: var(--mkt-green);
}
.mkt-btn--green:hover { transform: translateY(-2px); }

.mkt-btn--block { width: 100%; }

/* Sticky CTA */
.mkt-sticky-cta {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  box-shadow: var(--mkt-shadow), var(--mkt-shadow-gold);
  animation: mkt-pulse 3s ease-in-out infinite;
}
@keyframes mkt-pulse {
  0%, 100% { box-shadow: var(--mkt-shadow), 0 0 0 0 rgba(34, 197, 94, 0.35); }
  50% { box-shadow: var(--mkt-shadow), 0 0 0 12px rgba(34, 197, 94, 0); }
}

/* Hero */
.mkt-hero {
  padding: calc(var(--mkt-header-h) + 3rem) 0 4rem;
  background: var(--mkt-black);
  background-image:
    linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(201, 162, 39, 0.12), transparent),
    linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  color: var(--mkt-white);
  overflow: hidden;
}

.mkt-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 960px) { .mkt-hero__grid { grid-template-columns: 1fr; } }

.mkt-hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mkt-gold);
  margin: 0 0 1rem;
}

.mkt-hero h1 {
  font-family: var(--mkt-font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.mkt-hero__lead {
  font-size: 1.1rem;
  color: var(--mkt-gray-400);
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.mkt-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.mkt-hero__visual {
  position: relative;
  min-height: 320px;
  overflow: visible;
  z-index: 1;
}

.mkt-hero__dashboard {
  position: relative;
  z-index: 1;
  border-radius: var(--mkt-radius);
  border: 1px solid rgba(201, 162, 39, 0.35);
  box-shadow: var(--mkt-shadow), var(--mkt-shadow-gold);
  overflow: hidden;
  background: var(--mkt-black-card);
  aspect-ratio: 640 / 420;
}

.mkt-hero__dashboard .mkt-hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mkt-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(22, 22, 24, 0.94);
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--mkt-shadow);
  font-size: 0.8rem;
  animation: mkt-float 6s ease-in-out infinite;
  min-width: 8.5rem;
}
.mkt-float-card strong {
  display: block;
  color: var(--mkt-gold-light);
  font-size: 1.15rem;
  line-height: 1.2;
  margin-top: 0.15rem;
}
.mkt-float-card__label {
  display: block;
  color: var(--mkt-gray-400);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mkt-float-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  color: var(--mkt-green);
  font-weight: 600;
  font-size: 0.78rem;
}
.mkt-float-card__badge i { font-size: 0.85rem; }

.mkt-float-card--1 { top: 6%; right: 2%; animation-delay: 0s; }
.mkt-float-card--2 { bottom: 14%; left: 0; animation-delay: 1.5s; }
.mkt-float-card--3 { top: 38%; right: 6%; animation-delay: 3s; max-width: 11rem; }

@media (max-width: 960px) {
  .mkt-float-card--1 { right: 0; top: 4%; }
  .mkt-float-card--2 { left: 0; bottom: 10%; }
  .mkt-float-card--3 { right: 4%; top: 32%; }
}

@keyframes mkt-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections common */
.mkt-section { padding: 5rem 0; }
.mkt-section--dark { background: var(--mkt-black); color: var(--mkt-white); }
.mkt-section--light { background: var(--mkt-white); }
.mkt-section--gray { background: var(--mkt-gray-50); }

.mkt-section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mkt-gold-dark);
  margin: 0 0 0.5rem;
}
.mkt-section--dark .mkt-section__eyebrow { color: var(--mkt-gold); }

.mkt-section__title {
  font-family: var(--mkt-font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.mkt-section--dark .mkt-section__title { color: var(--mkt-white); }
.mkt-section--light .mkt-section__title,
.mkt-section--gray .mkt-section__title { color: var(--mkt-black); }

.mkt-section__sub {
  color: var(--mkt-gray-600);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 0 2.5rem;
}
.mkt-section--dark .mkt-section__sub { color: var(--mkt-gray-400); }

.mkt-center { text-align: center; margin-left: auto; margin-right: auto; }

/* Industries */
.mkt-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.mkt-industry-card {
  background: var(--mkt-white);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--mkt-radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.mkt-industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--mkt-gold);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.2), 0 0 24px rgba(34, 197, 94, 0.12);
}

.mkt-industry-card__img { aspect-ratio: 16/9; overflow: hidden; }
.mkt-industry-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mkt-industry-card__body { padding: 1.25rem; }
.mkt-industry-card__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--mkt-black);
  color: var(--mkt-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.mkt-industry-card h3 {
  font-family: var(--mkt-font-display);
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--mkt-black);
}
.mkt-industry-card p { margin: 0; font-size: 0.88rem; color: var(--mkt-gray-600); }

/* Problems */
.mkt-problem-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
@media (max-width: 768px) { .mkt-problem-row { grid-template-columns: 1fr; } }
.mkt-problem-row:nth-child(even) .mkt-problem-card { order: 2; }
.mkt-problem-row:nth-child(even) .mkt-solution-card { order: 1; }
@media (max-width: 768px) {
  .mkt-problem-row:nth-child(even) .mkt-problem-card,
  .mkt-problem-row:nth-child(even) .mkt-solution-card { order: unset; }
}

.mkt-problem-card {
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.35);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
}
.mkt-problem-card h3 { color: #fb923c; margin: 0 0 0.5rem; font-family: var(--mkt-font-display); }
.mkt-problem-card p { margin: 0; color: var(--mkt-gray-400); font-size: 0.95rem; }

.mkt-solution-card {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
}
.mkt-solution-card h3 { color: var(--mkt-green); margin: 0 0 0.5rem; font-family: var(--mkt-font-display); }
.mkt-solution-card h3 i { color: var(--mkt-gold); margin-right: 0.35rem; }
.mkt-solution-card p { margin: 0; color: #d1d5db; font-size: 0.95rem; }

/* Feature showcase alternating */
.mkt-feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.mkt-feature-block:last-child { border-bottom: none; }
.mkt-feature-block--reverse .mkt-feature-block__copy { order: 2; }
.mkt-feature-block--reverse .mkt-feature-block__media { order: 1; }
@media (max-width: 900px) {
  .mkt-feature-block, .mkt-feature-block--reverse { grid-template-columns: 1fr; }
  .mkt-feature-block--reverse .mkt-feature-block__copy,
  .mkt-feature-block--reverse .mkt-feature-block__media { order: unset; }
}

.mkt-feature-block__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mkt-gold), var(--mkt-gold-dark));
  color: var(--mkt-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.mkt-feature-block h3 {
  font-family: var(--mkt-font-display);
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  color: var(--mkt-gold-dark);
}
.mkt-section--dark .mkt-feature-block h3 { color: var(--mkt-gold-light); }

.mkt-feature-block p { margin: 0 0 1rem; color: var(--mkt-gray-600); }
.mkt-section--dark .mkt-feature-block p { color: var(--mkt-gray-400); }

.mkt-feature-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-green-dark);
}
.mkt-section--dark .mkt-feature-stat { color: var(--mkt-green); }

.mkt-feature-block__media img {
  width: 100%;
  border-radius: var(--mkt-radius);
  border: 1px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--mkt-shadow);
}

/* Timeline */
.mkt-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding: 2rem 0;
}
.mkt-timeline::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, var(--mkt-gold-dark), var(--mkt-gold-light), var(--mkt-green));
  border-radius: 2px;
}
@media (max-width: 768px) {
  .mkt-timeline { flex-direction: column; }
  .mkt-timeline::before { display: none; }
}

.mkt-timeline__step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.mkt-timeline__num {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--mkt-black);
  border: 3px solid var(--mkt-gold);
  color: var(--mkt-gold-light);
  font-family: var(--mkt-font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.mkt-timeline__step h4 {
  font-family: var(--mkt-font-display);
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--mkt-black);
}
.mkt-timeline__step p { margin: 0; font-size: 0.82rem; color: var(--mkt-gray-600); }

/* Dashboard preview carousel */
.mkt-preview-showcase {
  text-align: center;
  position: relative;
}

.mkt-preview-frame {
  max-width: 920px;
  margin: 0 auto;
  border-radius: 16px;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: var(--mkt-shadow), var(--mkt-shadow-gold);
  overflow: hidden;
  background: var(--mkt-black-card);
}

.mkt-preview-frame img {
  width: 100%;
  display: block;
  transition: opacity 0.4s;
}

.mkt-preview-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem 0 0;
}

.mkt-preview-tabs button {
  background: var(--mkt-black-card);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--mkt-gray-400);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: var(--mkt-font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.mkt-preview-tabs button.is-active,
.mkt-preview-tabs button:hover {
  border-color: var(--mkt-gold);
  color: var(--mkt-gold-light);
  background: rgba(201, 162, 39, 0.12);
}

/* Benefits glass cards */
.mkt-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .mkt-benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .mkt-benefits-grid { grid-template-columns: 1fr; } }

.mkt-benefit-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
}
.mkt-benefit-card strong {
  display: block;
  font-family: var(--mkt-font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mkt-gold-light);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.mkt-benefit-card .mkt-benefit-card__green {
  display: block;
  font-size: 0.75rem;
  color: var(--mkt-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.mkt-benefit-card h4 {
  margin: 0 0 0.35rem;
  font-family: var(--mkt-font-display);
  font-size: 0.95rem;
  color: var(--mkt-white);
}
.mkt-benefit-card p { margin: 0; font-size: 0.82rem; color: var(--mkt-gray-400); }

/* Pricing */
.mkt-billing-toggle {
  display: inline-flex;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--mkt-white);
}
.mkt-billing-toggle button {
  border: none;
  background: transparent;
  padding: 0.55rem 1.25rem;
  font-family: var(--mkt-font-display);
  font-weight: 500;
  cursor: pointer;
  color: var(--mkt-gray-600);
}
.mkt-billing-toggle button.is-active {
  background: var(--mkt-black);
  color: var(--mkt-gold-light);
}

.mkt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.mkt-price-card {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-gray-100);
  border-radius: var(--mkt-radius);
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mkt-price-card--featured {
  border: 2px solid var(--mkt-gold);
  transform: scale(1.03);
  box-shadow: var(--mkt-shadow-gold);
  z-index: 1;
}
@media (max-width: 768px) { .mkt-price-card--featured { transform: none; } }

.mkt-price-card--enterprise {
  background: var(--mkt-black);
  color: var(--mkt-white);
  border-color: rgba(201, 162, 39, 0.5);
}
.mkt-price-card--enterprise .mkt-price-tagline,
.mkt-price-card--enterprise .mkt-price-list { color: var(--mkt-gray-400); }
.mkt-price-card--enterprise h3 { color: var(--mkt-gold-light); }

.mkt-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mkt-gold);
  color: var(--mkt-black);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
}

.mkt-price-card h3 {
  font-family: var(--mkt-font-display);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.mkt-price-tagline {
  font-size: 0.88rem;
  color: var(--mkt-gray-600);
  margin: 0 0 0.5rem;
  min-height: 2.4em;
}
.mkt-price-card--enterprise .mkt-price-tagline { color: var(--mkt-gray-400); }
.mkt-price-amount {
  font-family: var(--mkt-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
  color: var(--mkt-black);
}
.mkt-price-card--enterprise .mkt-price-amount { color: var(--mkt-gold-light); }

.mkt-price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: 0.88rem;
  color: var(--mkt-gray-600);
}
.mkt-price-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  line-height: 1.45;
}
.mkt-price-list li span { flex: 1; min-width: 0; }
.mkt-price-list i {
  color: var(--mkt-green);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.mkt-price-card--enterprise .mkt-price-list li span { color: var(--mkt-gray-300); }

/* Testimonials */
.mkt-testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.mkt-testimonial-quote {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-gray-100);
  border-radius: var(--mkt-radius);
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.mkt-testimonial-quote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--mkt-black);
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}
.mkt-testimonial-quote p {
  font-size: 1.1rem;
  font-style: italic;
  color: #374151;
  margin: 0 0 1.25rem;
}
.mkt-testimonial-quote footer {
  font-family: var(--mkt-font-display);
  font-weight: 600;
  color: var(--mkt-gold-dark);
}
.mkt-testimonial-slide[hidden] { display: none; }

.mkt-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.mkt-testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--mkt-gray-100);
  cursor: pointer;
  padding: 0;
}
.mkt-testimonial-dot.is-active { background: var(--mkt-gold); }

.mkt-testimonial-quote .mkt-metric {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(34, 197, 94, 0.12);
  color: var(--mkt-green-dark);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* FAQ */
.mkt-faq { max-width: 760px; margin: 0 auto; }
.mkt-faq details {
  background: var(--mkt-white);
  border: 1px solid var(--mkt-gray-100);
  border-radius: 10px;
  margin-bottom: 0.65rem;
  padding: 0.1rem 1rem;
  transition: border-color 0.2s;
}
.mkt-faq details[open] { border-color: var(--mkt-gold); box-shadow: 0 4px 16px rgba(201,162,39,0.12); }
.mkt-faq summary {
  cursor: pointer;
  font-family: var(--mkt-font-display);
  font-weight: 600;
  padding: 0.85rem 0;
  color: var(--mkt-black);
  list-style: none;
}
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq p { margin: 0 0 1rem; color: var(--mkt-gray-600); font-size: 0.92rem; }

/* Final CTA */
.mkt-cta-banner {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--mkt-gold-dark) 0%, var(--mkt-black) 55%, var(--mkt-black) 100%);
  color: var(--mkt-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mkt-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(201, 162, 39, 0.2), transparent 45%);
  pointer-events: none;
}
.mkt-cta-banner .mkt-wrap { position: relative; z-index: 1; }
.mkt-cta-banner h2 {
  font-family: var(--mkt-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0 0 1rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.mkt-cta-banner p { color: var(--mkt-gray-400); margin: 0 0 1.75rem; }
.mkt-cta-banner__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Contact forms */
.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .mkt-contact-grid { grid-template-columns: 1fr; } }

.mkt-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--mkt-gray-600);
}
.mkt-form input,
.mkt-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--mkt-gray-100);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 0.85rem;
}
.mkt-form input:focus,
.mkt-form textarea:focus {
  outline: none;
  border-color: var(--mkt-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Footer */
.mkt-footer {
  background: var(--mkt-black);
  color: var(--mkt-gray-400);
  padding: 3.5rem 0 2rem;
  font-size: 0.88rem;
}
.mkt-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .mkt-footer__grid { grid-template-columns: 1fr 1fr; } }

.mkt-footer h4 {
  font-family: var(--mkt-font-display);
  color: var(--mkt-white);
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}
.mkt-footer a {
  color: var(--mkt-gray-400);
  text-decoration: none;
  display: block;
  margin-bottom: 0.45rem;
  transition: color 0.2s;
}
.mkt-footer a:hover { color: var(--mkt-gold-light); }
.mkt-footer__brand strong {
  display: block;
  color: var(--mkt-white);
  font-family: var(--mkt-font-display);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.mkt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Alerts & reveal */
.mkt-alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.mkt-alert--ok { background: rgba(34,197,94,0.15); border: 1px solid var(--mkt-green); color: #166534; }
.mkt-alert--err { background: rgba(239,68,68,0.1); border: 1px solid #f87171; color: #991b1b; }

.mkt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mkt-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mkt-compare-wrap { margin-top: 3rem; overflow-x: auto; }
.mkt-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}
.mkt-compare th, .mkt-compare td {
  border: 1px solid var(--mkt-gray-100);
  padding: 0.65rem 0.75rem;
  text-align: center;
}
.mkt-compare th { background: var(--mkt-black); color: var(--mkt-gold-light); }
.mkt-check { color: var(--mkt-green); font-weight: 700; }
.mkt-dash { color: var(--mkt-gray-400); }

/* Blog pages */
.mkt-page-hero {
  padding: calc(var(--mkt-header-h) + 2rem) 0 1.5rem;
  background: var(--mkt-black);
  color: var(--mkt-white);
}
.mkt-page-hero h1 { font-family: var(--mkt-font-display); margin: 0; }

.mkt-blog-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.mkt-blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--mkt-gray-100);
  border-radius: var(--mkt-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mkt-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--mkt-gold);
}
.mkt-blog-card__thumb { aspect-ratio: 16/9; overflow: hidden; }
.mkt-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.mkt-blog-card__body { padding: 1.15rem; }
.mkt-blog-card h3 { font-family: var(--mkt-font-display); margin: 0 0 0.35rem; font-size: 1.05rem; }
