:root {
  --bg: #ffffff;
  --ink: #202025;
  --muted: #556070;
  --soft: #f7f8fb;
  --soft-lime: #eef6fc;
  --card: #e9edf2;
  --line: #e4e7ec;
  --dark: #031a35;
  --dark-2: #083a6d;
  --lime: #3c81c0;
  --cyan: #3c81c0;
  --violet: #083a6d;
  --blue: #083a6d;
  --shadow: 0 24px 70px rgba(16, 24, 40, .09);
  --radius: 12px;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 10px;
  background: var(--lime);
  color: #fff;
}
.skip-link:focus { left: 8px; z-index: 100; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  background: var(--dark);
  transition: opacity .35s ease, visibility .35s ease;
}
.loader span {
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--lime);
  color: #fff;
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 800;
}
.loader.is-hidden { display: none; opacity: 0; visibility: hidden; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  color: #fff;
}
.topbar-inner {
  max-width: var(--max);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topbar p { margin: 0; font-weight: 700; }
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}
.topbar-actions a + a {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.24);
}

.site-header {
  position: sticky;
  top: 58px;
  z-index: 45;
  min-height: 92px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}
.site-header.is-scrolled { box-shadow: 0 18px 50px rgba(16, 24, 40, .08); }
.brand {
  display: inline-flex;
  align-items: center;
  height: 58px;
  padding: 7px 16px;
  border-radius: 8px;
  background: var(--dark);
  overflow: hidden;
  justify-content: center;
  width: 150px;
}
.brand img {
  width: 200px;
  max-width: none;
  height: 200px;
  flex: 0 0 auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #31313a;
  font-size: 15px;
  font-weight: 650;
}
.nav a:hover { color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(60,129,192,.28);
}
.btn-outline, .btn-glass, .btn-muted {
  color: #222;
  background: #fff;
  border-color: #dfe3e8;
  box-shadow: 0 10px 30px rgba(16,24,40,.04);
}
.btn-dark {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}
.btn-small { min-height: 44px; padding: 0 18px; font-size: 15px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #111;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) 24px;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-heading .eyebrow,
.eyebrow {
  margin: 0 0 10px;
  color: #4c5563;
  font-size: 14px;
  font-weight: 700;
}
.section-heading h2,
.page-hero h1,
.sticky-copy h2,
.cta-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0;
}
.section-heading p,
.page-hero p,
.hero-text {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
}

.mova-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 24px 30px;
  text-align: center;
}
.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}
.mova-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5.4vw, 62px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}
.mova-hero mark {
  padding: 0 .14em .04em;
  border-radius: 8px;
  color: #fff;
  background: var(--lime);
}
.hero-text {
  max-width: 760px;
  margin: 20px auto 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.hero-actions .btn { min-width: min(100%, 380px); }

.hero-collage {
  position: relative;
  min-height: 520px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr .36fr .9fr .88fr;
  grid-template-rows: 80px 90px 82px 92px 80px;
  gap: 24px;
  align-items: stretch;
}
.tile,
.icon-tile {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(16,24,40,.08);
}
.tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef1f4;
}
.tile-a { grid-column: 1 / 2; grid-row: 1 / 3; }
.tile-b { grid-column: 2 / 3; grid-row: 1 / 6; object-position: center top; }
.tile-c { grid-column: 4 / 6; grid-row: 1 / 2; }
.tile-d { grid-column: 4 / 5; grid-row: 3 / 5; }
.tile-e { grid-column: 5 / 6; grid-row: 4 / 6; }
.icon-tile {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px solid #edf0d6;
  background: var(--soft-lime);
  font-size: 36px;
  font-weight: 900;
}
.icon-tile.lime { grid-column: 3 / 4; grid-row: 1 / 2; color: var(--blue); }
.icon-tile.cyan { grid-column: 5 / 6; grid-row: 2 / 3; color: var(--cyan); }
.icon-tile.violet { grid-column: 1 / 2; grid-row: 3 / 4; color: var(--violet); }

.references-section { overflow: hidden; }
.logo-marquee {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: logoSlide 26s linear infinite;
}
@keyframes logoSlide { to { transform: translateX(-50%); } }
.logo-card {
  width: 230px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  opacity: .74;
}
.logo-card img {
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
  filter: grayscale(1);
}

.about-strip .wide-photo {
  border-radius: 14px;
  overflow: hidden;
  background: #e8eef4;
}
.wide-photo img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.tv-panel {
  border-radius: 8px;
  background: var(--soft-lime);
  padding: clamp(32px, 5vw, 64px);
}
.tv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.tv-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 34px;
  color: #414957;
  font-size: 17px;
}
.tabs span { padding-bottom: 10px; }
.tabs .is-active {
  color: var(--dark);
  border-bottom: 2px solid var(--blue);
}
.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, .95fr);
  gap: 22px;
}
.video-grid article {
  position: relative;
  min-height: 164px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--dark);
  color: #fff;
}
.video-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-grid strong,
.feature-video div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.feature-video { grid-row: span 2; min-height: 360px; }
.feature-video strong {
  position: static;
  display: block;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
}
.feature-video span { display: block; margin-top: 8px; }

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.service-card,
.premium-card,
.article-card,
.contact-panel,
.lead-form,
.legal-box,
.glass-row,
.metric-grid div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.service-card {
  padding: 34px;
  background: var(--card);
  box-shadow: none;
}
.service-media {
  position: relative;
  height: 220px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-media span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #334155;
  background: rgba(255,255,255,.86);
  font-size: 13px;
  font-weight: 800;
}
.service-card h3,
.premium-card h3,
.article-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 500;
}
.service-card p,
.premium-card p,
.article-card p,
.glass-row p {
  color: var(--muted);
}
.service-card em,
.article-card em {
  color: #151515;
  font-style: normal;
  font-weight: 800;
}

