/* ==========================================================================
   CenterWide — marketing site
   A modern, enterprise-grade landing experience. Brand palette is drawn from
   the CenterWide logo: deep navy wordmark, teal sub-mark, and the six
   accent dots (orange, green, yellow, teal, blue, purple).
   ========================================================================== */

:root {
  --navy-900: #0b1836;
  --navy-800: #12244f;
  --navy-700: #1b3268;
  --navy-600: #26407e;
  --ink: #16223d;
  --slate-700: #3a4a66;
  --slate-500: #61708c;
  --slate-400: #8a97ad;
  --line: #e7ecf3;
  --line-soft: #eef2f8;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-softer: #fbfcfe;

  --teal: #14b8c4;
  --teal-600: #0f9aa6;
  --teal-050: #e6f8fa;
  --blue: #2f8fd8;
  --orange: #f5821f;
  --green: #7ac142;
  --yellow: #ffc61a;
  --purple: #8a3ffc;

  --primary: var(--navy-800);
  --accent: var(--teal);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(16, 34, 61, 0.06), 0 1px 3px rgba(16, 34, 61, 0.05);
  --shadow: 0 10px 30px -12px rgba(18, 36, 79, 0.18);
  --shadow-lg: 0 30px 60px -24px rgba(18, 36, 79, 0.30);
  --shadow-glow: 0 20px 60px -18px rgba(20, 184, 196, 0.45);

  --maxw: 1160px;
  --font-head: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body.mkt {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy-900); line-height: 1.12; letter-spacing: -0.02em; margin: 0; font-weight: 800; }
p { margin: 0; }

.mkt-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.mkt-section { padding: 96px 0; }
.mkt-section--tight { padding: 64px 0; }
.mkt-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-600);
  margin-bottom: 16px;
}
.mkt-eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--teal), var(--blue)); }
.mkt-section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.mkt-section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.mkt-section-head p { margin-top: 16px; color: var(--slate-500); font-size: 18px; }
.mkt-lead { color: var(--slate-500); font-size: 19px; }

