/* ============================================================
   OrçAI — Design tokens (light + dark)
   Derived from the existing design system + the ChatGPT target.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* ---- Type ---- */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Roboto', system-ui, sans-serif;

  /* ---- Radius ---- */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 26px;
  --r-pill: 999px;

  /* ---- Spacing scale (4..40) ---- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-8: 32px; --s-10: 40px;
}

/* ---------- LIGHT (default) ---------- */
.theme-light {
  --bg: #F2F5F0;
  --bg-grad: radial-gradient(120% 80% at 50% -10%, #EAF3EC 0%, #F2F5F0 46%, #F2F5F0 100%);
  --surface: #FFFFFF;
  --surface-2: #F4F8F4;
  --surface-3: #ECF1EC;
  --surface-sunk: #F0F4F0;

  --text: #18211C;
  --text-2: #5A655E;
  --text-3: #8B968F;

  --primary: #147A57;
  --primary-press: #0E5F44;
  --primary-strong: #0B523D;
  --on-primary: #FFFFFF;

  --whatsapp: #1FA45F;
  --whatsapp-press: #178A4F;

  --tint: #E7F3EC;          /* soft green tile bg */
  --tint-strong: #D7EBDD;
  --success-soft: #E4F3EB;
  --whatsapp-soft: #E6F5EC;
  --warning: #C6841A;
  --warning-soft: #FBEFD6;
  --warning-ink: #8A5B10;
  --danger: #C0463A;
  --danger-soft: #FBE7E4;
  --danger-ink: #8E2F26;
  --info-soft: #E8F0FA;

  --border: #DCE3DD;
  --border-soft: #E8EDE8;
  --border-strong: #C7D2C9;

  --shadow-card: 0 1px 2px rgba(24,33,28,.04), 0 6px 20px rgba(20,122,87,.05);
  --shadow-pop: 0 10px 30px rgba(24,33,28,.12);
  --shadow-fab: 0 10px 24px rgba(20,122,87,.34);
  --frame-bezel: #0F1512;
  --scrim: rgba(16,22,18,.42);
}

/* ---------- DARK ---------- */
.theme-dark {
  --bg: #0E1411;
  --bg-grad: radial-gradient(120% 80% at 50% -10%, #14201A 0%, #0E1411 50%, #0E1411 100%);
  --surface: #161D18;
  --surface-2: #1C241F;
  --surface-3: #222B25;
  --surface-sunk: #121814;

  --text: #ECF2ED;
  --text-2: #A4AFA7;
  --text-3: #74807A;

  --primary: #2FA876;
  --primary-press: #46BB89;
  --primary-strong: #5AC79A;
  --on-primary: #04130D;

  --whatsapp: #2BB36F;
  --whatsapp-press: #3DC57E;

  --tint: #182A21;
  --tint-strong: #1F3A2D;
  --success-soft: #17271E;
  --whatsapp-soft: #16271E;
  --warning: #E2A949;
  --warning-soft: #2A2414;
  --warning-ink: #E6B86A;
  --danger: #E27669;
  --danger-soft: #2C1A17;
  --danger-ink: #EE9387;
  --info-soft: #16212E;

  --border: #2A332D;
  --border-soft: #222A25;
  --border-strong: #36413A;

  --shadow-card: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.28);
  --shadow-pop: 0 14px 34px rgba(0,0,0,.5);
  --shadow-fab: 0 12px 26px rgba(0,0,0,.5);
  --frame-bezel: #050806;
  --scrim: rgba(0,0,0,.6);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: #20251f;
}

/* Make screen content typography sane */
.scr { font-family: var(--font-body); color: var(--text); }
.scr h1, .scr h2, .scr h3, .scr h4 { font-family: var(--font-display); margin: 0; }

/* Highlighted keyword inside titles */
.hl { color: var(--primary); }

/* hide scrollbars inside the phone */
.noscroll::-webkit-scrollbar { width: 0; height: 0; }
.noscroll { scrollbar-width: none; }

@keyframes fadeUp { from { transform: translateY(9px); } to { transform: none; } }
@keyframes pop { from { transform: scale(.96); } to { transform: none; } }
@keyframes scrIn { from { transform: translateX(var(--scr-dx, 14px)); } to { transform: none; } }
@keyframes barUp { from { transform: scaleY(.2); } to { transform: scaleY(1); } }
@keyframes confettiFall { 0% { opacity: 0; transform: translateY(-10px) rotate(0); } 12% { opacity: 1; } 100% { opacity: 1; transform: translateY(0) rotate(var(--cf-r, 90deg)); } }
@keyframes ringPulse { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.5); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* ============================================================
   Components
   ============================================================ */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  border: none; cursor: pointer; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 18px; height: 54px; width: 100%;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  user-select: none; line-height: 1; white-space: nowrap;
}
.btn:active { transform: scale(.975); }
.btn--primary { background: var(--primary); color: var(--on-primary); }
.btn--primary:active { background: var(--primary-press); }
.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:active { background: var(--whatsapp-press); }
.btn--secondary { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-strong); }
.btn--secondary:active { background: var(--surface-2); }
.btn--tonal { background: var(--tint); color: var(--primary-strong); }
.btn--tonal:active { background: var(--tint-strong); }
.btn--ghost { background: transparent; color: var(--primary); font-weight: 600; height: 48px; }
.btn--sm { height: 44px; font-size: 14px; border-radius: var(--r-sm); }
.btn--auto { width: auto; }

