/* morewebdesign.com -- style.css
   Theme: Dark Navy + Electric Blue + Cyan
   Nav:   Split centered logo
   Hero:  Asymmetric text + browser mockup
   CSS prefix: mwd-
   Fonts: Space Grotesk + Inter (Google Fonts)
   ---------------------------------------------------------------- */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --mwd-bg:       #080B12;
  --mwd-surface:  #0E1118;
  --mwd-card:     #141B27;
  --mwd-card2:    #1A2237;
  --mwd-border:   rgba(255,255,255,0.07);
  --mwd-border2:  rgba(255,255,255,0.13);
  --mwd-blue:     #2563EB;
  --mwd-blue-l:   #3B82F6;
  --mwd-blue-glo: rgba(37,99,235,0.18);
  --mwd-cyan:     #00D4FF;
  --mwd-cyan-d:   #00B0D8;
  --mwd-cyan-glo: rgba(0,212,255,0.14);
  --mwd-red:      #EF4444;
  --mwd-text:     #CBD5E1;
  --mwd-head:     #F1F5F9;
  --mwd-muted:    #64748B;
  --mwd-muted2:   #94A3B8;
  --mwd-white:    #F8FAFF;
  --mwd-max:      1200px;
  --mwd-nav-h:    68px;
  --mwd-r:        8px;
  --mwd-r2:       14px;
  --mwd-r3:       20px;
  --mwd-ease:     all 0.24s cubic-bezier(0.4,0,0.2,1);
  --mwd-fh:       'Space Grotesk', sans-serif;
  --mwd-fb:       'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--mwd-bg);
  color: var(--mwd-text);
  font-family: var(--mwd-fb);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--mwd-fh);
  color: var(--mwd-head);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: .95rem; line-height: 1.75; color: var(--mwd-text); }

/* ── Layout helpers ─────────────────────────────────────────────── */
.mwd-shell  { max-width: var(--mwd-max); margin: 0 auto; padding: 0 2.5rem; }
.mwd-pad    { padding: 7rem 0; }
.mwd-pad-sm { padding: 4.5rem 0; }
.mwd-pad-xs { padding: 2.5rem 0; }

/* ── Buttons ────────────────────────────────────────────────────── */
.mwd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mwd-fh);
  font-size: .9rem;
  font-weight: 600;
  background: var(--mwd-blue);
  color: #fff;
  padding: .75rem 1.75rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
  white-space: nowrap;
}
.mwd-btn-primary:hover { background: var(--mwd-blue-l); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(37,99,235,0.35); }

.mwd-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mwd-fh);
  font-size: .9rem;
  font-weight: 600;
  color: var(--mwd-muted2);
  padding: .75rem 1.5rem;
  border-radius: var(--mwd-r);
  border: 1px solid var(--mwd-border2);
  background: transparent;
  transition: var(--mwd-ease);
  white-space: nowrap;
}
.mwd-btn-ghost:hover { color: var(--mwd-head); border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

.mwd-btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--mwd-fh);
  font-size: .9rem;
  font-weight: 700;
  background: var(--mwd-cyan);
  color: #080B12;
  padding: .8rem 2rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
}
.mwd-btn-cyan:hover { background: var(--mwd-cyan-d); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,212,255,0.3); }

