/* ============================================================
   SportsCarLog — Marketing Pages
   "Showroom at Dusk" redesign.
   Builds on CSS variables from style.css for theme consistency.
   ============================================================ */

/* ---------- Marketing design tokens ---------- */
:root {
  --mkt-accent:           #c2703e;
  --mkt-accent-hover:     #a85d32;
  --mkt-accent-glow:      rgba(194, 112, 62, 0.25);
  --mkt-bg-deep:          #fafaf8;
  --mkt-bg-hero:          #0f0f13;
  --mkt-bg-hero-alt:      #141418;
  --mkt-text-hero:        #fff;
  --mkt-text-hero-muted:  rgba(255, 255, 255, 0.65);
  --mkt-nav-bg:           rgba(15, 15, 19, 0.85);
  --mkt-nav-border:       rgba(255, 255, 255, 0.06);
  --mkt-card-bg:          #fff;
  --mkt-card-border:      #e8e8e4;
  --mkt-card-shadow:      0 1px 3px rgba(0, 0, 0, 0.06);
  --mkt-card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
  --mkt-section-alt-bg:   #f3f2ee;
  --mkt-text:             #1a1a1e;
  --mkt-text-muted:       #5c5c66;
  --mkt-footer-bg:        #09090b;
  --mkt-step-line:        #d4d4d0;
  --mkt-highlight-border: rgba(194, 112, 62, 0.3);
  --mkt-icon-color:       var(--mkt-accent);
}

/* Dark mode tokens */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --mkt-accent:           #e8913a;
    --mkt-accent-hover:     #d07e2f;
    --mkt-accent-glow:      rgba(232, 145, 58, 0.2);
    --mkt-bg-deep:          #09090b;
    --mkt-bg-hero:          #09090b;
    --mkt-bg-hero-alt:      #0f0f13;
    --mkt-nav-bg:           rgba(9, 9, 11, 0.9);
    --mkt-nav-border:       rgba(255, 255, 255, 0.05);
    --mkt-card-bg:          #141418;
    --mkt-card-border:      #232328;
    --mkt-card-shadow:      0 1px 3px rgba(0, 0, 0, 0.2);
    --mkt-card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    --mkt-section-alt-bg:   #0f0f13;
    --mkt-text:             #e8e8e4;
    --mkt-text-muted:       #9a9aa4;
    --mkt-footer-bg:        #050506;
    --mkt-step-line:        #2a2a30;
    --mkt-highlight-border: rgba(232, 145, 58, 0.25);
    --mkt-icon-color:       var(--mkt-accent);
  }
}

:root[data-theme="dark"] {
  --mkt-accent:           #e8913a;
  --mkt-accent-hover:     #d07e2f;
  --mkt-accent-glow:      rgba(232, 145, 58, 0.2);
  --mkt-bg-deep:          #09090b;
  --mkt-bg-hero:          #09090b;
  --mkt-bg-hero-alt:      #0f0f13;
  --mkt-nav-bg:           rgba(9, 9, 11, 0.9);
  --mkt-nav-border:       rgba(255, 255, 255, 0.05);
  --mkt-card-bg:          #141418;
  --mkt-card-border:      #232328;
  --mkt-card-shadow:      0 1px 3px rgba(0, 0, 0, 0.2);
  --mkt-card-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  --mkt-section-alt-bg:   #0f0f13;
  --mkt-text:             #e8e8e4;
  --mkt-text-muted:       #9a9aa4;
  --mkt-footer-bg:        #050506;
  --mkt-step-line:        #2a2a30;
  --mkt-highlight-border: rgba(232, 145, 58, 0.25);
  --mkt-icon-color:       var(--mkt-accent);
}

/* ---------- Reset for marketing pages ---------- */
.mkt-nav,
.mkt-hero,
.mkt-page-hero,
.mkt-section,
.mkt-cta,
.mkt-footer {
  box-sizing: border-box;
}