/* ---------- buttons ---------- */
.mkt-btn {
  --btn-bg: var(--navy-800);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.mkt-btn svg { width: 18px; height: 18px; }
.mkt-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.mkt-btn--primary { --btn-bg: linear-gradient(120deg, var(--teal) 0%, var(--blue) 100%); box-shadow: var(--shadow-glow); }
.mkt-btn--primary:hover { box-shadow: 0 24px 60px -14px rgba(20, 184, 196, 0.6); }
.mkt-btn--dark { --btn-bg: var(--navy-800); }
.mkt-btn--light { --btn-bg: #fff; --btn-fg: var(--navy-800); border-color: var(--line); }
.mkt-btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-800); border-color: rgba(18,36,79,.16); }
.mkt-btn--ghost:hover { background: var(--bg-soft); }
.mkt-btn--on-dark { --btn-bg: rgba(255,255,255,.10); --btn-fg: #fff; border-color: rgba(255,255,255,.28); }
.mkt-btn--on-dark:hover { background: rgba(255,255,255,.18); }
.mkt-btn--lg { padding: 16px 28px; font-size: 16px; }
.mkt-btn--block { width: 100%; }

/* ---------- nav ---------- */
.mkt-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.mkt-nav.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(18,36,79,.4); }
.mkt-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.mkt-brand { display: inline-flex; align-items: center; gap: 10px; }
.mkt-brand img { height: 34px; width: auto; }
.mkt-nav-links { display: flex; align-items: center; gap: 6px; }
.mkt-nav-links a {
  color: var(--slate-700); font-weight: 600; font-size: 15px;
  padding: 8px 14px; border-radius: 999px; transition: color .15s ease, background .15s ease;
}
.mkt-nav-links a:hover { color: var(--navy-900); background: var(--bg-soft); }
.mkt-nav-links a.is-active { color: var(--navy-900); }
.mkt-nav-cta { display: flex; align-items: center; gap: 10px; }
.mkt-nav-cta .mkt-login { color: var(--navy-800); font-weight: 700; font-size: 15px; padding: 8px 12px; }
.mkt-nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center;
}
.mkt-nav-toggle span, .mkt-nav-toggle span::before, .mkt-nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; position: relative; transition: transform .2s ease, opacity .2s ease;
}
.mkt-nav-toggle span::before { position: absolute; top: -6px; }
.mkt-nav-toggle span::after { position: absolute; top: 6px; }
body.mkt-nav-open .mkt-nav-toggle span { background: transparent; }
body.mkt-nav-open .mkt-nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.mkt-nav-open .mkt-nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.mkt-hero { position: relative; overflow: hidden; padding: 84px 0 72px; }
.mkt-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 82% -5%, rgba(20,184,196,.16), transparent 60%),
    radial-gradient(50% 50% at 6% 8%, rgba(47,143,216,.14), transparent 60%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 60%);
}
.mkt-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.mkt-hero h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 800; letter-spacing: -0.03em; }
.mkt-hero h1 .mkt-grad { background: linear-gradient(115deg, var(--teal) 10%, var(--blue) 60%, var(--purple) 110%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mkt-hero p.mkt-lead { margin-top: 22px; max-width: 540px; }
.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.mkt-hero-note { margin-top: 18px; color: var(--slate-400); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.mkt-hero-note svg { width: 16px; height: 16px; color: var(--green); }
.mkt-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 8px 7px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13.5px; font-weight: 600; color: var(--slate-700); box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.mkt-pill .mkt-pill-tag { background: var(--teal-050); color: var(--teal-600); font-weight: 800; font-size: 12px; padding: 4px 10px; border-radius: 999px; }

/* hero product mock */
.mkt-hero-visual { position: relative; }
.mkt-mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
}
.mkt-mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); background: var(--bg-softer); }
.mkt-mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mkt-mock-bar i:nth-child(1){ background:#ff5f57;} .mkt-mock-bar i:nth-child(2){ background:#febc2e;} .mkt-mock-bar i:nth-child(3){ background:#28c840;}
.mkt-mock-bar span { margin-left: 10px; font-size: 12px; color: var(--slate-400); font-weight: 600; }
.mkt-mock-body { padding: 18px; display: grid; gap: 14px; }
.mkt-mock-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.mkt-kpi { border: 1px solid var(--line-soft); border-radius: 14px; padding: 14px; background: #fff; }
.mkt-kpi .mkt-kpi-num { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--navy-900); }
.mkt-kpi .mkt-kpi-lbl { font-size: 12px; color: var(--slate-400); font-weight: 600; }
.mkt-kpi .mkt-kpi-bar { height: 6px; border-radius: 999px; background: var(--line-soft); margin-top: 10px; overflow: hidden; }
.mkt-kpi .mkt-kpi-bar i { display: block; height: 100%; border-radius: 999px; }
.mkt-mock-list { border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.mkt-mock-li { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-bottom: 1px solid var(--line-soft); }
.mkt-mock-li:last-child { border-bottom: 0; }
.mkt-avatar { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 12px; font-family: var(--font-head); }
.mkt-mock-li .mkt-mli-name { font-weight: 700; font-size: 13.5px; color: var(--navy-800); }
.mkt-mock-li .mkt-mli-sub { font-size: 12px; color: var(--slate-400); }
.mkt-mock-li .mkt-tag { margin-left: auto; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; }
.mkt-tag--in { background: #e6f8ee; color: #16794a; }
.mkt-tag--out { background: #fdeede; color: #b45309; }
.mkt-float {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 12px 14px; display: flex; align-items: center; gap: 10px;
}
.mkt-float .mkt-float-ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.mkt-float .mkt-float-t { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--navy-900); }
.mkt-float .mkt-float-s { font-size: 11.5px; color: var(--slate-400); font-weight: 600; }
.mkt-float--tl { top: 26px; left: -30px; }
.mkt-float--br { bottom: 24px; right: -26px; }

/* ---------- trust / logos ---------- */
.mkt-trust { padding: 42px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-softer); }
.mkt-trust p { text-align: center; color: var(--slate-400); font-weight: 700; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.mkt-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.mkt-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--slate-500); font-family: var(--font-head); font-weight: 800; font-size: 19px; opacity: .8; }
.mkt-logo .mkt-logo-dot { width: 26px; height: 26px; border-radius: 8px; display: inline-block; }

/* ---------- feature grid ---------- */
.mkt-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mkt-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mkt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #dbe6f2; }
.mkt-card-ic { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; }
.mkt-card-ic svg { width: 24px; height: 24px; }
.mkt-card h3 { font-size: 20px; margin-bottom: 8px; }
.mkt-card p { color: var(--slate-500); font-size: 15.5px; }
.mkt-card ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.mkt-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--slate-700); }
.mkt-card li svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 2px; }