/* ── Rail (split centered nav) ──────────────────────────────────── */
.mwd-rail {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--mwd-nav-h);
  background: rgba(8,11,18,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mwd-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.mwd-rail.scrolled {
  background: rgba(8,11,18,0.96);
  box-shadow: 0 1px 30px rgba(0,0,0,0.5);
}
.mwd-rail-inner {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.mwd-rail-left  { display: flex; align-items: center; gap: .25rem; }
.mwd-rail-right { display: flex; align-items: center; gap: .25rem; justify-content: flex-end; }
.mwd-rail-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
}
.mwd-rail-logo-mark {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.mwd-rail-logo-name {
  font-family: var(--mwd-fh);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mwd-white);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
/* Nav links */
.mwd-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.mwd-nav-link {
  font-family: var(--mwd-fh);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mwd-muted2);
  padding: .4rem .8rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
  display: flex;
  align-items: center;
  gap: .25rem;
  white-space: nowrap;
}
.mwd-nav-link:hover, .mwd-nav-link.mwd-active { color: var(--mwd-head); background: rgba(255,255,255,0.05); }
.mwd-nav-link svg { transition: transform 0.2s; }
.mwd-nav-item:hover > .mwd-nav-link svg,
.mwd-nav-item:focus-within > .mwd-nav-link svg { transform: rotate(180deg); }
/* Dropdown */
.mwd-drop {
  position: absolute;
  top: calc(100% + .75rem);
  left: 0;
  min-width: 220px;
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.mwd-nav-item:hover > .mwd-drop,
.mwd-nav-item:focus-within > .mwd-drop { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mwd-drop-link {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .65rem .75rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
}
.mwd-drop-link:hover { background: rgba(255,255,255,0.06); }
.mwd-drop-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.mwd-drop-nm { font-family: var(--mwd-fh); font-size: .85rem; font-weight: 600; color: var(--mwd-head); }
.mwd-drop-tg { font-size: .75rem; color: var(--mwd-muted); margin-top: .1rem; }
/* Mobile overlay */
.mwd-rail-ham {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: var(--mwd-muted2);
  border-radius: var(--mwd-r);
  border: 1px solid var(--mwd-border);
  transition: var(--mwd-ease);
}
.mwd-rail-ham:hover { color: var(--mwd-head); }
.mwd-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(8,11,18,0.97);
  backdrop-filter: blur(6px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.mwd-overlay.open { opacity: 1; }
.mwd-overlay-link {
  font-family: var(--mwd-fh);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--mwd-muted2);
  padding: .5rem 2rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
}
.mwd-overlay-link:hover { color: var(--mwd-head); }
.mwd-overlay-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  color: var(--mwd-muted);
  font-size: 1.5rem;
  line-height: 1;
  padding: .5rem;
}
.mwd-overlay-close:hover { color: var(--mwd-head); }

/* ── Hero (BEAM) ────────────────────────────────────────────────── */
.mwd-beam {
  min-height: 100vh;
  padding-top: calc(var(--mwd-nav-h) + 4rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Radial glow bg */
.mwd-beam::before {
  content: '';
  position: absolute;
  top: -10%; left: -5%;
  width: 55%; height: 70%;
  background: radial-gradient(ellipse at 30% 40%, rgba(37,99,235,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.mwd-beam::after {
  content: '';
  position: absolute;
  top: 30%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,212,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.mwd-beam-inner {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mwd-beam-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: .28rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.mwd-beam-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mwd-cyan);
  animation: mwd-pulse 2s ease-in-out infinite;
}
@keyframes mwd-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.mwd-beam h1 { margin-bottom: 1.5rem; }
.mwd-beam h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--mwd-blue-l), var(--mwd-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mwd-beam-sub {
  font-size: 1.08rem;
  color: var(--mwd-muted2);
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.mwd-beam-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.mwd-beam-trust {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--mwd-border);
}
.mwd-trust-block { }
.mwd-trust-n {
  font-family: var(--mwd-fh);
  font-size: 2rem;
  font-weight: 700;
  color: var(--mwd-head);
  line-height: 1;
  margin-bottom: .2rem;
}
.mwd-trust-l {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mwd-muted);
}
/* Right: browser mockup panels */
.mwd-beam-vis {
  position: relative;
}
.mwd-beam-browser {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.15);
}
.mwd-browser-bar {
  background: var(--mwd-surface);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-browser-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mwd-browser-url {
  flex: 1;
  background: var(--mwd-card);
  border-radius: 4px;
  height: 20px;
  margin: 0 .5rem;
  display: flex;
  align-items: center;
  padding: 0 .5rem;
}
.mwd-browser-url-txt {
  font-size: .65rem;
  color: var(--mwd-muted);
  font-family: monospace;
}
.mwd-browser-body {
  padding: 0;
}
/* Floating badge on vis */
.mwd-beam-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.5rem;
  background: var(--mwd-cyan);
  color: #080B12;
  border-radius: var(--mwd-r);
  padding: .75rem 1.1rem;
  font-family: var(--mwd-fh);
  font-weight: 700;
  font-size: .82rem;
  box-shadow: 0 8px 24px rgba(0,212,255,0.3);
  white-space: nowrap;
}

/* ── Ticker strip ───────────────────────────────────────────────── */
.mwd-ticker {
  padding: 1.25rem 0;
  border-top: 1px solid var(--mwd-border);
  border-bottom: 1px solid var(--mwd-border);
  background: var(--mwd-surface);
  overflow: hidden;
  white-space: nowrap;
}
.mwd-ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: mwd-scroll 25s linear infinite;
}
.mwd-ticker-track:hover { animation-play-state: paused; }
.mwd-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--mwd-fh);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mwd-muted);
}
.mwd-ticker-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--mwd-blue); flex-shrink: 0; }
@keyframes mwd-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Services grid ──────────────────────────────────────────────── */
.mwd-catalog {
  background: var(--mwd-bg);
}
.mwd-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.mwd-catalog-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .75rem;
}
.mwd-catalog-head h2 { margin: 0; }
.mwd-catalog-link {
  font-family: var(--mwd-fh);
  font-size: .85rem;
  font-weight: 600;
  color: var(--mwd-cyan);
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  transition: var(--mwd-ease);
  white-space: nowrap;
}
.mwd-catalog-link:hover { gap: .6rem; }
/* Bento 3x2 grid */
.mwd-catalog-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mwd-border);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  overflow: hidden;
}
.mwd-catalog-cell {
  background: var(--mwd-card);
  padding: 2.25rem 2rem;
  transition: background 0.22s ease;
  position: relative;
  overflow: hidden;
}
.mwd-catalog-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s;
}
.mwd-catalog-cell:hover { background: var(--mwd-card2); }
.mwd-catalog-cell:hover::after { opacity: 1; }
.mwd-catalog-cell-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mwd-catalog-cell h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.mwd-catalog-cell p {
  font-size: .85rem;
  color: var(--mwd-muted2);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.mwd-catalog-cell-price {
  font-family: var(--mwd-fh);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mwd-head);
  margin-bottom: .25rem;
}
.mwd-catalog-cell-unit {
  font-size: .72rem;
  color: var(--mwd-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mwd-catalog-cell-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--mwd-fh);
  font-size: .8rem;
  font-weight: 600;
  color: var(--mwd-muted);
  margin-top: 1.25rem;
  transition: var(--mwd-ease);
}
.mwd-catalog-cell:hover .mwd-catalog-cell-cta { color: var(--mwd-cyan); gap: .55rem; }

