/**
 * WorkshopHub Marketing Website
 * Premium SaaS landing page — separate from the application
 */

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

/* ── Design tokens (marketing only — not shared with SaaS app) ── */
.mkt-site {
  --mkt-font: 'Inter', system-ui, -apple-system, sans-serif;
  --mkt-font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --mkt-charcoal: #111827;
  --mkt-charcoal-light: #1f2937;
  --mkt-orange: #f97316;
  --mkt-orange-hover: #ea580c;
  --mkt-orange-soft: #fff7ed;
  --mkt-blue: #2563eb;
  --mkt-blue-hover: #1d4ed8;
  --mkt-blue-soft: #eff6ff;

  --mkt-bg: #ffffff;
  --mkt-bg-muted: #f9fafb;
  --mkt-bg-section: #f3f4f6;
  --mkt-surface: #ffffff;
  --mkt-border: #e5e7eb;
  --mkt-border-light: #f3f4f6;

  --mkt-text: #111827;
  --mkt-text-secondary: #4b5563;
  --mkt-text-muted: #6b7280;
  --mkt-text-subtle: #9ca3af;

  --mkt-radius-sm: 8px;
  --mkt-radius: 12px;
  --mkt-radius-lg: 16px;
  --mkt-radius-xl: 24px;

  --mkt-shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --mkt-shadow: 0 4px 16px rgba(17, 24, 39, 0.08);
  --mkt-shadow-lg: 0 12px 40px rgba(17, 24, 39, 0.12);
  --mkt-shadow-orange: 0 8px 24px rgba(249, 115, 22, 0.25);

  --mkt-transition: 0.2s ease;
  --mkt-transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --mkt-nav-height: 72px;
  --mkt-container: 1200px;
  --mkt-container-wide: 1280px;

  /* Type scale — keep headers consistent across sections */
  --mkt-text-hero: clamp(2.5rem, 5.5vw, 3.5rem);
  --mkt-text-section: clamp(1.75rem, 3vw, 2.25rem);
  --mkt-text-subhead: 1.0625rem;
  --mkt-text-label: 0.75rem;
  --mkt-text-body-lg: 1.125rem;
  --mkt-text-body: 1rem;
  --mkt-text-sm: 0.875rem;
}

/* ── Reset & base (scoped to marketing site) ── */
.mkt-site *,
.mkt-site *::before,
.mkt-site *::after {
  box-sizing: border-box;
}

.mkt-site {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.mkt-site body,
body.mkt-site {
  margin: 0;
  font-family: var(--mkt-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mkt-text);
  background: var(--mkt-bg);
}

.mkt-site img,
.mkt-site svg {
  display: block;
  max-width: 100%;
}

.mkt-site a {
  color: var(--mkt-blue);
  text-decoration: none;
  transition: color var(--mkt-transition);
}

.mkt-site a:hover {
  color: var(--mkt-blue-hover);
}

.mkt-site :focus-visible {
  outline: 2px solid var(--mkt-orange);
  outline-offset: 2px;
}

/* ── Utilities ── */
.mkt-container {
  width: 100%;
  max-width: var(--mkt-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.mkt-section {
  padding: 5rem 0;
}

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

.mkt-section--dark {
  background: var(--mkt-charcoal);
  color: #ffffff;
}

.mkt-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.mkt-eyebrow {
  display: inline-block;
  font-size: var(--mkt-text-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-orange);
  margin-bottom: 0.75rem;
}

.mkt-section-title {
  margin: 0 0 1rem;
  font-family: var(--mkt-font-display);
  font-size: var(--mkt-text-section);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--mkt-text);
}

.mkt-section--dark .mkt-section-title {
  color: #ffffff;
}

.mkt-section-subtitle {
  margin: 0;
  font-size: var(--mkt-text-body-lg);
  color: var(--mkt-text-secondary);
  line-height: 1.7;
}

.mkt-section--dark .mkt-section-subtitle {
  color: #d1d5db;
}

/* ── Buttons ── */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--mkt-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--mkt-transition);
  white-space: nowrap;
  text-decoration: none;
}