.benefits-band {
  max-width: none;
  background: #f5f7fa;
}
.benefits-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}
.process-grid li {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.process-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #9aa2af;
  font-weight: 800;
}
.process-grid strong {
  display: block;
  font-size: 21px;
}
.process-grid p { color: var(--muted); }

.article-grid,
.card-grid,
.seo-copy-grid,
.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.premium-card,
.article-card {
  padding: 28px;
}
.article-card span,
.card-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}
.card-icon {
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lime);
}

.section-dark,
.page-hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 110px) 24px clamp(44px, 6vw, 80px);
  text-align: center;
}
.page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
}
.page-hero p {
  max-width: 760px;
  margin: 18px auto 0;
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.section-ink {
  max-width: none;
  background: var(--dark);
  color: #fff;
}
.section-ink > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.section-ink h2,
.section-ink h3,
.section-ink .eyebrow { color: #fff; }
.section-ink p { color: #cbd1dc; }
.sticky-copy {
  position: sticky;
  top: 180px;
}
.stack-list {
  display: grid;
  gap: 16px;
}
.glass-row {
  padding: 26px;
}
.glass-row span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--lime);
  font-weight: 900;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.keyword-cloud span,
.signal-strip span,
.service-link-grid a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #26313f;
}
.seo-text-block {
  max-width: 920px;
  margin: 32px auto 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
}
.contact-panel,
.lead-form {
  padding: 30px;
}
.check-list {
  padding-left: 20px;
  color: var(--muted);
}
.lead-form {
  display: grid;
  gap: 16px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: #313946;
  font-weight: 700;
}
.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7dce3;
  border-radius: 8px;
  background: #fff;
  color: #111;
}
.lead-form textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute; left: -9999px; }

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.faq-item h3 { margin: 0; font-size: 18px; }
.faq-item p {
  display: none;
  color: var(--muted);
}
.faq-item.is-open p { display: block; }

.cta-band {
  max-width: var(--max);
  margin: 0 auto 70px;
  padding: clamp(42px, 6vw, 72px) 24px;
  border-radius: 8px;
  background: #eef6fc;
  text-align: center;
}

.footer {
  padding: 54px 24px 26px;
  background: var(--dark);
  color: #fff;
}
.footer-cta,
.footer-grid,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
}
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.footer-cta h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 42px);
}
.footer-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  font-weight: 800;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}
.footer-logo {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--dark-2);
  overflow: hidden;
  justify-content: center;
  width: 150px;
  height: 68px;
}
.footer-logo img { width: 210px; max-width: none; height: 210px; flex: 0 0 auto; object-fit: contain; }
.footer p {
  max-width: 360px;
  color: #d5d8de;
}
.footer h2 {
  margin: 0 0 18px;
  font-size: 20px;
}
.footer a {
  display: block;
  margin: 0 0 12px;
  color: #f5f5f5;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: #d5d8de;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p { margin: 0 0 14px; color: var(--muted); }
.cookie-consent > div { display: flex; gap: 10px; }

@media (max-width: 980px) {
  .site-header { top: 58px; }
  .nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% - 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px; }
  .menu-toggle { display: block; }
  .header-actions .btn { display: none; }
  .hero-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 120px);
    min-height: auto;
    gap: 16px;
  }
  .tile-a { grid-column: 1 / 2; grid-row: 1 / 2; }
  .tile-b { grid-column: 2 / 3; grid-row: 1 / 4; }
  .tile-c { grid-column: 2 / 3; grid-row: 4 / 5; }
  .tile-d { grid-column: 1 / 2; grid-row: 4 / 6; }
  .tile-e { grid-column: 2 / 3; grid-row: 5 / 6; }
  .icon-tile.lime { grid-column: 1 / 2; grid-row: 2 / 3; }
  .icon-tile.violet { grid-column: 1 / 2; grid-row: 3 / 4; }
  .icon-tile.cyan { display: none; }
  .service-showcase,
  .video-grid,
  .article-grid,
  .card-grid,
  .seo-copy-grid,
  .service-link-grid,
  .process-grid,
  .split-section,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sticky-copy { position: static; }
}

@media (max-width: 640px) {
  .topbar-inner {
    min-height: 58px;
    padding: 0 14px;
    gap: 10px;
  }
  .topbar p { font-size: 11px; }
  .topbar p {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .topbar-actions { gap: 8px; }
  .topbar-actions a { font-size: 11px; }
  .topbar-actions a + a { padding-left: 8px; }
  .topbar-actions a:nth-child(2) { display: none; }
  .site-header {
    min-height: 82px;
    padding: 16px;
  }
  .brand img { width: 138px; }
  .mova-hero { padding-top: 36px; }
  .mova-hero h1 { font-size: 25px; line-height: 1.25; }
  .hero-text { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 10px;
    font-size: 14px;
  }
  .hero-collage {
    margin-top: 46px;
    grid-template-rows: 140px 66px 84px 110px 86px;
  }
  .section { padding: 54px 16px; }
  .tv-panel { padding: 30px 16px; }
  .tv-head {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .tabs {
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 22px;
    font-size: 15px;
  }
  .feature-video { min-height: 230px; }
  .service-card { padding: 18px; }
  .service-media { height: 170px; }
  .logo-card { width: 190px; height: 74px; }
  .footer-cta,
  .footer-bottom {
    display: grid;
  }
  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}