/* ── Numbers row ────────────────────────────────────────────────── */
.mwd-counters {
  background: var(--mwd-surface);
  border-top: 1px solid var(--mwd-border);
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.mwd-counter-cell {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid var(--mwd-border);
}
.mwd-counter-cell:last-child { border-right: none; }
.mwd-counter-n {
  font-family: var(--mwd-fh);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--mwd-head);
  line-height: 1;
  margin-bottom: .4rem;
}
.mwd-counter-n span {
  background: linear-gradient(135deg, var(--mwd-blue-l), var(--mwd-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mwd-counter-l {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mwd-muted);
}

/* ── Work showcase ──────────────────────────────────────────────── */
.mwd-works {
  background: var(--mwd-bg);
}
.mwd-works-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}
.mwd-works-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .75rem;
}
.mwd-works-header h2 { margin: 0; }
.mwd-work-items { display: flex; flex-direction: column; gap: 1px; }
.mwd-work-item {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transition: border-color 0.22s ease;
  margin-bottom: 1.5rem;
}
.mwd-work-item:hover { border-color: var(--mwd-border2); }
.mwd-work-item:nth-child(even) { direction: rtl; }
.mwd-work-item:nth-child(even) > * { direction: ltr; }
.mwd-work-vis {
  background: var(--mwd-surface);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mwd-work-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mwd-work-sector {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .22rem .75rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.mwd-work-body h3 {
  font-size: 1.35rem;
  margin-bottom: .9rem;
  line-height: 1.3;
}
.mwd-work-body p {
  font-size: .88rem;
  color: var(--mwd-muted2);
  line-height: 1.72;
  margin-bottom: 2rem;
}
.mwd-work-kpis {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mwd-border);
  margin-bottom: 1.5rem;
}
.mwd-work-kpi-n {
  font-family: var(--mwd-fh);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mwd-head);
  line-height: 1;
}
.mwd-work-kpi-l {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mwd-muted);
  margin-top: .25rem;
}
.mwd-work-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.mwd-work-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--mwd-muted);
  border: 1px solid var(--mwd-border);
  padding: .2rem .7rem;
  border-radius: 100px;
}

/* ── Process / Steps ────────────────────────────────────────────── */
.mwd-journey {
  background: var(--mwd-surface);
}
.mwd-journey-top {
  text-align: center;
  margin-bottom: 4rem;
}
.mwd-journey-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-cyan);
  margin-bottom: .75rem;
}
.mwd-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mwd-border);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  overflow: hidden;
}
.mwd-journey-step {
  background: var(--mwd-card);
  padding: 2.5rem 2.25rem;
  position: relative;
}
.mwd-journey-num {
  font-family: var(--mwd-fh);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.mwd-journey-step-h {
  font-family: var(--mwd-fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mwd-journey-step h3 {
  font-size: 1.3rem;
  margin-bottom: .75rem;
}
.mwd-journey-step p {
  font-size: .85rem;
  color: var(--mwd-muted2);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.mwd-journey-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.mwd-journey-list li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: var(--mwd-text);
}
.mwd-journey-list li svg { color: var(--mwd-cyan); flex-shrink: 0; }
.mwd-journey-illus {
  margin-top: 1.75rem;
  border-radius: var(--mwd-r);
  overflow: hidden;
  border: 1px solid var(--mwd-border);
}

/* ── Testimonials ───────────────────────────────────────────────── */
.mwd-voices {
  background: var(--mwd-bg);
}
.mwd-voices-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.mwd-voices-sidebar {}
.mwd-voices-sidebar-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .75rem;
  display: block;
}
.mwd-voices-sidebar h2 { margin-bottom: 1.5rem; }
.mwd-voices-sidebar p { font-size: .88rem; color: var(--mwd-muted2); }
.mwd-voices-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.mwd-voice-card {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 1.75rem;
  transition: var(--mwd-ease);
}
.mwd-voice-card:hover { border-color: var(--mwd-border2); background: var(--mwd-card2); }
.mwd-voice-card:first-child {
  background: var(--mwd-card2);
  border-color: rgba(37,99,235,0.25);
}
.mwd-voice-stars {
  display: flex;
  gap: .2rem;
  color: var(--mwd-cyan);
  margin-bottom: 1rem;
}
.mwd-voice-text {
  font-size: .88rem;
  color: var(--mwd-muted2);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.mwd-voice-who {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.mwd-voice-init {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mwd-blue), var(--mwd-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mwd-fh);
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.mwd-voice-nm { font-family: var(--mwd-fh); font-size: .85rem; font-weight: 600; color: var(--mwd-head); }
.mwd-voice-role { font-size: .75rem; color: var(--mwd-muted); }

/* ── Pricing tiers ──────────────────────────────────────────────── */
.mwd-tiers {
  background: var(--mwd-surface);
}
.mwd-tiers-top {
  text-align: center;
  margin-bottom: 4rem;
}
.mwd-tiers-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .75rem;
}
.mwd-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mwd-tier-card {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 2.25rem;
  position: relative;
  transition: var(--mwd-ease);
  display: flex;
  flex-direction: column;
}
.mwd-tier-card:hover { border-color: var(--mwd-border2); }
.mwd-tier-card.featured {
  border-color: rgba(37,99,235,0.4);
  background: linear-gradient(145deg, var(--mwd-card2), var(--mwd-card));
  box-shadow: 0 0 0 1px rgba(37,99,235,0.2), 0 16px 48px rgba(37,99,235,0.12);
}
.mwd-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mwd-blue), var(--mwd-blue-l));
  color: #fff;
  font-family: var(--mwd-fh);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .85rem;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
}
.mwd-tier-name {
  font-family: var(--mwd-fh);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mwd-muted);
  margin-bottom: .4rem;
}
.mwd-tier-tag { font-size: .8rem; color: var(--mwd-muted2); margin-bottom: 1.75rem; }
.mwd-tier-price {
  font-family: var(--mwd-fh);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--mwd-head);
  line-height: 1;
  margin-bottom: .35rem;
}
.mwd-tier-price-note { font-size: .75rem; color: var(--mwd-muted); margin-bottom: 2rem; }
.mwd-tier-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
  flex: 1;
}
.mwd-tier-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--mwd-text);
  line-height: 1.5;
}
.mwd-tier-item svg { color: var(--mwd-blue); flex-shrink: 0; margin-top: .15rem; }
.mwd-tier-cta {
  display: block;
  text-align: center;
  font-family: var(--mwd-fh);
  font-size: .9rem;
  font-weight: 600;
  padding: .85rem 1.5rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
}
.mwd-tier-cta-default {
  background: rgba(255,255,255,0.06);
  color: var(--mwd-muted2);
  border: 1px solid var(--mwd-border);
}
.mwd-tier-cta-default:hover { color: var(--mwd-head); background: rgba(255,255,255,0.1); }
.mwd-tier-cta-featured {
  background: var(--mwd-blue);
  color: #fff;
}
.mwd-tier-cta-featured:hover { background: var(--mwd-blue-l); box-shadow: 0 6px 20px rgba(37,99,235,0.35); }