.mkt-btn--primary {
  background: var(--mkt-orange);
  color: #ffffff;
  border-color: var(--mkt-orange);
  box-shadow: var(--mkt-shadow-orange);
}

.mkt-btn--primary:hover {
  background: var(--mkt-orange-hover);
  border-color: var(--mkt-orange-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.mkt-btn--secondary {
  background: var(--mkt-blue);
  color: #ffffff;
  border-color: var(--mkt-blue);
}

.mkt-btn--secondary:hover {
  background: var(--mkt-blue-hover);
  border-color: var(--mkt-blue-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

.mkt-btn--outline {
  background: transparent;
  color: var(--mkt-text);
  border-color: var(--mkt-border);
}

.mkt-btn--outline:hover {
  border-color: var(--mkt-charcoal);
  color: var(--mkt-charcoal);
  background: var(--mkt-bg-muted);
}

.mkt-btn--ghost {
  background: transparent;
  color: var(--mkt-text-secondary);
  border-color: transparent;
  padding: 0.5rem 1rem;
}

.mkt-btn--ghost:hover {
  color: var(--mkt-charcoal);
  background: var(--mkt-bg-muted);
}

.mkt-btn--white {
  background: #ffffff;
  color: var(--mkt-charcoal);
  border-color: #ffffff;
}

.mkt-btn--white:hover {
  background: #f9fafb;
  color: var(--mkt-charcoal);
  transform: translateY(-1px);
}

.mkt-btn--white-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.mkt-btn--white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-1px);
}

.mkt-btn--lg {
  padding: 0.9375rem 2rem;
  font-size: 1rem;
}

.mkt-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ── Navigation ── */
.mkt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--mkt-nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--mkt-transition), box-shadow var(--mkt-transition);
}

.mkt-nav:not(.is-scrolled) .mkt-nav__brand,
.mkt-nav:not(.is-scrolled) .mkt-nav__links a,
.mkt-nav:not(.is-scrolled) .mkt-nav__actions .mkt-btn--ghost {
  color: rgba(255, 255, 255, 0.9);
}

.mkt-nav:not(.is-scrolled) .mkt-nav__links a:hover,
.mkt-nav:not(.is-scrolled) .mkt-nav__actions .mkt-btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mkt-nav:not(.is-scrolled) .mkt-nav__toggle {
  color: #ffffff;
}

.mkt-nav:not(.is-scrolled) {
  background: rgba(17, 24, 39, 0.35);
  backdrop-filter: blur(12px);
}

.mkt-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--mkt-border);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--mkt-container-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mkt-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  line-height: 0;
}

.mkt-nav__brand .wh-logo {
  filter: none;
}

.mkt-nav__brand-text {
  letter-spacing: -0.02em;
}

.mkt-nav__brand-accent {
  color: var(--mkt-orange);
}

.mkt-nav__logo-svg {
  flex-shrink: 0;
  display: none;
}

.mkt-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-nav__links a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--mkt-text-secondary);
  border-radius: var(--mkt-radius-sm);
  transition: all var(--mkt-transition);
}

.mkt-nav__links a:hover {
  color: var(--mkt-charcoal);
  background: var(--mkt-bg-muted);
}

.mkt-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mkt-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--mkt-charcoal);
}

.mkt-nav__mobile {
  display: none;
}

/* ── Hero (premium dark + CSS dashboard mockup) ── */
.mkt-hero--premium {
  position: relative;
  padding: calc(var(--mkt-nav-height) + 5rem) 0 6rem;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  width: 100%;
}

.mkt-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mkt-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 55% center;
  display: block;
}

.mkt-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.62) 38%, rgba(17, 24, 39, 0.28) 62%, rgba(17, 24, 39, 0.12) 100%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.35) 0%, rgba(17, 24, 39, 0.08) 40%, rgba(17, 24, 39, 0.55) 100%);
  pointer-events: none;
}