/* ---------- Container ---------- */
.mkt-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Navigation (glass-morphism) ---------- */
.mkt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mkt-nav-bg);
  border-bottom: 1px solid var(--mkt-nav-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mkt-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

.mkt-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

.mkt-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.mkt-nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.mkt-nav-links a:hover {
  color: #fff;
}

/* Ghost sign-in button */
.mkt-btn-nav {
  background: transparent;
  color: #fff !important;
  padding: 0.4rem 1.1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s, border-color 0.2s;
}

.mkt-btn-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Mobile nav toggle */
button.mkt-nav-toggle,
button.mkt-nav-toggle:hover,
button.mkt-nav-toggle:focus,
button.mkt-nav-toggle:active {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  width: 28px;
  height: 28px;
  transform: none;
  outline: none;
  border-radius: 0;
}

.mkt-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.mkt-nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mkt-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mkt-nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.mkt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-btn:active {
  transform: scale(0.97);
}

.mkt-btn-primary {
  background: var(--mkt-accent);
  color: #fff;
  padding: 0.7rem 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.mkt-btn-primary:hover {
  background: var(--mkt-accent-hover);
  box-shadow: 0 4px 20px var(--mkt-accent-glow);
}

/* Shimmer on primary buttons */
.mkt-btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

.mkt-btn-primary:hover::after {
  left: 100%;
}

.mkt-btn-lg {
  padding: 0.9rem 2.5rem;
  font-size: 1.05rem;
}

/* Arrow icon inside CTA buttons */
.mkt-btn-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.mkt-btn:hover .mkt-btn-arrow {
  transform: translateX(3px);
}

/* ---------- Hero (Landing) ---------- */
.mkt-hero {
  background: var(--mkt-bg-hero);
  color: var(--mkt-text-hero);
  padding: 5rem 0 4rem;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Warm radial glow */
.mkt-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 40%, rgba(194, 112, 62, 0.1) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 20% 60%, rgba(194, 112, 62, 0.05) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(232, 145, 58, 0.04) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle CSS grid pattern overlay */
.mkt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Dark mode: stronger glow */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mkt-hero::before {
    background:
      radial-gradient(ellipse 700px 500px at 50% 40%, rgba(232, 145, 58, 0.12) 0%, transparent 100%),
      radial-gradient(ellipse 400px 300px at 20% 60%, rgba(232, 145, 58, 0.06) 0%, transparent 100%),
      radial-gradient(ellipse 400px 300px at 80% 30%, rgba(194, 112, 62, 0.05) 0%, transparent 100%);
  }
}

[data-theme="dark"] .mkt-hero::before {
  background:
    radial-gradient(ellipse 700px 500px at 50% 40%, rgba(232, 145, 58, 0.12) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 20% 60%, rgba(232, 145, 58, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(194, 112, 62, 0.05) 0%, transparent 100%);
}

.mkt-hero .mkt-container {
  position: relative;
  z-index: 2;
}

.mkt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mkt-accent);
  margin-bottom: 1.5rem;
}

.mkt-hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background: var(--mkt-accent);
  border-radius: 1px;
}

.mkt-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.04em;
}

.mkt-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: var(--mkt-text-hero-muted);
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.mkt-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Scroll indicator chevron */
.mkt-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.mkt-scroll-hint span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.25);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  transform: rotate(45deg);
  animation: mktScrollBounce 2s ease-in-out infinite;
}

.mkt-scroll-hint span:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.5;
}

@keyframes mktScrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ---------- Hero entrance animations ---------- */
@keyframes mktFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mkt-hero-eyebrow,
.mkt-hero h1,
.mkt-hero-sub,
.mkt-hero-actions {
  animation: mktFadeUp 0.7s ease both;
}

.mkt-hero-eyebrow { animation-delay: 0.1s; }
.mkt-hero h1      { animation-delay: 0.25s; }
.mkt-hero-sub     { animation-delay: 0.4s; }
.mkt-hero-actions  { animation-delay: 0.55s; }