.tap { cursor: pointer; transition: transform .12s ease, background .15s ease, border-color .15s; }
.tap:active { transform: scale(.985); }

.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); box-shadow: var(--shadow-card);
}

.tile {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: 16px; cursor: pointer;
  transition: transform .12s ease, border-color .15s, box-shadow .15s;
  box-shadow: var(--shadow-card);
}
.tile:active { transform: scale(.99); }
.tile--sel { border-color: var(--primary); box-shadow: 0 0 0 1.5px var(--primary), var(--shadow-card); background: var(--tint); }
.tile--flat { box-shadow: none; }

.field-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 0 14px; height: 52px;
  color: var(--text); font-size: 16px; font-family: var(--font-body);
  transition: border-color .15s, box-shadow .15s;
}
.field-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--tint); }
.field-box input, .field-box textarea {
  border: none; outline: none; background: transparent; flex: 1; width: 100%;
  font-size: 16px; color: var(--text); font-family: var(--font-body); padding: 0; min-width: 0;
}
.field-box input::placeholder, .field-box textarea::placeholder { color: var(--text-3); }

.lbl { font-size: 13px; font-weight: 500; color: var(--text-2); font-family: var(--font-body); }

.divider { height: 1px; background: var(--border-soft); border: none; }

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: all .25s; }
.dot--on { width: 22px; background: var(--primary); }

.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 10px;
  border-radius: var(--r-pill); font-size: 12px; font-weight: 700; line-height: 1;
  font-family: var(--font-body);
}
.fade-up { animation: fadeUp .5s ease both; }
.pop-in { animation: pop .4s ease both; }

/* Prevent flex-column scroll bodies from collapsing their children */
.body-scroll { display: flex; flex-direction: column; }
.body-scroll > * { flex-shrink: 0; }


/* ============================================================
   OrçAI — Landing page (marketing) styles
   Reuses tokens.css variables; all marketing chrome is mk- prefixed.
   ============================================================ */

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  background-image: var(--bg-grad);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.mk-root { min-height: 100vh; }

::selection { background: var(--tint-strong); color: var(--primary-strong); }

.mk-wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 600px) { .mk-wrap { padding: 0 20px; } }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.025em; line-height: 1.08; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
.mk-hl { color: var(--primary); }

/* ---------- Buttons (marketing) ---------- */
.mk-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 16px; line-height: 1;
  border: none; cursor: pointer; border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 0 22px; height: 54px; white-space: nowrap;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease, border-color .15s;
  user-select: none;
}
.mk-btn:active { transform: scale(.97); }
.mk-btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-fab); }
.mk-btn--primary:hover { background: var(--primary-press); }
.mk-btn--whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(31,164,95,.34); }
.mk-btn--whatsapp:hover { background: var(--whatsapp-press); }
.mk-btn--ghost { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-strong); }
.mk-btn--ghost:hover { background: var(--surface-2); border-color: var(--primary); }
.mk-btn--link { background: none; color: var(--primary); height: auto; padding: 0; }

/* ---------- Top nav ---------- */
.mk-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.2) blur(12px);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.mk-nav.is-stuck { border-bottom-color: var(--border-soft); }
.mk-nav__inner { display: flex; align-items: center; gap: 18px; height: 70px; }
.mk-nav__links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.mk-nav__links a:not(.mk-btn) { font-size: 14.5px; font-weight: 500; color: var(--text-2); transition: color .15s; }
.mk-nav__links a:not(.mk-btn):hover { color: var(--text); }
.mk-nav__cta { margin-left: 4px; }
@media (max-width: 820px) { .mk-nav__links a { display: none; } .mk-nav__links { gap: 12px; } }

/* ---------- Section scaffolding ---------- */
.mk-section { padding: 96px 0; position: relative; }
.mk-section--tight { padding: 72px 0; }
@media (max-width: 720px) { .mk-section { padding: 64px 0; } .mk-section--tight { padding: 52px 0; } }

