/* ============================================================
   Miles Mosaic — Marketing page styles
   Translated from ui_kits/marketing/ design system prototype.
   ============================================================ */

/* ---------- Shell ---------- */
.mkt-root { background: var(--mm-bg-page); min-height: 100vh; }
.mkt-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* a11y */
.sr-only-focus {
  position: absolute; left: -9999px; top: 0;
  background: var(--mm-navy); color: #fff; padding: 10px 14px;
  z-index: 1000; border-radius: 0 0 8px 0;
}
.sr-only-focus:focus { left: 0; }

/* ---------- Public nav ---------- */
.mkt-nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mm-border-subtle);
}
.mkt-nav__brand img { height: 30px; display: block; }
.mkt-nav__links { display: flex; gap: 28px; }
.mkt-nav__links a {
  color: var(--mm-fg-strong); font: 500 14px var(--mm-font-body);
  text-decoration: none; transition: color var(--mm-dur) var(--mm-ease);
}
.mkt-nav__links a:hover { color: var(--mm-gold-700); }
.mkt-nav__cta { display: flex; gap: 10px; }

/* ---------- Hero ---------- */
.mkt-hero { position: relative; padding: 36px 32px 40px; overflow: hidden; }
.mkt-hero::before {
  content: ""; position: absolute; inset: -200px -10% auto auto; width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(255,107,0,0.14), transparent 70%);
  pointer-events: none;
}
.mkt-hero::after {
  content: ""; position: absolute; inset: auto auto -300px -10%; width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(26,43,76,0.10), transparent 70%);
  pointer-events: none;
}
.mkt-hero__inner {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center;
}
.mkt-hero__title {
  margin: 10px 0 12px; color: var(--mm-navy); letter-spacing: -0.022em;
  font: 700 42px/1.1 var(--mm-font-display); text-wrap: balance;
}
.mkt-hero__amp { color: var(--mm-gold); font-style: italic; font-weight: 400; }
.mkt-hero__lede {
  font-size: 15px; color: var(--mm-fg); max-width: 520px;
  line-height: 1.55; margin: 0 0 18px;
}
.mkt-hero__ctas { display: flex; gap: 10px; margin-bottom: 16px; }
.mkt-hero__ticks {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 18px;
  font: 500 12.5px var(--mm-font-body); color: var(--mm-fg-muted); flex-wrap: wrap;
}
.mkt-hero__ticks li { display: flex; align-items: center; gap: 6px; }
.mkt-hero__ticks li::before { content: "✓"; color: var(--mm-gold); font-weight: 700; }