/* ---------- Page Hero (inner pages) ---------- */
.mkt-page-hero {
  background: var(--mkt-bg-hero);
  color: var(--mkt-text-hero);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mkt-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 300px at 50% 60%, rgba(194, 112, 62, 0.07) 0%, transparent 100%);
  pointer-events: none;
}

.mkt-page-hero .mkt-container {
  position: relative;
  z-index: 1;
}

.mkt-page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.mkt-page-hero .mkt-hero-sub {
  color: var(--mkt-text-hero-muted);
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 480px;
}

/* ---------- Sections ---------- */
.mkt-section {
  padding: 5.5rem 0;
  background: var(--mkt-bg-deep);
}

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

.mkt-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.mkt-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--mkt-accent);
  margin-bottom: 0.75rem;
}

.mkt-section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--mkt-accent);
  border-radius: 1px;
}

.mkt-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
  color: var(--mkt-text);
}

.mkt-section-sub {
  text-align: center;
  color: var(--mkt-text-muted);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

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

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

/* Stagger delays for children */
.mkt-reveal-d1 { transition-delay: 0.05s; }
.mkt-reveal-d2 { transition-delay: 0.1s; }
.mkt-reveal-d3 { transition-delay: 0.15s; }
.mkt-reveal-d4 { transition-delay: 0.2s; }
.mkt-reveal-d5 { transition-delay: 0.25s; }
.mkt-reveal-d6 { transition-delay: 0.3s; }

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

.mkt-card {
  background: var(--mkt-card-bg);
  border: 1px solid var(--mkt-card-border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--mkt-card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.mkt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mkt-accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.25s;
}

.mkt-card:hover::before {
  opacity: 1;
}

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

.mkt-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--mkt-icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-card-icon svg {
  width: 100%;
  height: 100%;
}

.mkt-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--mkt-text);
}

.mkt-card p {
  color: var(--mkt-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- How It Works — Timeline ---------- */
.mkt-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  padding-left: 3.5rem;
}

/* Vertical line (mobile) */
.mkt-timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--mkt-step-line);
}

.mkt-step {
  position: relative;
}

.mkt-step-num {
  position: absolute;
  left: -3.5rem;
  top: -0.15rem;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border-radius: 50%;
  background: var(--mkt-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  z-index: 1;
}

/* Ghosted large numeral behind */
.mkt-step-ghost {
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  font-size: 5rem;
  font-weight: 900;
  color: var(--mkt-text);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mkt-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  color: var(--mkt-text);
}

.mkt-step p {
  color: var(--mkt-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

/* ---------- Built for Enthusiasts — Highlights ---------- */
.mkt-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.mkt-highlight {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--mkt-highlight-border);
  border-radius: 0 0.5rem 0.5rem 0;
  background: var(--mkt-card-bg);
  transition: border-color 0.2s;
}

.mkt-highlight:hover {
  border-left-color: var(--mkt-accent);
}

.mkt-highlight-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: var(--mkt-icon-color);
  margin-top: 0.1rem;
}

.mkt-highlight-icon svg {
  width: 100%;
  height: 100%;
}

.mkt-highlight-content {
  flex: 1;
  min-width: 0;
}

.mkt-highlight h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
  color: var(--mkt-text);
}

.mkt-highlight p {
  color: var(--mkt-text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- CTA Section ---------- */
.mkt-cta {
  background: var(--mkt-bg-hero-alt);
  color: var(--mkt-text-hero);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Spotlight radial glow */
.mkt-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(194, 112, 62, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mkt-cta::before {
    background: radial-gradient(ellipse, rgba(232, 145, 58, 0.1) 0%, transparent 70%);
  }
}

[data-theme="dark"] .mkt-cta::before {
  background: radial-gradient(ellipse, rgba(232, 145, 58, 0.1) 0%, transparent 70%);
}

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

.mkt-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}

.mkt-cta p {
  color: var(--mkt-text-hero-muted);
  font-size: 1rem;
  margin: 0 0 2.25rem;
  line-height: 1.6;
}

/* ---------- Prose (long-form content) ---------- */
.mkt-prose {
  max-width: 720px;
  margin: 0 auto;
}

.mkt-prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.02em;
  color: var(--mkt-text);
}

.mkt-prose h2:first-child {
  margin-top: 0;
}

.mkt-prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.5rem;
  color: var(--mkt-text);
}