/* ── CTA launch strip ───────────────────────────────────────────── */
.mwd-launch {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A1628 0%, #0E1830 40%, #06101E 100%);
  border-top: 1px solid var(--mwd-border);
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-launch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.2) 0%, transparent 55%), radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.1) 0%, transparent 55%);
}
.mwd-launch-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 2.5rem;
}
.mwd-launch-inner h2 { color: var(--mwd-white); margin-bottom: 1rem; }
.mwd-launch-inner p  { color: rgba(203,213,225,0.75); font-size: 1.05rem; margin-bottom: 2.5rem; }
.mwd-launch-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FAQ accordion ──────────────────────────────────────────────── */
.mwd-accord {
  background: var(--mwd-bg);
}
.mwd-accord-top {
  text-align: center;
  margin-bottom: 4rem;
}
.mwd-accord-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: .75rem;
}
.mwd-accord-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.mwd-accord-item {
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  background: var(--mwd-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.mwd-accord-item.open { border-color: rgba(37,99,235,0.25); }
.mwd-accord-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--mwd-fh);
  font-size: .92rem;
  font-weight: 600;
  color: var(--mwd-head);
  transition: color 0.2s;
  cursor: pointer;
}
.mwd-accord-q:hover { color: var(--mwd-cyan); }
.mwd-accord-chevron { color: var(--mwd-muted); transition: transform 0.24s; flex-shrink: 0; }
.mwd-accord-item.open .mwd-accord-chevron { transform: rotate(180deg); color: var(--mwd-blue-l); }
.mwd-accord-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mwd-accord-item.open .mwd-accord-a { max-height: 800px; }
.mwd-accord-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .87rem;
  color: var(--mwd-muted2);
  line-height: 1.75;
}