.mkt-hero__art { position: relative; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.mkt-hero__card {
  width: 100%; max-width: 340px; background: #fff; border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-lg); padding: 16px 18px; box-shadow: var(--mm-shadow-lg);
}
.mkt-hero__card--alt { max-width: 280px; margin-left: 60px; transform: rotate(-1.5deg); padding: 12px 16px; }
.mkt-hero__card-head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mkt-hero__card-head img {
  width: 34px; height: 34px; border-radius: 5px; border: 1px solid var(--mm-border);
  object-fit: contain; background: #fff;
}
.mkt-hero__card-head > div:nth-child(2) { flex: 1; }
.mkt-hero__card-name { font: 600 13px var(--mm-font-heading); color: var(--mm-fg-strong); }
.mkt-hero__card-sub  { font: var(--mm-caption); color: var(--mm-fg-muted); }
.mkt-hero__card-value {
  font: 700 22px/1 var(--mm-font-mono); color: var(--mm-navy);
  font-variant-numeric: tabular-nums; margin-bottom: 8px;
}
.mkt-hero__card-value span { font: var(--mm-caption); color: var(--mm-fg-muted); margin-left: 4px; }
.mkt-hero__card-foot {
  display: flex; justify-content: space-between; margin-top: 8px;
  font: var(--mm-caption); color: var(--mm-fg-muted);
}

/* ---------- Articles ---------- */
.mkt-articles { max-width: 1180px; margin: 0 auto; padding: 24px 32px 56px; }
.mkt-articles__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px; gap: 20px;
}
.mkt-articles__head h2 {
  font: 700 28px/1.2 var(--mm-font-display); color: var(--mm-navy);
  letter-spacing: -0.015em; margin: 8px 0 0; text-wrap: balance; max-width: 620px;
}
.mkt-articles__all {
  font: 600 13.5px var(--mm-font-body); color: var(--mm-accent);
  text-decoration: none; white-space: nowrap;
  transition: color var(--mm-dur) var(--mm-ease);
}
.mkt-articles__all:hover { color: var(--mm-accent-700); }
.mkt-articles__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 14px;
}
.mkt-article--feature { grid-column: span 1; grid-row: span 2; }
.mkt-article {
  background: #fff; border: 1px solid var(--mm-border); border-radius: var(--mm-radius-lg);
  overflow: hidden; box-shadow: var(--mm-shadow-card);
  transition: box-shadow var(--mm-dur) var(--mm-ease), transform var(--mm-dur) var(--mm-ease);
  display: flex; flex-direction: column;
}
.mkt-article:hover { box-shadow: var(--mm-shadow-md); transform: translateY(-2px); }
.mkt-article__link { display: flex; flex-direction: column; color: inherit; text-decoration: none; height: 100%; }
.mkt-article__visual {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  display: grid; place-items: center; flex-shrink: 0;
}
.mkt-article--feature .mkt-article__visual { aspect-ratio: 16/10; }
.mkt-article--navy   .mkt-article__visual { background: linear-gradient(135deg, #14223D 0%, #1A2B4C 50%, #253A62 100%); }
.mkt-article--orange .mkt-article__visual { background: linear-gradient(135deg, #FF6B00 0%, #FF8A33 55%, #FFAA66 100%); }
.mkt-article--teal   .mkt-article__visual { background: linear-gradient(135deg, #0F3B4A 0%, #1A4E63 50%, #2A6B84 100%); }
.mkt-article--plum   .mkt-article__visual { background: linear-gradient(135deg, #3A1F4E 0%, #55305F 55%, #754A78 100%); }
.mkt-article__pattern {
  position: absolute; inset: 0; opacity: 0.22;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,0.4) 20px 21px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.3) 0 2px, transparent 2px);
  background-size: auto, 40px 40px;
}
.mkt-article--orange .mkt-article__pattern {
  background-image:
    repeating-linear-gradient(-30deg, transparent 0 22px, rgba(26,43,76,0.3) 22px 23px),
    radial-gradient(circle at 20% 80%, rgba(26,43,76,0.25) 0 3px, transparent 3px);
  background-size: auto, 50px 50px;
}
.article-card__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.mkt-article__category {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  padding: 5px 12px; border-radius: var(--mm-radius-pill);
  background: rgba(255,255,255,0.9); color: var(--mm-navy);
  font: 600 11px var(--mm-font-body); letter-spacing: 0.08em; text-transform: uppercase;
}
.mkt-article--orange .mkt-article__category { background: var(--mm-navy); color: #fff; }
.mkt-article__body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mkt-article__meta { font: 500 11.5px var(--mm-font-body); color: var(--mm-fg-muted); letter-spacing: 0.02em; }
.mkt-article__body h3 { font: 700 15px/1.3 var(--mm-font-heading); color: var(--mm-fg-strong); margin: 0 0 2px; text-wrap: balance; }
.mkt-article--feature .mkt-article__body { padding: 18px 20px 20px; gap: 8px; }
.mkt-article--feature .mkt-article__body h3 { font-size: 20px; line-height: 1.25; }
.mkt-article__body p { color: var(--mm-fg-muted); font-size: 13px; line-height: 1.5; margin: 0; flex: 1; }
.mkt-article__cta { font: 600 12.5px var(--mm-font-body); color: var(--mm-accent); margin-top: 4px; }
.mkt-article:hover .mkt-article__cta { color: var(--mm-accent-700); }

/* ---------- Programmes strip ---------- */
.mkt-strip { padding: 32px 32px 16px; max-width: 1180px; margin: 0 auto; text-align: center; }
.mkt-strip__eyebrow { display: block; margin-bottom: 20px; }
.mkt-strip__row {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 16px; align-items: center;
}
.mkt-strip__tile {
  padding: 10px; border: 1px solid var(--mm-border); border-radius: var(--mm-radius-card);
  background: #fff; aspect-ratio: 1; display: grid; place-items: center;
}
.mkt-strip__tile img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Feature bento grid ---------- */
.mkt-features { padding: 72px 32px; max-width: 1180px; margin: 0 auto; }
.mkt-features__head { text-align: center; margin-bottom: 40px; max-width: 680px; margin-left: auto; margin-right: auto; }
.mkt-features__head h2 { color: var(--mm-navy); margin: 10px 0 12px; text-wrap: balance; }
.mkt-features__head p { color: var(--mm-fg-muted); margin: 0 auto; line-height: 1.55; }

.mkt-bento {
  display: grid; grid-template-columns: 2fr 1.2fr 1.2fr;
  grid-template-rows: auto auto; gap: 16px;
}
.mkt-bento__card {
  background: #fff; border: 1px solid var(--mm-border); border-radius: var(--mm-radius-lg);
  padding: 24px; box-shadow: var(--mm-shadow-card);
  position: relative; overflow: hidden;
  transition: box-shadow var(--mm-dur) var(--mm-ease), transform var(--mm-dur) var(--mm-ease);
  display: flex; flex-direction: column; min-height: 200px;
}
.mkt-bento__card:hover { box-shadow: var(--mm-shadow-md); transform: translateY(-2px); }
.mkt-bento__card h3 {
  font: 700 18px/1.3 var(--mm-font-heading); color: var(--mm-fg-strong);
  margin: 8px 0 6px; letter-spacing: -0.005em; text-wrap: balance;
}
.mkt-bento__card p { color: var(--mm-fg-muted); font-size: 13.5px; line-height: 1.55; margin: 0; }
.mkt-bento__tag {
  display: inline-flex; align-items: center; align-self: flex-start;
  font: 600 11px/1 var(--mm-font-mono); color: var(--mm-fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 9px; border: 1px solid var(--mm-border); border-radius: var(--mm-radius-pill);
  background: var(--mm-bg-alt);
}
.mkt-bento__tag--light { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); }
.mkt-bento__tag--pro   { color: #fff; background: var(--mm-gold); border-color: var(--mm-gold); }

.mkt-bento__card--lg  { grid-column: span 2; grid-row: span 1; min-height: 280px; }
.mkt-bento__card--navy { background: var(--mm-navy); color: #fff; border-color: var(--mm-navy-800); }
.mkt-bento__card--navy::before {
  content: ""; position: absolute; inset: -60% -30% auto auto; width: 500px; height: 400px;
  background: radial-gradient(closest-side, rgba(255,107,0,0.20), transparent 70%);
  pointer-events: none;
}
.mkt-bento__card--navy h3 { color: #fff; font-size: 26px; letter-spacing: -0.01em; max-width: 440px; }
.mkt-bento__card--navy p { color: var(--mm-fg-inverse-muted); font-size: 14px; max-width: 440px; }

/* Tier track mock inside navy bento card */
.mkt-bento__track { position: relative; margin-top: auto; padding: 40px 16px 30px; }
.mkt-bento__track-rail { position: relative; height: 6px; background: rgba(255,255,255,0.15); border-radius: 99px; }
.mkt-bento__track-fill {
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--mm-gold-400), var(--mm-gold));
  border-radius: 99px;
}
.mkt-bento__track-stop {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--mm-navy); border: 2px solid rgba(255,255,255,0.35);
}
.mkt-bento__track-stop.is-done { background: var(--mm-gold); border-color: var(--mm-gold); }
.mkt-bento__track-stop.is-here {
  background: #fff; border: 3px solid var(--mm-gold);
  width: 16px; height: 16px; box-shadow: 0 0 0 6px rgba(255,107,0,0.18);
}
.mkt-bento__track-stop span {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  font: 500 10.5px var(--mm-font-mono); color: rgba(255,255,255,0.65);
  white-space: nowrap; letter-spacing: 0.04em;
}
.mkt-bento__track-stop.is-here span { color: var(--mm-gold-300); font-weight: 600; }

/* Privacy card */
.mkt-bento__card--privacy {
  grid-column: span 1; grid-row: span 2;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F2 100%);
  border-color: #FFE0C7;
}
.mkt-bento__shield { color: var(--mm-gold); margin: auto 0 16px; align-self: center; }

/* Flight/stay mock rows */
.mkt-bento__mock { margin-top: auto; padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.mkt-bento__flight {
  display: grid; grid-template-columns: 58px 1fr auto; gap: 10px; align-items: center;
  padding: 10px 12px; background: var(--mm-bg-alt);
  border: 1px solid var(--mm-border-subtle); border-radius: 8px;
}
.mkt-bento__flight--muted { opacity: 0.55; }
.mkt-bento__flight-code { font: 600 11px var(--mm-font-mono); color: var(--mm-fg-muted); letter-spacing: 0.04em; }
.mkt-bento__flight-code strong { color: var(--mm-navy); font-weight: 700; }
.mkt-bento__flight-route { display: flex; align-items: center; gap: 6px; font: 600 12px var(--mm-font-mono); color: var(--mm-fg-strong); }
.mkt-bento__flight-value { font: 600 12px var(--mm-font-mono); color: var(--mm-navy); font-variant-numeric: tabular-nums; }
.mkt-bento__flight-value em { font: 400 10px var(--mm-font-body); font-style: normal; color: var(--mm-fg-muted); margin-left: 2px; }

/* Hotel nights grid */
.mkt-bento__nights { margin-top: auto; padding-top: 12px; }
.mkt-bento__nights-head { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.mkt-bento__nights-head img { width: 28px; height: 28px; object-fit: contain; border: 1px solid var(--mm-border); border-radius: 4px; }
.mkt-bento__nights-head strong { display: block; font: 600 12px var(--mm-font-heading); color: var(--mm-fg-strong); }
.mkt-bento__nights-head span { font: 500 11px var(--mm-font-mono); color: var(--mm-fg-muted); }
.mkt-bento__nights-grid { display: grid; grid-template-columns: repeat(25, 1fr); gap: 2px; }
.mkt-bento__nights-grid span { aspect-ratio: 1; background: var(--mm-navy-50); border-radius: 2px; }
.mkt-bento__nights-grid .is-filled { background: var(--mm-gold); }

/* Analytics card */
.mkt-bento__card--analytics {
  grid-column: span 2;
  background: linear-gradient(135deg, #F4F6FA 0%, #FFFFFF 100%); min-height: 280px;
}
.mkt-bento__bars {
  margin-top: auto; padding-top: 20px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
  align-items: end; height: 130px;
}
.mkt-bento__bar { display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.mkt-bento__bar-fill {
  width: 100%; max-width: 48px;
  background: linear-gradient(180deg, var(--mm-navy-300) 0%, var(--mm-navy-400) 100%);
  border-radius: 4px 4px 0 0; min-height: 8px;
}
.mkt-bento__bar:first-child .mkt-bento__bar-fill {
  background: linear-gradient(180deg, var(--mm-gold) 0%, var(--mm-gold-600) 100%);
}
.mkt-bento__bar span { font: 600 10px var(--mm-font-mono); color: var(--mm-fg-muted); letter-spacing: 0.06em; }

/* Pro tier simulator card */
.mkt-bento__card--pro { background: var(--mm-navy); color: #fff; border-color: var(--mm-gold); position: relative; overflow: hidden; }
.mkt-bento__card--pro::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(255,107,0,0.25), transparent 60%);
  pointer-events: none;
}
.mkt-bento__card--pro h3 { color: #fff; }
.mkt-bento__card--pro p { color: var(--mm-fg-inverse-muted); }
.mkt-bento__sim { margin-top: auto; padding-top: 14px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.mkt-bento__sim-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
  background: rgba(255,255,255,0.04); font: 500 12px var(--mm-font-body); color: var(--mm-fg-inverse-muted);
}
.mkt-bento__sim-row strong { font: 700 14px var(--mm-font-heading); color: #fff; }
.mkt-bento__sim-row--target { background: rgba(255,107,0,0.18); border-color: rgba(255,107,0,0.4); }
.mkt-bento__sim-row--target strong { color: var(--mm-gold-300); }

/* ---------- Privacy promise ---------- */
.mkt-privacy {
  max-width: 1180px; margin: 0 auto 80px; padding: 48px;
  background: var(--mm-navy); color: #fff; border-radius: var(--mm-radius-xl);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.mkt-privacy::before {
  content: ""; position: absolute; inset: -40% -40% auto auto; width: 500px; height: 500px;
  background: radial-gradient(closest-side, rgba(255,107,0,0.22), transparent 70%);
  pointer-events: none;
}
.mkt-privacy__art { display: flex; align-items: center; justify-content: center; position: relative; }
.mkt-privacy__art svg { color: var(--mm-gold-400); }
.mkt-privacy__copy { position: relative; }
.mkt-privacy__copy .mm-eyebrow { color: var(--mm-gold-400); }
.mkt-privacy__copy h2 { color: #fff; font: 700 28px/1.25 var(--mm-font-heading); margin: 8px 0 14px; }
.mkt-privacy__copy p { color: var(--mm-fg-inverse-muted); font-size: 16px; }
.mkt-privacy__ticks {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85);
}
.mkt-privacy__ticks li::before { content: "✓ "; color: var(--mm-gold-400); font-weight: 700; }

/* ---------- Pricing ---------- */
.mkt-pricing { padding: 40px 32px 80px; max-width: 1000px; margin: 0 auto; }
.mkt-pricing__head { text-align: center; margin-bottom: 40px; }
.mkt-pricing__head .mm-eyebrow { display: block; margin-bottom: 12px; }
.mkt-pricing__head h2 { color: var(--mm-navy); margin: 0 0 8px; text-wrap: balance; }
.mkt-pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mkt-plan {
  background: #fff; border: 1px solid var(--mm-border); border-radius: var(--mm-radius-lg);
  padding: 32px; position: relative; display: flex; flex-direction: column;
}
.mkt-plan--pro { border-color: var(--mm-gold); box-shadow: var(--mm-shadow-gold-glow); }
.mkt-plan__ribbon {
  position: absolute; top: -12px; right: 24px;
  background: var(--mm-gold); color: #fff;
  padding: 4px 10px; border-radius: var(--mm-radius-pill); font: 600 11px var(--mm-font-body);
}
.mkt-plan__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.mkt-plan__head h3 { margin: 0; font: 700 20px/1 var(--mm-font-heading); color: var(--mm-navy); }
.mkt-plan__price span { font: 700 32px/1 var(--mm-font-heading); color: var(--mm-fg-strong); }
.mkt-plan__price small { font: var(--mm-caption); color: var(--mm-fg-muted); margin-left: 4px; }
.mkt-plan__lede { color: var(--mm-fg-muted); margin: 0 0 20px; font-size: 14px; }
.mkt-plan__list {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--mm-fg); flex: 1;
}
.mkt-plan__list li { display: flex; align-items: flex-start; gap: 8px; }
.mkt-plan__list li::before { content: "✓"; color: var(--mm-gold); font-weight: 700; flex-shrink: 0; }

/* ---------- CTA band ---------- */
.mkt-cta {
  background: var(--mm-navy); color: #fff; padding: 72px 32px;
  text-align: center; position: relative; overflow: hidden;
}
.mkt-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.20), transparent 60%);
  pointer-events: none;
}
.mkt-cta h2 { color: #fff; margin: 0 0 12px; position: relative; }
.mkt-cta p  { color: var(--mm-fg-inverse-muted); margin: 0 0 28px; font-size: 17px; position: relative; }
.mkt-cta .mm-btn { position: relative; }

/* ---------- Footer ---------- */
.mkt-foot { background: var(--mm-navy-900); color: #fff; padding: 56px 32px 24px; }
.mkt-foot__top {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.mkt-foot__logo { height: 26px; margin-bottom: 12px; display: block; }
.mkt-foot__top p { color: var(--mm-fg-inverse-muted); font-size: 14px; max-width: 320px; }
.mkt-foot__top h5 {
  color: #fff; font: 600 13px var(--mm-font-heading);
  margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.08em;
}
.mkt-foot__top a { display: block; color: var(--mm-fg-inverse-muted); text-decoration: none; font-size: 14px; padding: 4px 0; }
.mkt-foot__top a:hover { color: var(--mm-gold-400); }
.mkt-foot__base {
  max-width: 1180px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  color: var(--mm-fg-inverse-muted); font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .mkt-hero__inner { grid-template-columns: 1fr; }
  .mkt-hero__art { display: none; }
  .mkt-articles__grid { grid-template-columns: 1fr 1fr; }
  .mkt-article--feature { grid-column: span 2; grid-row: span 1; }
  .mkt-bento { grid-template-columns: 1fr 1fr; }
  .mkt-bento__card--lg { grid-column: span 2; }
  .mkt-bento__card--privacy { grid-row: span 1; }
  .mkt-bento__card--analytics { grid-column: span 2; }
  .mkt-strip__row { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 768px) {
  .mkt-nav { padding: 14px 20px; }
  .mkt-nav__links { display: none; }
  .mkt-hero { padding: 28px 20px 32px; }
  .mkt-articles { padding: 16px 20px 40px; }
  .mkt-articles__grid { grid-template-columns: 1fr; }
  .mkt-article--feature { grid-column: span 1; }
  .mkt-features { padding: 48px 20px; }
  .mkt-bento { grid-template-columns: 1fr; }
  .mkt-bento__card--lg, .mkt-bento__card--analytics { grid-column: span 1; }
  .mkt-privacy { grid-template-columns: 1fr; padding: 32px 24px; margin: 0 20px 48px; }
  .mkt-privacy__art { display: none; }
  .mkt-pricing__grid { grid-template-columns: 1fr; }
  .mkt-pricing { padding: 32px 20px 48px; }
  .mkt-cta { padding: 48px 20px; }
  .mkt-foot { padding: 40px 20px 24px; }
  .mkt-foot__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mkt-foot__base { flex-direction: column; gap: 8px; }
  .mkt-strip { padding: 24px 20px 12px; }
  .mkt-strip__row { grid-template-columns: repeat(5, 1fr); }
}