.mkt-hero__inner {
  position: relative;
  z-index: 1;
}

.mkt-hero--premium .mkt-hero__content {
  max-width: 640px;
}

.mkt-hero--premium .mkt-hero__title {
  color: #ffffff;
}

.mkt-hero--premium .mkt-hero__title-accent {
  background: linear-gradient(135deg, #f97316, #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-hero--premium .mkt-hero__subtitle {
  color: #d1d5db;
}

.mkt-hero--premium .mkt-hero__badge {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fdba74;
}

.mkt-hero {
  position: relative;
  padding: calc(var(--mkt-nav-height) + 4rem) 0 5rem;
  overflow: hidden;
}

.mkt-hero__content {
  max-width: 560px;
}

.mkt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--mkt-orange-soft);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mkt-orange-hover);
  margin-bottom: 1.5rem;
}

.mkt-hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--mkt-orange);
  border-radius: 50%;
  animation: mkt-pulse 2s ease infinite;
}

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

.mkt-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--mkt-font-display);
  font-size: var(--mkt-text-hero);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--mkt-charcoal);
}

.mkt-hero__title-accent {
  background: linear-gradient(135deg, var(--mkt-orange), #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mkt-hero__subtitle {
  margin: 0 0 2rem;
  font-size: var(--mkt-text-body-lg);
  line-height: 1.7;
  color: var(--mkt-text-secondary);
}

.mkt-text-accent {
  color: var(--mkt-orange);
}

/* ── Visual sections (brand photography) ── */
.mkt-section--visual {
  position: relative;
  overflow: hidden;
}

.mkt-section__visual-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
}

.mkt-section--how .mkt-section__visual-bg {
  background-image: url('/marketing/images/brand/how-it-works-bg.png');
  background-position: left center;
}

.mkt-section--how .mkt-section__visual-overlay {
  background: linear-gradient(
    90deg,
    rgba(10, 15, 25, 0.55) 0%,
    rgba(10, 15, 25, 0.72) 35%,
    rgba(10, 15, 25, 0.92) 65%,
    rgba(10, 15, 25, 0.97) 100%
  );
}

.mkt-section--how {
  padding: 4.5rem 0 5rem;
}

.mkt-section__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.94) 100%);
}

.mkt-section__visual-inner {
  position: relative;
  z-index: 1;
}

.mkt-eyebrow--light {
  color: #fdba74;
}

.mkt-section-title--light {
  color: #ffffff;
}

.mkt-section-subtitle--light {
  color: #d1d5db;
}

.mkt-section--how .mkt-step__number {
  background: var(--mkt-orange);
  color: #ffffff;
}

.mkt-section--how .mkt-step__title {
  color: #ffffff;
}

.mkt-section--how .mkt-step:not(:last-child)::after {
  background: linear-gradient(180deg, var(--mkt-orange), rgba(255, 255, 255, 0.15));
}

/* ── Comparison with photo ── */
.mkt-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: stretch;
}

.mkt-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mkt-compare__photo {
  border-radius: var(--mkt-radius-xl);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
  min-height: 100%;
}

.mkt-compare__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Trusted By ── */
.mkt-trusted {
  padding: 3rem 0;
  border-top: 1px solid var(--mkt-border-light);
  border-bottom: 1px solid var(--mkt-border-light);
  background: var(--mkt-bg);
}

.mkt-trusted__label {
  text-align: center;
  font-size: var(--mkt-text-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mkt-text-subtle);
  margin-bottom: 2rem;
}

.mkt-trusted__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3.5rem;
}

.mkt-trusted__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0.55;
  transition: opacity var(--mkt-transition);
  filter: grayscale(100%);
}

.mkt-trusted__logo:hover {
  opacity: 0.85;
}

.mkt-trusted__logo-icon {
  width: 40px;
  height: 40px;
  background: var(--mkt-orange-soft);
  border-radius: var(--mkt-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--mkt-orange-hover);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.mkt-trusted__logo-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--mkt-text-secondary);
}