/* ── Footer (BASE) ──────────────────────────────────────────────── */
.mwd-base {
  background: var(--mwd-surface);
  border-top: 1px solid var(--mwd-border);
}
.mwd-base-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 4rem;
}
.mwd-base-brand {}
.mwd-base-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.1rem; }
.mwd-base-logo-name {
  font-family: var(--mwd-fh);
  font-size: 1rem;
  font-weight: 700;
  color: var(--mwd-white);
  letter-spacing: -0.03em;
}
.mwd-base-tagline {
  font-size: .84rem;
  color: var(--mwd-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 26ch;
}
.mwd-base-socials { display: flex; gap: .6rem; }
.mwd-base-soc {
  width: 36px; height: 36px;
  border-radius: var(--mwd-r);
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mwd-muted);
  transition: var(--mwd-ease);
}
.mwd-base-soc:hover { color: var(--mwd-head); border-color: var(--mwd-border2); background: var(--mwd-card2); }
.mwd-base-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mwd-muted);
  margin-bottom: 1.1rem;
}
.mwd-base-links { display: flex; flex-direction: column; gap: .55rem; }
.mwd-base-links a {
  font-size: .85rem;
  color: var(--mwd-muted2);
  transition: color 0.2s;
}
.mwd-base-links a:hover { color: var(--mwd-head); }
.mwd-base-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .83rem;
  color: var(--mwd-muted2);
  margin-bottom: .65rem;
}
.mwd-base-contact-item svg { color: var(--mwd-blue); flex-shrink: 0; margin-top: .12rem; }
.mwd-base-contact-item a:hover { color: var(--mwd-head); }
.mwd-base-bottom {
  border-top: 1px solid var(--mwd-border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.mwd-base-copy {
  font-size: .78rem;
  color: var(--mwd-muted);
}
.mwd-base-note {
  font-size: .78rem;
  color: var(--mwd-muted);
}
.mwd-base-legal { display: flex; gap: 1.5rem; }
.mwd-base-legal a { font-size: .78rem; color: var(--mwd-muted); transition: color 0.2s; }
.mwd-base-legal a:hover { color: var(--mwd-muted2); }

/* ── Cookie banner ──────────────────────────────────────────────── */
.mwd-cookie {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 9999;
  max-width: 380px;
  background: var(--mwd-card2);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: none;
}
.mwd-cookie-msg {
  font-size: .83rem;
  color: var(--mwd-muted2);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.mwd-cookie-btns { display: flex; gap: .6rem; }
.mwd-cookie-ok {
  flex: 1;
  background: var(--mwd-blue);
  color: #fff;
  font-family: var(--mwd-fh);
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem .9rem;
  border-radius: var(--mwd-r);
  border: none;
  cursor: pointer;
  transition: var(--mwd-ease);
}
.mwd-cookie-ok:hover { background: var(--mwd-blue-l); }
.mwd-cookie-no {
  font-family: var(--mwd-fh);
  font-size: .82rem;
  font-weight: 600;
  color: var(--mwd-muted);
  padding: .55rem .9rem;
  border-radius: var(--mwd-r);
  border: 1px solid var(--mwd-border);
  cursor: pointer;
  transition: var(--mwd-ease);
  background: transparent;
}
.mwd-cookie-no:hover { color: var(--mwd-head); border-color: var(--mwd-border2); }

/* ── Chat widget ────────────────────────────────────────────────── */
.mwd-chat-fab {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 9990;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mwd-blue), var(--mwd-blue-l));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,99,235,0.45);
  transition: var(--mwd-ease);
  border: none;
  cursor: pointer;
}
.mwd-chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,99,235,0.55); }
.mwd-chat-panel {
  position: fixed;
  bottom: 5.5rem; right: 1.75rem;
  z-index: 9989;
  width: 320px;
  background: var(--mwd-card2);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mwd-chat-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mwd-chat-head {
  background: linear-gradient(135deg, var(--mwd-blue), var(--mwd-blue-l));
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mwd-chat-head-title { font-family: var(--mwd-fh); font-size: .9rem; font-weight: 700; color: #fff; }
.mwd-chat-head-sub   { font-size: .75rem; color: rgba(255,255,255,0.75); margin-top: .15rem; }
.mwd-chat-head-close {
  color: rgba(255,255,255,0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
  transition: color 0.2s;
}
.mwd-chat-head-close:hover { color: #fff; }
.mwd-chat-body { padding: 1.25rem; }
.mwd-chat-ok {
  display: none;
  padding: 1rem;
  text-align: center;
  font-size: .84rem;
  color: var(--mwd-cyan);
  font-weight: 600;
}
.mwd-chat-field {
  width: 100%;
  background: var(--mwd-surface);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r);
  padding: .65rem .85rem;
  color: var(--mwd-head);
  font-size: .84rem;
  margin-bottom: .7rem;
  transition: border-color 0.2s;
  resize: none;
}
.mwd-chat-field:focus { outline: none; border-color: var(--mwd-blue); }
.mwd-chat-submit {
  width: 100%;
  background: var(--mwd-blue);
  color: #fff;
  font-family: var(--mwd-fh);
  font-size: .84rem;
  font-weight: 600;
  padding: .65rem;
  border-radius: var(--mwd-r);
  border: none;
  cursor: pointer;
  transition: var(--mwd-ease);
}
.mwd-chat-submit:hover { background: var(--mwd-blue-l); }

/* ── Inner page header (crown) ──────────────────────────────────── */
.mwd-crown {
  padding: calc(var(--mwd-nav-h) + 4.5rem) 0 4.5rem;
  text-align: center;
  background: var(--mwd-surface);
  border-bottom: 1px solid var(--mwd-border);
  position: relative;
  overflow: hidden;
}
.mwd-crown::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37,99,235,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.mwd-crown-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mwd-cyan);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  padding: .25rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.mwd-crown h1 {
  max-width: 18ch;
  margin: 0 auto .85rem;
}
.mwd-crown-sub {
  font-size: 1rem;
  color: var(--mwd-muted2);
  max-width: 50ch;
  margin: 0 auto;
}

/* ── Service template page ──────────────────────────────────────── */
.mwd-svc-layout {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
}
.mwd-svc-body {}
.mwd-svc-intro { margin-bottom: 3rem; }
.mwd-svc-intro p { font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.mwd-svc-section-title {
  font-family: var(--mwd-fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: 1rem;
  display: block;
}
.mwd-svc-what { margin-bottom: 3rem; }
.mwd-svc-what-list { display: flex; flex-direction: column; gap: .6rem; }
.mwd-svc-what-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .9rem;
  color: var(--mwd-text);
}
.mwd-svc-what-item svg { color: var(--mwd-cyan); flex-shrink: 0; }
.mwd-svc-note {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.15);
  border-left: 3px solid var(--mwd-blue);
  border-radius: 0 var(--mwd-r) var(--mwd-r) 0;
  padding: 1.1rem 1.4rem;
  font-size: .85rem;
  color: var(--mwd-muted2);
  line-height: 1.7;
}
.mwd-svc-sidebar {
  position: sticky;
  top: calc(var(--mwd-nav-h) + 2rem);
}
.mwd-svc-card {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.mwd-svc-card-illus { background: var(--mwd-surface); border-bottom: 1px solid var(--mwd-border); }
.mwd-svc-card-body { padding: 1.75rem; }
.mwd-svc-card-body h3 { margin-bottom: .4rem; }
.mwd-svc-card-price {
  font-family: var(--mwd-fh);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mwd-head);
  margin-bottom: .25rem;
}
.mwd-svc-card-unit {
  font-size: .72rem;
  color: var(--mwd-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}
.mwd-svc-delivery {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--mwd-muted2);
  margin-bottom: 1.25rem;
}
.mwd-svc-delivery svg { color: var(--mwd-cyan); }
.mwd-svc-card-actions { display: flex; flex-direction: column; gap: .65rem; }

/* ── Pricing page ───────────────────────────────────────────────── */
.mwd-pricing-wrap {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.mwd-pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.mwd-addon-card {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 1.5rem;
  transition: var(--mwd-ease);
}
.mwd-addon-card:hover { border-color: var(--mwd-border2); background: var(--mwd-card2); }
.mwd-addon-nm { font-family: var(--mwd-fh); font-size: .92rem; font-weight: 600; color: var(--mwd-head); margin-bottom: .4rem; }
.mwd-addon-price { font-family: var(--mwd-fh); font-size: 1.3rem; font-weight: 700; color: var(--mwd-cyan); }

/* ── Custom package builder ─────────────────────────────────────── */
.mwd-builder-wrap {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.mwd-builder-main {}
.mwd-builder-section { margin-bottom: 3rem; }
.mwd-builder-section-h {
  font-family: var(--mwd-fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mwd-blue);
  margin-bottom: 1.25rem;
  display: block;
}
.mwd-pick-grid { display: flex; flex-direction: column; gap: .75rem; }
.mwd-pick-row {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--mwd-ease);
}
.mwd-pick-row:hover { border-color: var(--mwd-border2); background: var(--mwd-card2); }
.mwd-pick-row.selected {
  border-color: var(--mwd-blue);
  background: rgba(37,99,235,0.07);
}
.mwd-pick-ico {
  width: 38px; height: 38px;
  border-radius: var(--mwd-r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mwd-pick-info { flex: 1; }
.mwd-pick-nm { font-family: var(--mwd-fh); font-size: .9rem; font-weight: 600; color: var(--mwd-head); }
.mwd-pick-price { font-family: var(--mwd-fh); font-size: .85rem; color: var(--mwd-muted2); margin-left: auto; flex-shrink: 0; }
.mwd-pick-check {
  width: 20px; height: 20px;
  border-radius: 4px;
  border: 2px solid var(--mwd-border2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--mwd-ease);
}
.mwd-pick-row.selected .mwd-pick-check {
  background: var(--mwd-blue);
  border-color: var(--mwd-blue);
  color: #fff;
}
/* Addons chips */
.mwd-addon-chips { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.mwd-addon-chip {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: var(--mwd-ease);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.mwd-addon-chip:hover { border-color: var(--mwd-border2); }
.mwd-addon-chip.selected { border-color: var(--mwd-cyan); background: rgba(0,212,255,0.06); }
.mwd-addon-chip-nm { font-family: var(--mwd-fh); font-size: .82rem; font-weight: 600; color: var(--mwd-head); }
.mwd-addon-chip-pr { font-size: .78rem; color: var(--mwd-muted); }
.mwd-addon-chip.selected .mwd-addon-chip-pr { color: var(--mwd-cyan); }
/* Hours */
.mwd-hours-wrap { display: flex; align-items: center; gap: 1.25rem; }
.mwd-hours-input {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--mwd-border2);
  outline: none;
}
.mwd-hours-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--mwd-blue);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.mwd-hours-val {
  font-family: var(--mwd-fh);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mwd-head);
  min-width: 3rem;
  text-align: right;
}
/* Order summary */
.mwd-order-box {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  position: sticky;
  top: calc(var(--mwd-nav-h) + 2rem);
}
.mwd-order-head {
  background: var(--mwd-surface);
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-order-head h3 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mwd-muted);
}
.mwd-order-items { padding: 1.25rem 1.5rem; min-height: 100px; }
.mwd-order-empty { font-size: .84rem; color: var(--mwd-muted); font-style: italic; }
.mwd-order-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  font-size: .84rem;
  margin-bottom: .75rem;
}
.mwd-order-line-nm { color: var(--mwd-text); }
.mwd-order-line-p { color: var(--mwd-head); font-family: var(--mwd-fh); font-weight: 600; white-space: nowrap; }
.mwd-order-foot {
  border-top: 1px solid var(--mwd-border);
  padding: 1.25rem 1.5rem;
}
.mwd-order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.mwd-order-total-l { font-family: var(--mwd-fh); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mwd-muted); }
.mwd-order-total-n { font-family: var(--mwd-fh); font-size: 1.6rem; font-weight: 700; color: var(--mwd-head); }
.mwd-order-cta {
  display: block;
  text-align: center;
  background: var(--mwd-blue);
  color: #fff;
  font-family: var(--mwd-fh);
  font-size: .9rem;
  font-weight: 600;
  padding: .85rem;
  border-radius: var(--mwd-r);
  transition: var(--mwd-ease);
  border: none;
  cursor: pointer;
  width: 100%;
}
.mwd-order-cta:hover:not(:disabled) { background: var(--mwd-blue-l); }
.mwd-order-cta:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Checkout ───────────────────────────────────────────────────── */
.mwd-checkout-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3.5rem;
  align-items: start;
}
.mwd-checkout-form {}
.mwd-form-group { margin-bottom: 1.25rem; }
.mwd-form-label {
  display: block;
  font-family: var(--mwd-fh);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mwd-muted2);
  margin-bottom: .5rem;
}
.mwd-form-input {
  width: 100%;
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r);
  padding: .75rem 1rem;
  color: var(--mwd-head);
  font-size: .9rem;
  transition: border-color 0.2s;
}
.mwd-form-input:focus { outline: none; border-color: var(--mwd-blue); }
.mwd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mwd-form-agree {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .84rem;
  color: var(--mwd-muted2);
  line-height: 1.5;
  margin: 1.5rem 0;
}
.mwd-form-agree input { margin-top: .2rem; accent-color: var(--mwd-blue); flex-shrink: 0; }
.mwd-form-agree a { color: var(--mwd-cyan); }
.mwd-checkout-summary {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border2);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  position: sticky;
  top: calc(var(--mwd-nav-h) + 2rem);
}
.mwd-summary-head {
  background: var(--mwd-surface);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-summary-head h3 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mwd-muted); }