.mk-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--primary);
  background: var(--tint); padding: 7px 13px; border-radius: var(--r-pill);
}
.mk-h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: var(--text); text-wrap: balance; }
.mk-lead { font-size: clamp(16px, 2.2vw, 19px); color: var(--text-2); line-height: 1.55; text-wrap: pretty; max-width: 560px; }
.mk-section__head { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; margin-bottom: 56px; }
.mk-section__head .mk-lead { margin-inline: auto; }
@media (max-width: 720px) { .mk-section__head { margin-bottom: 40px; gap: 14px; } }

/* ============================================================
   HERO
   ============================================================ */
.mk-hero { padding-top: 56px; padding-bottom: 40px; position: relative; }
.mk-hero__badge {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--surface); border: 1px solid var(--border-soft); box-shadow: var(--shadow-card);
  padding: 7px 14px 7px 8px; border-radius: var(--r-pill); font-size: 13px; font-weight: 600; color: var(--text-2);
}
.mk-hero__badge .mk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px var(--whatsapp-soft); }
.mk-hero__title { font-size: clamp(34px, 6.4vw, 60px); font-weight: 700; color: var(--text); text-wrap: balance; }
.mk-hero__sub { font-size: clamp(16px, 2.4vw, 20px); color: var(--text-2); line-height: 1.5; text-wrap: pretty; }
.mk-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.mk-hero__note { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-3); }
.mk-hero__proof { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Variant A — split */
.mk-hero--a .mk-hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.mk-hero--a .mk-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.mk-hero--a .mk-hero__stage { display: flex; justify-content: center; }

/* Variant B — centered, phone trio below */
.mk-hero--b .mk-hero__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 26px; }
.mk-hero--b .mk-hero__copy { display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 720px; }
.mk-hero--b .mk-hero__sub { max-width: 560px; }
.mk-hero--b .mk-hero__stage { margin-top: 14px; }

/* Variant C — whatsapp forward, dark-green panel */
.mk-hero--c .mk-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  background: linear-gradient(160deg, var(--primary-strong), var(--primary));
  border-radius: var(--r-2xl); padding: 56px; color: #fff; overflow: hidden; position: relative;
}
.mk-hero--c .mk-hero__inner::after {
  content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(255,255,255,.06);
}
.mk-hero--c .mk-hero__copy { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; position: relative; z-index: 1; }
.mk-hero--c .mk-hero__title, .mk-hero--c .mk-hero__sub { color: #fff; }
.mk-hero--c .mk-hl { color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.5); text-underline-offset: 5px; }
.mk-hero--c .mk-hero__sub { color: rgba(255,255,255,.82); }
.mk-hero--c .mk-hero__note { color: rgba(255,255,255,.7); }
.mk-hero--c .mk-hero__badge { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2); color: #fff; }
.mk-hero--c .mk-btn--ghost { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); color: #fff; }
.mk-hero--c .mk-btn--ghost:hover { background: rgba(255,255,255,.22); }
.mk-hero--c .mk-hero__stage { display: flex; justify-content: center; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .mk-hero--a .mk-hero__inner, .mk-hero--c .mk-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .mk-hero--a .mk-hero__copy, .mk-hero--c .mk-hero__copy { align-items: center; text-align: center; }
  .mk-hero--a .mk-hero__sub { margin-inline: auto; }
  .mk-hero--c .mk-hero__inner { padding: 40px 28px; }
  .mk-hero__cta, .mk-hero__proof { justify-content: center; }
}

/* phone trio for variant B */
.mk-trio { display: flex; align-items: flex-end; justify-content: center; gap: -40px; }
.mk-trio > * { margin-inline: -34px; transition: transform .3s ease; }
.mk-trio > *:nth-child(1) { transform: translateY(26px) rotate(-5deg); }
.mk-trio > *:nth-child(3) { transform: translateY(26px) rotate(5deg); }
.mk-trio > *:nth-child(2) { z-index: 2; }
@media (max-width: 640px) {
  .mk-trio > *:nth-child(1), .mk-trio > *:nth-child(3) { display: none; }
  .mk-trio > * { margin-inline: 0; }
}

/* ============================================================
   PHONE MOCKUP (static, faithful to the app)
   ============================================================ */