/* ── Feature cards ── */
.mkt-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.mkt-feature-card {
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-lg);
  padding: 1.75rem;
  transition: all var(--mkt-transition-slow);
}

.mkt-feature-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: var(--mkt-shadow);
  transform: translateY(-4px);
}

.mkt-feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mkt-orange-soft);
  border-radius: var(--mkt-radius);
  color: var(--mkt-orange);
  margin-bottom: 1.25rem;
}

.mkt-feature-card__title {
  margin: 0 0 0.5rem;
  font-size: var(--mkt-text-subhead);
  font-weight: 700;
  color: var(--mkt-charcoal);
}

.mkt-feature-card__desc {
  margin: 0;
  font-size: var(--mkt-text-sm);
  color: var(--mkt-text-secondary);
  line-height: 1.6;
}

/* ── How it works ── */
.mkt-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}

.mkt-step {
  display: flex;
  gap: 1.25rem;
  position: relative;
}

.mkt-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 48px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(180deg, var(--mkt-orange), var(--mkt-border));
}

.mkt-step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mkt-charcoal);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.mkt-step__content {
  padding-bottom: 2rem;
}

.mkt-step__title {
  margin: 0.5rem 0 0;
  font-size: var(--mkt-text-subhead);
  font-weight: 700;
  color: var(--mkt-charcoal);
}

/* ── Dashboard showcase slider ── */
.mkt-showcase__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mkt-showcase__tab {
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mkt-text-secondary);
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--mkt-transition);
}

.mkt-showcase__tab:hover {
  border-color: var(--mkt-charcoal);
  color: var(--mkt-charcoal);
}

.mkt-showcase__tab.is-active {
  background: var(--mkt-charcoal);
  border-color: var(--mkt-charcoal);
  color: #ffffff;
}

.mkt-showcase__frame {
  position: relative;
  border-radius: var(--mkt-radius-xl);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
  border: 1px solid var(--mkt-border);
  background: #ffffff;
  aspect-ratio: 16 / 10;
  max-height: 560px;
}