.mwd-summary-body { padding: 1.25rem 1.5rem; }
.mwd-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .84rem;
  margin-bottom: .65rem;
}
.mwd-summary-line-nm { color: var(--mwd-muted2); }
.mwd-summary-line-p  { color: var(--mwd-head); font-family: var(--mwd-fh); font-weight: 600; }
.mwd-summary-divider { border: none; border-top: 1px solid var(--mwd-border); margin: 1rem 0; }
.mwd-summary-total-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.mwd-summary-total-l { font-family: var(--mwd-fh); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mwd-muted); }
.mwd-summary-total-n { font-family: var(--mwd-fh); font-size: 1.5rem; font-weight: 700; color: var(--mwd-head); }
.mwd-summary-secure {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--mwd-muted);
  margin-top: 1rem;
}
.mwd-summary-secure svg { color: var(--mwd-blue); }

/* ── About page ─────────────────────────────────────────────────── */
.mwd-about-wrap { max-width: var(--mwd-max); margin: 0 auto; padding: 5rem 2.5rem; }
.mwd-about-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}
.mwd-about-lead p { font-size: 1rem; line-height: 1.8; margin-bottom: 1.25rem; color: var(--mwd-muted2); }
.mwd-about-vis {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mwd-about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 5rem;
}
.mwd-about-val {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 2rem;
}
.mwd-about-val-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.mwd-about-val h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.mwd-about-val p { font-size: .84rem; color: var(--mwd-muted2); line-height: 1.7; }
.mwd-about-contact {
  background: var(--mwd-surface);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.mwd-about-contact h2 { margin-bottom: 1rem; font-size: 1.8rem; }
.mwd-about-contact p { color: var(--mwd-muted2); font-size: .9rem; }
.mwd-about-contact-detail {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: var(--mwd-muted2);
  margin-bottom: .85rem;
}
.mwd-about-contact-detail svg { color: var(--mwd-blue); }

/* ── Contact page ───────────────────────────────────────────────── */
.mwd-contact-wrap {
  max-width: var(--mwd-max);
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.mwd-contact-form-wrap h2 { font-size: 2rem; margin-bottom: .75rem; }
.mwd-contact-form-wrap p { color: var(--mwd-muted2); margin-bottom: 2rem; }
.mwd-contact-info h3 { font-size: 1.25rem; margin-bottom: 1.5rem; }
.mwd-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.mwd-contact-ico {
  width: 38px; height: 38px;
  border-radius: var(--mwd-r);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mwd-blue);
  flex-shrink: 0;
}
.mwd-contact-lbl { font-family: var(--mwd-fh); font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--mwd-muted); margin-bottom: .2rem; }
.mwd-contact-val { font-size: .9rem; color: var(--mwd-text); }
.mwd-contact-val a:hover { color: var(--mwd-cyan); }