.ic-orange { background: linear-gradient(135deg, #ff9a3c, var(--orange)); }
.ic-green { background: linear-gradient(135deg, #98d85f, var(--green)); }
.ic-yellow { background: linear-gradient(135deg, #ffd64d, var(--yellow)); }
.ic-teal { background: linear-gradient(135deg, #38d0da, var(--teal)); }
.ic-blue { background: linear-gradient(135deg, #59aeed, var(--blue)); }
.ic-purple { background: linear-gradient(135deg, #a874ff, var(--purple)); }
.ic-navy { background: linear-gradient(135deg, var(--navy-600), var(--navy-800)); }
.bar-teal { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.bar-green { background: linear-gradient(90deg, var(--green), var(--teal)); }
.bar-orange { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.bg-orange{background:var(--orange);} .bg-green{background:var(--green);} .bg-yellow{background:var(--yellow);}
.bg-teal{background:var(--teal);} .bg-blue{background:var(--blue);} .bg-purple{background:var(--purple);} .bg-navy{background:var(--navy-800);}

/* ---------- alternating showcase ---------- */
.mkt-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.mkt-showcase + .mkt-showcase { margin-top: 96px; }
.mkt-showcase--rev .mkt-showcase-media { order: -1; }
.mkt-showcase h3 { font-size: clamp(24px, 3vw, 32px); }
.mkt-showcase p { color: var(--slate-500); margin-top: 14px; font-size: 17px; }
.mkt-checklist { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.mkt-checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--slate-700); font-size: 16px; }
.mkt-checklist li svg { width: 22px; height: 22px; flex: none; color: var(--teal); margin-top: 1px; }
.mkt-showcase-media {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
  box-shadow: var(--shadow); padding: 18px; position: relative;
}
.mkt-panel { border: 1px solid var(--line-soft); border-radius: 14px; overflow: hidden; }
.mkt-panel-head { padding: 12px 16px; border-bottom: 1px solid var(--line-soft); font-family: var(--font-head); font-weight: 800; color: var(--navy-800); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.mkt-panel-head .mkt-dot { width: 9px; height: 9px; border-radius: 50%; }
.mkt-panel-body { padding: 14px 16px; display: grid; gap: 12px; }
.mkt-line { height: 12px; border-radius: 6px; background: var(--line-soft); }
.mkt-line.w80{width:80%;} .mkt-line.w60{width:60%;} .mkt-line.w40{width:40%;} .mkt-line.w90{width:90%;}
.mkt-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mkt-mini { border: 1px solid var(--line-soft); border-radius: 12px; padding: 12px; }
.mkt-mini b { font-family: var(--font-head); font-size: 20px; color: var(--navy-900); display: block; }
.mkt-mini span { font-size: 12px; color: var(--slate-400); font-weight: 600; }

/* ---------- steps ---------- */
.mkt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.mkt-step { position: relative; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.mkt-step-n { font-family: var(--font-head); font-weight: 800; font-size: 15px; color: #fff; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, var(--teal), var(--blue)); margin-bottom: 16px; }
.mkt-step h3 { font-size: 19px; margin-bottom: 8px; }
.mkt-step p { color: var(--slate-500); font-size: 15px; }

/* ---------- stats band ---------- */
.mkt-band { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, #123a63 100%); color: #fff; position: relative; overflow: hidden; }
.mkt-band::after { content:""; position:absolute; inset:0; background: radial-gradient(40% 60% at 90% 10%, rgba(20,184,196,.30), transparent 60%), radial-gradient(40% 60% at 5% 100%, rgba(138,63,252,.22), transparent 60%); }
.mkt-band .mkt-container { position: relative; }
.mkt-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.mkt-stat b { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 4.4vw, 52px); background: linear-gradient(120deg,#fff, #bfefff); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.mkt-stat span { color: rgba(255,255,255,.72); font-weight: 600; font-size: 15px; }

/* ---------- testimonials ---------- */
.mkt-quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.mkt-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.mkt-stars { color: var(--yellow); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
.mkt-quote p { color: var(--slate-700); font-size: 16px; }
.mkt-quote-by { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.mkt-quote-by .mkt-avatar { width: 42px; height: 42px; font-size: 14px; }
.mkt-quote-by b { font-family: var(--font-head); color: var(--navy-800); font-size: 15px; display: block; }
.mkt-quote-by span { color: var(--slate-400); font-size: 13px; }

/* ---------- pricing ---------- */
.mkt-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.mkt-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.mkt-plan--pop { border-color: transparent; box-shadow: var(--shadow-lg); position: relative; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, var(--teal), var(--blue)) border-box; border: 2px solid transparent; transform: translateY(-6px); }
.mkt-plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, var(--teal), var(--blue)); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow); }
.mkt-plan h3 { font-size: 20px; }
.mkt-plan .mkt-plan-desc { color: var(--slate-500); font-size: 14.5px; margin-top: 6px; min-height: 42px; }
.mkt-plan-price { margin: 20px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.mkt-plan-price b { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--navy-900); }
.mkt-plan-price span { color: var(--slate-400); font-weight: 600; }
.mkt-plan-note { color: var(--slate-400); font-size: 13px; margin-bottom: 22px; }
.mkt-plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.mkt-plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--slate-700); }
.mkt-plan li svg { width: 19px; height: 19px; color: var(--teal); flex: none; margin-top: 2px; }
.mkt-plan .mkt-btn { margin-top: auto; }

/* ---------- faq ---------- */
.mkt-faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.mkt-faq details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.mkt-faq summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); font-size: 17px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.mkt-faq summary::-webkit-details-marker { display: none; }
.mkt-faq summary::after { content: "+"; font-size: 24px; color: var(--teal-600); font-weight: 600; transition: transform .2s ease; }
.mkt-faq details[open] summary::after { transform: rotate(45deg); }
.mkt-faq .mkt-faq-a { padding: 0 24px 22px; color: var(--slate-500); font-size: 16px; }

/* ---------- CTA band ---------- */
.mkt-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 55%, var(--purple) 130%);
  border-radius: var(--radius-xl); padding: 64px; text-align: center; color: #fff;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.mkt-cta::after { content:""; position:absolute; inset:0; background: radial-gradient(40% 70% at 15% 10%, rgba(255,255,255,.20), transparent 60%); }
.mkt-cta > * { position: relative; }
.mkt-cta h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); }
.mkt-cta p { color: rgba(255,255,255,.9); font-size: 19px; margin: 16px auto 30px; max-width: 560px; }
.mkt-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.mkt-footer { background: var(--navy-900); color: rgba(255,255,255,.66); padding: 72px 0 34px; }
.mkt-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.mkt-footer-brand img { height: 34px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 16px; }
.mkt-footer-brand p { max-width: 300px; font-size: 15px; }
.mkt-foot-social { display: flex; gap: 10px; margin-top: 18px; }
.mkt-foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: background .15s ease; }
.mkt-foot-social a:hover { background: rgba(255,255,255,.18); }
.mkt-foot-social svg { width: 18px; height: 18px; }
.mkt-footer h4 { color: #fff; font-size: 14px; letter-spacing: .04em; margin-bottom: 16px; }
.mkt-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.mkt-footer a { color: rgba(255,255,255,.66); font-size: 15px; }
.mkt-footer a:hover { color: #fff; }
.mkt-footer-bottom { margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.10); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 14px; }
.mkt-footer-bottom .mkt-dots { display: inline-flex; gap: 6px; }
.mkt-footer-bottom .mkt-dots i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ---------- page hero (subpages) ---------- */
.mkt-pagehero { padding: 72px 0 40px; text-align: center; position: relative; overflow: hidden; }
.mkt-pagehero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(50% 60% at 50% -10%, rgba(20,184,196,.14), transparent 65%), linear-gradient(180deg,#fbfdff,#fff); }
.mkt-pagehero h1 { font-size: clamp(34px, 5vw, 54px); }
.mkt-pagehero p { color: var(--slate-500); font-size: 19px; max-width: 640px; margin: 18px auto 0; }

/* ---------- contact ---------- */
.mkt-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.mkt-form { display: grid; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.mkt-field { display: grid; gap: 7px; }
.mkt-field label { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--navy-800); }
.mkt-field input, .mkt-field select, .mkt-field textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--ink); background: #fff;
}
.mkt-field input:focus, .mkt-field select:focus, .mkt-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-050); }
.mkt-field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mkt-contact-aside { display: grid; gap: 20px; }
.mkt-contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: var(--bg-softer); display: flex; gap: 14px; }
.mkt-contact-card .mkt-card-ic { margin: 0; width: 44px; height: 44px; }
.mkt-contact-card h4 { font-family: var(--font-head); color: var(--navy-900); font-size: 16px; margin-bottom: 4px; }
.mkt-contact-card p { color: var(--slate-500); font-size: 15px; }
.mkt-form-note { font-size: 13px; color: var(--slate-400); }
.mkt-form-ok { display: none; background: #e6f8ee; color: #16794a; border: 1px solid #bde9cf; border-radius: 12px; padding: 14px 16px; font-weight: 600; }
.mkt-form-err { display: none; background: #fdecec; color: #b42318; border: 1px solid #f3c2c2; border-radius: 12px; padding: 14px 16px; font-weight: 600; margin: 0; }
.mkt-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- misc ---------- */
.mkt-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mkt-values { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.mkt-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.mkt-center { text-align: center; }
.mkt-mt { margin-top: 40px; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .mkt-hero-grid, .mkt-showcase, .mkt-contact-grid { grid-template-columns: 1fr; }
  .mkt-showcase--rev .mkt-showcase-media { order: 0; }
  .mkt-features, .mkt-steps, .mkt-quotes, .mkt-pricing, .mkt-values { grid-template-columns: 1fr 1fr; }
  .mkt-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mkt-footer-grid { grid-template-columns: 1fr 1fr; }
  .mkt-hero-visual { max-width: 520px; margin: 8px auto 0; }
  .mkt-mock { transform: none; }
  .mkt-float--tl { left: 0; } .mkt-float--br { right: 0; }
  .mkt-plan--pop { transform: none; }
}
@media (max-width: 720px) {
  body.mkt { font-size: 16px; }
  .mkt-section { padding: 64px 0; }
  .mkt-nav-links { display: none; }
  .mkt-nav-inner { gap: 10px; }
  .mkt-nav-cta { gap: 8px; }
  .mkt-nav-cta .mkt-login { display: inline-flex; padding: 8px 6px; }
  .mkt-nav-cta .mkt-btn { padding: 9px 14px; font-size: 14px; }
  .mkt-brand img { height: 30px; }
  .mkt-features, .mkt-steps, .mkt-quotes, .mkt-pricing, .mkt-values, .mkt-grid-2, .mkt-field-2, .mkt-stat-row, .mkt-mock-row { grid-template-columns: 1fr; }
  .mkt-cta { padding: 40px 24px; }
  .mkt-footer-bottom { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .mkt-btn:hover, .mkt-card:hover { transform: none; }
}