.mkt-showcase__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.mkt-showcase__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.mkt-showcase__browser {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.mkt-showcase__screenshot {
  flex: 1;
  overflow: hidden;
  background: #f3f4f6;
  line-height: 0;
}

.mkt-showcase__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.mkt-showcase__browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-showcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mkt-showcase__dot--red { background: #fca5a5; }
.mkt-showcase__dot--yellow { background: #fde68a; }
.mkt-showcase__dot--green { background: #86efac; }

.mkt-showcase__url {
  margin-left: 0.75rem;
  padding: 0.25rem 1rem;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--mkt-text-muted);
}

.mkt-showcase__browser-body {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.mkt-showcase__browser-body--dashboard { background: linear-gradient(180deg, #fafafa, #ffffff); }
.mkt-showcase__browser-body--bookings { background: linear-gradient(180deg, #fff7ed, #ffffff); }
.mkt-showcase__browser-body--crm { background: linear-gradient(180deg, #eff6ff, #ffffff); }
.mkt-showcase__browser-body--jobcards { background: linear-gradient(180deg, #f0fdf4, #ffffff); }
.mkt-showcase__browser-body--growth { background: linear-gradient(180deg, #fdf4ff, #ffffff); }

.mkt-showcase__skel {
  background: #e5e7eb;
  border-radius: var(--mkt-radius-sm);
  animation: mkt-shimmer 2s ease-in-out infinite;
}

.mkt-showcase__skel--header {
  height: 20px;
  width: 40%;
  background: linear-gradient(90deg, #e5e7eb, #f3f4f6, #e5e7eb);
  background-size: 200% 100%;
}

.mkt-showcase__skel--card {
  flex: 1;
  height: 80px;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  box-shadow: var(--mkt-shadow-sm);
}

.mkt-showcase__skel--tall {
  height: 140px;
}

.mkt-showcase__skel--chart {
  flex: 1;
  min-height: 120px;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
}

.mkt-showcase__skel--list {
  height: 48px;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-sm);
}

.mkt-showcase__skel--avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mkt-showcase__skel--lines {
  flex: 1;
  height: 48px;
}

.mkt-showcase__skel--table {
  flex: 1;
  min-height: 100px;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
}

.mkt-showcase__skel--post {
  height: 72px;
  background: #ffffff;
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius);
}

.mkt-showcase__skel-row {
  display: flex;
  gap: 1rem;
}

.mkt-showcase__label {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  margin: 0;
  font-family: var(--mkt-font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-text-subtle);
}

@keyframes mkt-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ── Comparison columns ── */
.mkt-compare__col {
  border-radius: var(--mkt-radius-lg);
  padding: 2rem;
}

.mkt-compare__col--without {
  background: var(--mkt-bg-section);
  border: 1px solid var(--mkt-border);
}

/* With column styling → mockup-pattern.css */

.mkt-compare__heading {
  margin: 0 0 1.5rem;
  font-size: var(--mkt-text-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mkt-compare__col--without .mkt-compare__heading {
  color: var(--mkt-text-muted);
}

.mkt-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.mkt-compare__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.mkt-compare__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-compare__icon--bad {
  background: #fef2f2;
  color: #ef4444;
}

.mkt-compare__icon--good {
  background: rgba(249, 115, 22, 0.2);
  color: var(--mkt-orange);
}

.mkt-compare__col--with .mkt-compare__item {
  color: var(--mkt-text-secondary);
}

/* ── Pricing ── */
.mkt-pricing {
  display: flex;
  justify-content: center;
}

.mkt-pricing__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--mkt-surface);
  border: 2px solid var(--mkt-orange);
  border-radius: var(--mkt-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--mkt-shadow-lg);
}

.mkt-pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--mkt-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}

.mkt-pricing__name {
  margin: 0 0 0.5rem;
  font-size: var(--mkt-text-subhead);
  font-weight: 700;
  color: var(--mkt-charcoal);
}

.mkt-pricing__price {
  margin: 0 0 0.25rem;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mkt-charcoal);
}

.mkt-pricing__price span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--mkt-text-muted);
}

.mkt-pricing__period {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  color: var(--mkt-text-muted);
}

.mkt-pricing__features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mkt-pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--mkt-text-secondary);
}

.mkt-pricing__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--mkt-orange-soft);
  color: var(--mkt-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-pricing__cta {
  width: 100%;
}

/* ── Testimonials ── */
.mkt-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.mkt-testimonial {
  background: var(--mkt-surface);
  border: 1px solid var(--mkt-border);
  border-radius: var(--mkt-radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--mkt-transition);
}

.mkt-testimonial:hover {
  box-shadow: var(--mkt-shadow);
}

.mkt-testimonial__stars {
  display: flex;
  gap: 0.125rem;
  color: var(--mkt-orange);
  margin-bottom: 1rem;
}

.mkt-testimonial__quote {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--mkt-text-secondary);
}

.mkt-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mkt-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mkt-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--mkt-text-muted);
  border: 1px solid var(--mkt-border);
}

.mkt-testimonial__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--mkt-charcoal);
}

.mkt-testimonial__role {
  font-size: 0.8125rem;
  color: var(--mkt-text-muted);
}

/* ── FAQ ── */
.mkt-faq {
  max-width: 720px;
  margin: 0 auto;
}

.mkt-faq__item {
  border-bottom: 1px solid var(--mkt-border);
}

.mkt-faq__item:first-child {
  border-top: 1px solid var(--mkt-border);
}

.mkt-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: inherit;
  font-size: var(--mkt-text-subhead);
  font-weight: 600;
  color: var(--mkt-charcoal);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--mkt-transition);
}

.mkt-faq__question:hover {
  color: var(--mkt-orange);
}