/* ── Portfolio page ─────────────────────────────────────────────── */
.mwd-portfolio-wrap { max-width: var(--mwd-max); margin: 0 auto; padding: 5rem 2.5rem; }

/* ── Process page ───────────────────────────────────────────────── */
.mwd-process-wrap { max-width: var(--mwd-max); margin: 0 auto; padding: 5rem 2.5rem; }
.mwd-process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0;
  border-bottom: 1px solid var(--mwd-border);
}
.mwd-process-step:last-child { border-bottom: none; }
.mwd-process-step-num {
  font-family: var(--mwd-fh);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: -.5rem;
  letter-spacing: -0.05em;
}
.mwd-process-step h2 { font-size: 2rem; margin-bottom: 1.1rem; }
.mwd-process-step p { font-size: .95rem; color: var(--mwd-muted2); line-height: 1.8; margin-bottom: 2rem; }
.mwd-process-step-list { display: flex; flex-direction: column; gap: .6rem; }
.mwd-process-step-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  color: var(--mwd-text);
}
.mwd-process-step-item svg { color: var(--mwd-cyan); flex-shrink: 0; }
.mwd-process-vis {
  border-radius: var(--mwd-r2);
  overflow: hidden;
  border: 1px solid var(--mwd-border);
  background: var(--mwd-card);
}

/* ── Legal pages ────────────────────────────────────────────────── */
.mwd-legal { max-width: 800px; margin: 0 auto; padding: 5rem 2.5rem; }
.mwd-legal h2 { font-size: 1.4rem; margin: 2.5rem 0 .85rem; }
.mwd-legal h3 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.mwd-legal p { font-size: .9rem; color: var(--mwd-muted2); line-height: 1.8; margin-bottom: .9rem; }
.mwd-legal ul { padding-left: 1.25rem; margin: .5rem 0 1rem; display: flex; flex-direction: column; gap: .35rem; }
.mwd-legal ul li { font-size: .88rem; color: var(--mwd-muted2); line-height: 1.7; list-style: disc; }
.mwd-legal ol { padding-left: 1.5rem; margin: .5rem 0 1rem; display: flex; flex-direction: column; gap: .35rem; }
.mwd-legal ol li { font-size: .88rem; color: var(--mwd-muted2); line-height: 1.7; list-style: decimal; }
.mwd-legal a { color: var(--mwd-cyan); }
.mwd-legal address {
  font-style: normal;
  background: rgba(37,99,235,0.06);
  border-left: 3px solid var(--mwd-blue);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  border-radius: 0 var(--mwd-r) var(--mwd-r) 0;
  font-size: .88rem;
  line-height: 1.9;
  color: var(--mwd-muted2);
}
.mwd-legal table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: 1rem 0 1.5rem; }
.mwd-legal th { background: var(--mwd-card); color: var(--mwd-head); padding: .65rem 1rem; text-align: left; font-weight: 700; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid var(--mwd-border); }
.mwd-legal td { padding: .65rem 1rem; border-bottom: 1px solid var(--mwd-border); color: var(--mwd-muted2); vertical-align: top; }
.mwd-legal code { background: var(--mwd-card); padding: .1em .35em; border-radius: 3px; font-size: .82rem; color: var(--mwd-cyan); font-family: 'Courier New', monospace; }