.mkt-prose p {
  color: var(--mkt-text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}

.mkt-prose ul {
  color: var(--mkt-text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.mkt-prose li {
  margin-bottom: 0.35rem;
}

.mkt-prose strong {
  color: var(--mkt-text);
  font-weight: 600;
}

.mkt-prose a {
  color: var(--mkt-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mkt-prose a:hover {
  color: var(--mkt-accent-hover);
}

/* ---------- Contact Grid ---------- */
.mkt-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.mkt-contact-card {
  background: var(--mkt-card-bg);
  border: 1px solid var(--mkt-card-border);
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--mkt-card-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mkt-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mkt-card-shadow-hover);
}

.mkt-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 1.25rem;
  color: var(--mkt-icon-color);
}

.mkt-contact-icon svg {
  width: 100%;
  height: 100%;
}

.mkt-contact-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--mkt-text);
}

.mkt-contact-card p {
  color: var(--mkt-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.mkt-contact-link {
  color: var(--mkt-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.mkt-contact-link:hover {
  color: var(--mkt-accent-hover);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.mkt-footer {
  background: var(--mkt-footer-bg);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 0;
  border-top: 1px solid transparent;
  background-image: linear-gradient(var(--mkt-footer-bg), var(--mkt-footer-bg)),
    linear-gradient(90deg, transparent, rgba(194, 112, 62, 0.3), transparent);
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
}

.mkt-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mkt-footer-brand .mkt-logo {
  display: block;
  margin-bottom: 0.75rem;
}

.mkt-footer-brand p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  line-height: 1.6;
}

.mkt-footer-cols {
  display: flex;
  gap: 4rem;
}

.mkt-footer-cols h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 0.85rem;
}

.mkt-footer-cols a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.mkt-footer-cols a:hover {
  color: #fff;
}

.mkt-footer-bottom {
  padding: 1.5rem 0;
}

.mkt-footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
  margin: 0;
  letter-spacing: 0.02em;
}

/* ---------- Pricing Cards ---------- */
.mkt-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.mkt-pricing-card {
  position: relative;
  background: var(--mkt-card-bg);
  border: 1px solid var(--mkt-card-border);
  border-radius: 0.75rem;
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--mkt-card-shadow);
  display: flex;
  flex-direction: column;
}

/* Featured card — accent border, glow, slight lift */
.mkt-pricing-card--featured {
  border-color: var(--mkt-accent);
  box-shadow:
    var(--mkt-card-shadow),
    0 0 0 1px var(--mkt-accent),
    0 8px 40px var(--mkt-accent-glow);
}

/* "Recommended" badge */
.mkt-pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mkt-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 9999px;
  white-space: nowrap;
  line-height: 1;
}

.mkt-pricing-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--mkt-card-border);
}

.mkt-pricing-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mkt-text);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.mkt-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.mkt-pricing-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--mkt-text);
}

.mkt-pricing-interval {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mkt-text-muted);
}

/* Feature list */
.mkt-pricing-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
}

.mkt-pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mkt-text-muted);
  padding: 0.4rem 0;
}

.mkt-pricing-features li svg {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--mkt-accent);
  margin-top: 0.15rem;
}

/* CTA buttons */
.mkt-pricing-btn-primary {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
}