.mkt-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--mkt-transition);
}

.mkt-faq__item.is-open .mkt-faq__icon {
  transform: rotate(45deg);
}

.mkt-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mkt-faq__item.is-open .mkt-faq__answer {
  max-height: 200px;
  padding-bottom: 1.25rem;
}

.mkt-faq__answer p {
  margin: 0;
  font-size: var(--mkt-text-sm);
  color: var(--mkt-text-secondary);
  line-height: 1.7;
}

/* ── Final CTA ── */
.mkt-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--mkt-charcoal) 0%, #1f2937 100%);
  position: relative;
  overflow: hidden;
}

.mkt-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.mkt-cta__title {
  margin: 0 0 1rem;
  font-family: var(--mkt-font-display);
  font-size: var(--mkt-text-section);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #ffffff;
  position: relative;
}

.mkt-cta__subtitle {
  margin: 0 0 2rem;
  font-size: var(--mkt-text-body-lg);
  color: #d1d5db;
  position: relative;
}

.mkt-cta .mkt-btn-group {
  justify-content: center;
  position: relative;
}

/* ── Footer ── */
.mkt-footer {
  background: var(--mkt-charcoal);
  color: #9ca3af;
  padding: 4rem 0 2rem;
}

.mkt-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.mkt-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  line-height: 0;
}

.mkt-footer__brand .wh-logo {
  height: 2.25rem;
}

.mkt-footer__tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}

.mkt-footer__heading {
  margin: 0 0 1rem;
  font-size: var(--mkt-text-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}

.mkt-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mkt-footer__links a {
  font-size: 0.9375rem;
  color: #9ca3af;
  transition: color var(--mkt-transition);
}

.mkt-footer__links a:hover {
  color: #ffffff;
}

.mkt-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mkt-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--mkt-radius-sm);
  color: #9ca3af;
  transition: all var(--mkt-transition);
}

.mkt-footer__social a:hover {
  background: var(--mkt-orange);
  color: #ffffff;
}

.mkt-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
}

/* ── Scroll animations ── */
.mkt-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mkt-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mkt-animate--delay-1 { transition-delay: 0.1s; }
.mkt-animate--delay-2 { transition-delay: 0.2s; }
.mkt-animate--delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .mkt-site { scroll-behavior: auto; }
  .mkt-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mkt-hero__badge-dot { animation: none; }
  .mkt-hero__svg { animation: none; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mkt-hero__bg {
    object-position: center 35%;
  }

  .mkt-hero__overlay {
    background:
      linear-gradient(180deg, rgba(17, 24, 39, 0.82) 0%, rgba(17, 24, 39, 0.55) 45%, rgba(17, 24, 39, 0.72) 100%);
  }

  .mkt-hero--premium .mkt-hero__content {
    max-width: none;
    text-align: center;
  }

  .mkt-hero .mkt-btn-group {
    justify-content: center;
  }

  .mkt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mkt-section {
    padding: 3.5rem 0;
  }

  .mkt-nav__links,
  .mkt-nav__actions .mkt-btn--ghost {
    display: none;
  }

  .mkt-nav__toggle {
    display: flex;
  }

  .mkt-nav__mobile {
    display: block;
    position: fixed;
    top: var(--mkt-nav-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--mkt-border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--mkt-shadow);
    transform: translateY(-110%);
    opacity: 0;
    transition: all var(--mkt-transition-slow);
    pointer-events: none;
  }

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

  .mkt-nav__mobile-links {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .mkt-nav__mobile-links a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--mkt-text);
    border-bottom: 1px solid var(--mkt-border-light);
  }

  .mkt-nav__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mkt-nav__mobile-actions .mkt-btn {
    width: 100%;
    justify-content: center;
  }

  .mkt-compare-wrap {
    grid-template-columns: 1fr;
  }

  .mkt-compare {
    grid-template-columns: 1fr;
  }

  .mkt-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mkt-trusted__logos {
    gap: 1.5rem 2rem;
  }
}