/* ── Success / Cancel pages ─────────────────────────────────────── */
.mwd-result {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2.5rem;
}
.mwd-result-inner { max-width: 540px; }
.mwd-result-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}
.mwd-result-icon-ok { background: rgba(0,212,255,0.12); color: var(--mwd-cyan); border: 1px solid rgba(0,212,255,0.25); }
.mwd-result-icon-err { background: rgba(239,68,68,0.1); color: var(--mwd-red); border: 1px solid rgba(239,68,68,0.2); }
.mwd-result-inner h1 { font-size: 2.2rem; margin-bottom: .85rem; }
.mwd-result-inner p { color: var(--mwd-muted2); margin-bottom: 2rem; }

/* ── FAQ page ───────────────────────────────────────────────────── */
.mwd-faq-wrap { max-width: 800px; margin: 0 auto; padding: 5rem 2.5rem; }
.mwd-faq-list { display: flex; flex-direction: column; gap: 1rem; }

/* ── Reveal animations ──────────────────────────────────────────── */
.mwd-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.mwd-reveal.mwd-visible { opacity: 1; transform: translateY(0); }
.mwd-reveal-r { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.mwd-reveal-r.mwd-visible { opacity: 1; transform: translateX(0); }
.mwd-reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.mwd-reveal-l.mwd-visible { opacity: 1; transform: translateX(0); }

/* ── Services page ──────────────────────────────────────────────── */
.mwd-services-wrap { max-width: var(--mwd-max); margin: 0 auto; padding: 5rem 2.5rem; }
.mwd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.mwd-service-card {
  background: var(--mwd-card);
  border: 1px solid var(--mwd-border);
  border-radius: var(--mwd-r2);
  padding: 2rem;
  transition: var(--mwd-ease);
  display: flex;
  flex-direction: column;
}
.mwd-service-card:hover { border-color: var(--mwd-border2); background: var(--mwd-card2); transform: translateY(-2px); }
.mwd-service-ico {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.mwd-service-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.mwd-service-card p { font-size: .84rem; color: var(--mwd-muted2); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.mwd-service-card-price { font-family: var(--mwd-fh); font-size: 1.3rem; font-weight: 700; color: var(--mwd-head); margin-bottom: .2rem; }
.mwd-service-card-unit { font-size: .7rem; color: var(--mwd-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.mwd-service-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: var(--mwd-fh);
  font-size: .82rem;
  font-weight: 600;
  color: var(--mwd-muted);
  transition: var(--mwd-ease);
}
.mwd-service-card:hover .mwd-service-link { color: var(--mwd-cyan); gap: .55rem; }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .mwd-rail-left, .mwd-rail-right { display: none; }
  .mwd-rail-inner { grid-template-columns: 1fr auto; }
  .mwd-rail-ham { display: flex; }
  .mwd-overlay { display: flex; }
  .mwd-beam-inner { grid-template-columns: 1fr; }
  .mwd-beam-vis { display: none; }
  .mwd-catalog-bento { grid-template-columns: 1fr 1fr; }
  .mwd-counters-grid { grid-template-columns: 1fr 1fr; }
  .mwd-tiers-grid { grid-template-columns: 1fr; }
  .mwd-about-lead { grid-template-columns: 1fr; }
  .mwd-about-values { grid-template-columns: 1fr 1fr; }
  .mwd-contact-wrap { grid-template-columns: 1fr; }
  .mwd-builder-wrap { grid-template-columns: 1fr; }
  .mwd-checkout-wrap { grid-template-columns: 1fr; }
  .mwd-services-grid { grid-template-columns: 1fr 1fr; }
  .mwd-voices-inner { grid-template-columns: 1fr; }
  .mwd-journey-grid { grid-template-columns: 1fr; }
  .mwd-svc-layout { grid-template-columns: 1fr; }
  .mwd-work-item { grid-template-columns: 1fr; }
  .mwd-work-item:nth-child(even) { direction: ltr; }
}
@media (max-width: 640px) {
  .mwd-shell { padding: 0 1.25rem; }
  .mwd-pad { padding: 4.5rem 0; }
  .mwd-catalog-bento { grid-template-columns: 1fr; }
  .mwd-counters-grid { grid-template-columns: 1fr 1fr; }
  .mwd-accord-cols { grid-template-columns: 1fr; }
  .mwd-base-grid { grid-template-columns: 1fr; }
  .mwd-tiers-grid { gap: 1rem; }
  .mwd-form-row { grid-template-columns: 1fr; }
  .mwd-about-values { grid-template-columns: 1fr; }
  .mwd-pricing-addon-grid { grid-template-columns: 1fr 1fr; }
  .mwd-addon-chips { grid-template-columns: 1fr; }
  .mwd-process-step { grid-template-columns: 1fr; }
  .mwd-about-contact { grid-template-columns: 1fr; }
}