.mkt-pricing-btn-secondary {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mkt-text);
  background: transparent;
  border: 1px solid var(--mkt-card-border);
  border-radius: 0.5rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.mkt-pricing-btn-secondary:hover {
  background: var(--mkt-section-alt-bg);
  border-color: var(--mkt-text-muted);
}

/* Dark mode: featured card glow intensifies */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mkt-pricing-card--featured {
    box-shadow:
      var(--mkt-card-shadow),
      0 0 0 1px var(--mkt-accent),
      0 8px 48px rgba(232, 145, 58, 0.15);
  }
}

[data-theme="dark"] .mkt-pricing-card--featured {
  box-shadow:
    var(--mkt-card-shadow),
    0 0 0 1px var(--mkt-accent),
    0 8px 48px rgba(232, 145, 58, 0.15);
}

/* ============================================================
   Responsive — mobile first, enhance up
   ============================================================ */

/* Mobile nav breakpoint */
@media (max-width: 768px) {
  button.mkt-nav-toggle {
    display: flex !important;
  }

  .mkt-nav-links {
    display: none;
    position: absolute;
    top: 3.75rem;
    left: 0;
    right: 0;
    background: rgb(9, 9, 11);
    flex-direction: column;
    padding: 1rem 1.5rem 1.25rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--mkt-nav-border);
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }

  .mkt-nav-links.open {
    display: flex;
  }

  .mkt-nav-links a {
    font-size: 1rem;
    padding: 0.4rem 0;
    color: rgba(255, 255, 255, 0.85);
  }

  .mkt-btn-nav {
    text-align: center;
    width: 100%;
    padding: 0.6rem 1rem;
  }

  /* Hero */
  .mkt-hero {
    padding: 4rem 0 3.5rem;
    min-height: auto;
  }

  .mkt-hero-actions {
    margin-bottom: 2rem;
  }

  .mkt-scroll-hint {
    display: none;
  }

  /* Sections */
  .mkt-section {
    padding: 3.5rem 0;
  }

  .mkt-section-header {
    margin-bottom: 2.5rem;
  }

  .mkt-cta {
    padding: 3.5rem 0;
  }

  /* Timeline */
  .mkt-step-ghost {
    font-size: 3.5rem;
    top: -1rem;
  }

  /* Footer */
  .mkt-footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .mkt-footer-cols {
    gap: 2.5rem;
  }
}

/* Tablet: 2-col cards, 3-col contacts */
@media (min-width: 640px) {
  .mkt-features {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* Desktop: 3-col cards, horizontal timeline */
@media (min-width: 960px) {
  .mkt-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  /* Horizontal timeline */
  .mkt-timeline {
    flex-direction: row;
    padding-left: 0;
    gap: 0;
    justify-content: space-between;
  }

  /* Horizontal line */
  .mkt-timeline::before {
    left: 0;
    right: 0;
    top: 1.25rem;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .mkt-step {
    flex: 1;
    text-align: left;
    padding-top: 3.5rem;
    padding-right: 2rem;
  }

  .mkt-step:last-child {
    padding-right: 0;
  }

  .mkt-step-num {
    left: 0;
    top: 0;
  }

  .mkt-step-ghost {
    left: 1.5rem;
    top: 0.5rem;
    font-size: 5rem;
  }

  .mkt-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Side-by-side pricing cards */
  .mkt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mkt-pricing-card--featured {
    transform: scale(1.03);
  }
}

/* Large desktop: 3-col highlights */
@media (min-width: 1100px) {
  .mkt-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .mkt-hero-eyebrow,
  .mkt-hero h1,
  .mkt-hero-sub,
  .mkt-hero-actions {
    animation: none;
    opacity: 1;
  }

  .mkt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mkt-scroll-hint span {
    animation: none;
  }

  .mkt-btn-primary::after {
    display: none;
  }

  .mkt-card,
  .mkt-contact-card,
  .mkt-highlight,
  .mkt-pricing-btn-secondary {
    transition: none;
  }

  .mkt-pricing-card--featured {
    transform: none;
  }
}