.ph {
  width: 300px; flex-shrink: 0;
  border-radius: 40px; padding: 9px; background: var(--frame-bezel);
  box-shadow: 0 40px 80px rgba(16,30,22,.28), inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.ph--sm { width: 264px; }
.ph__screen {
  width: 100%; border-radius: 31px; overflow: hidden; position: relative;
  background: var(--bg); background-image: var(--bg-grad);
  display: flex; flex-direction: column; height: 624px;
  font-family: var(--font-body); color: var(--text);
}
.ph--sm .ph__screen { height: 548px; }
.ph__status {
  height: 38px; flex-shrink: 0; display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 0 24px; color: var(--text); font-size: 13px; font-weight: 700;
}
.ph__status svg { display: block; }
.ph__body { flex: 1; min-height: 0; overflow: hidden; display: flex; flex-direction: column; }

/* generic phone bits reused from app vocabulary */
.ph .pcard { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-card); }
.ph .pchip { display: inline-flex; align-items: center; gap: 5px; height: 24px; padding: 0 9px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; }
.ph .pbtn { font-weight: 700; border: none; border-radius: var(--r-md); display: inline-flex; align-items: center; justify-content: center; gap: 7px; height: 46px; font-size: 14.5px; font-family: var(--font-body); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.mk-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .mk-steps { grid-template-columns: 1fr; gap: 16px; } }
.mk-step {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-xl);
  box-shadow: var(--shadow-card); padding: 30px 26px; position: relative;
  display: flex; flex-direction: column; gap: 16px;
}
.mk-step__n {
  position: absolute; top: 24px; right: 26px; font-family: var(--font-display); font-weight: 700;
  font-size: 46px; color: var(--tint-strong); line-height: 1;
}
.mk-step__icon { width: 60px; height: 60px; border-radius: 18px; background: var(--tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center; }
.mk-step__t { font-size: 20px; font-weight: 700; color: var(--text); }
.mk-step__s { font-size: 15px; color: var(--text-2); line-height: 1.5; text-wrap: pretty; }

/* ============================================================
   FEATURES
   ============================================================ */
.mk-feat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .mk-feat-split { grid-template-columns: 1fr; gap: 40px; } }
.mk-feat-list { display: flex; flex-direction: column; gap: 12px; }
.mk-feat {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); padding: 20px;
}
.mk-feat__icon { width: 48px; height: 48px; border-radius: 14px; background: var(--tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mk-feat__t { font-size: 17px; font-weight: 700; color: var(--text); font-family: var(--font-display); }
.mk-feat__s { font-size: 14.5px; color: var(--text-2); line-height: 1.5; margin-top: 4px; text-wrap: pretty; }
.mk-feat-stage { display: flex; justify-content: center; }

/* ============================================================
   COMPARISON
   ============================================================ */
.mk-cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .mk-cmp { grid-template-columns: 1fr; } }
.mk-cmp__col { border-radius: var(--r-xl); padding: 30px 28px; }
.mk-cmp__col--old { background: var(--surface-2); border: 1px solid var(--border); }
.mk-cmp__col--new { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-fab); }
.mk-cmp__tag { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; opacity: .7; }
.mk-cmp__col--new .mk-cmp__tag { opacity: .85; }
.mk-cmp__h { font-size: 23px; font-weight: 700; margin: 10px 0 22px; }
.mk-cmp__list { display: flex; flex-direction: column; gap: 15px; }
.mk-cmp__item { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.45; }
.mk-cmp__col--old .mk-cmp__item { color: var(--text-2); }
.mk-cmp__mk { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.mk-cmp__col--old .mk-cmp__mk { background: var(--surface-3); color: var(--text-3); }
.mk-cmp__col--new .mk-cmp__mk { background: rgba(255,255,255,.2); color: #fff; }

/* ============================================================
   FAQ
   ============================================================ */
.mk-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.mk-faq__item { background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); overflow: hidden; }
.mk-faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px; padding: 22px 24px; font-family: var(--font-display);
  font-weight: 600; font-size: 17px; color: var(--text); }
.mk-faq__q .mk-faq__plus { margin-left: auto; flex-shrink: 0; color: var(--primary); transition: transform .25s; }
.mk-faq__item.is-open .mk-faq__plus { transform: rotate(45deg); }
.mk-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mk-faq__a-inner { padding: 0 24px 22px; font-size: 15px; color: var(--text-2); line-height: 1.6; text-wrap: pretty; }

/* ============================================================
   CTA band + footer
   ============================================================ */
.mk-cta-band {
  background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-2xl);
  box-shadow: var(--shadow-card); padding: 56px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
@media (max-width: 600px) { .mk-cta-band { padding: 40px 26px; } }
.mk-footer { padding: 56px 0 40px; border-top: 1px solid var(--border-soft); margin-top: 40px; }
.mk-footer__inner { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.mk-footer__links { display: flex; gap: 40px; flex-wrap: wrap; }
.mk-footer__col { display: flex; flex-direction: column; gap: 11px; }
.mk-footer__col h5 { font-family: var(--font-body); font-size: 12.5px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-3); margin: 0 0 3px; }
.mk-footer__col a, .mk-footer__col span { font-size: 14.5px; color: var(--text-2); }
.mk-footer__col a:hover { color: var(--primary); }
.mk-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border-soft);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: var(--text-3); }

/* reveal-on-scroll */
.mk-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.mk-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .mk-reveal { opacity: 1; transform: none; transition: none; } }
