/* assets/css/main.css */
/* Mavros Agency */
/* White tech-minimal system, black text, green actions */

/* =========================================================
   ROOT
========================================================= */

:root {
  --mv-white: #ffffff;
  --mv-white-2: #fafafa;
  --mv-white-3: #f6f6f6;

  --mv-black: #0a0a0a;
  --mv-black-2: #151515;
  --mv-black-3: #202020;

  --mv-text: #0a0a0a;
  --mv-muted: #666666;
  --mv-muted-2: #8a8a8a;
  --mv-muted-3: #aaaaaa;

  --mv-green: #08e086;
  --mv-green-dark: #05b86d;
  --mv-green-soft: rgba(8, 224, 134, 0.12);

  --mv-border: #efefef;
  --mv-border-strong: #dedede;
  --mv-border-dark: rgba(10, 10, 10, 0.14);

  --mv-danger: #d92d20;
  --mv-success: #08e086;

  --mv-radius-xs: 6px;
  --mv-radius-sm: 8px;
  --mv-radius: 12px;
  --mv-radius-lg: 18px;
  --mv-radius-pill: 999px;

  --mv-max: 1440px;
  --mv-pad: clamp(20px, 5.6vw, 96px);

  --mv-header-height: 76px;
  --mv-header-height-small: 64px;

  --mv-font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mv-font-mono: "Space Mono", "SFMono-Regular", Consolas, monospace;

  --mv-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mv-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================================
   BASE
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--mv-white);
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--mv-white);
  color: var(--mv-text);
  font-family: var(--mv-font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.mv-modal-open,
html.mv-modal-open,
html.mv-modal-open body {
  overflow: hidden !important;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--mv-green);
  color: var(--mv-black);
}

.mv-page {
  position: relative;
  min-height: 100vh;
  background: var(--mv-white);
  color: var(--mv-text);
  overflow: clip;
}

.mv-section {
  position: relative;
}

.mv-container {
  width: min(100%, var(--mv-max));
  margin-inline: auto;
  padding-inline: var(--mv-pad);
}

.mv-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mv-hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mv-skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100000;
  transform: translateY(-140%);
  padding: 12px 16px;
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease;
}

.mv-skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--mv-green);
  outline-offset: 4px;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.mv-eyebrow {
  margin: 0 0 18px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mv-section-title {
  max-width: 980px;
  margin: 0;
  color: var(--mv-text);
  font-size: clamp(34px, 5.2vw, 78px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.mv-section-head {
  display: grid;
  gap: 18px;
  max-width: 1080px;
}

.mv-section-head p:not(.mv-eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.72;
}

.mv-section-head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

/* =========================================================
   BUTTONS
========================================================= */

.mv-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--mv-radius-pill);
  background: transparent;
  color: var(--mv-text);
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.mv-btn span {
  line-height: 1;
}

.mv-btn--primary {
  background: var(--mv-green);
  border-color: var(--mv-green);
  color: var(--mv-black);
}

.mv-btn--primary:hover,
.mv-btn--primary:focus-visible {
  background: var(--mv-black);
  border-color: var(--mv-black);
  color: var(--mv-white);
  transform: translateY(-2px);
}

.mv-btn--secondary {
  background: var(--mv-white);
  border-color: var(--mv-border-strong);
  color: var(--mv-black);
}

.mv-btn--secondary:hover,
.mv-btn--secondary:focus-visible {
  border-color: var(--mv-black);
  background: var(--mv-black);
  color: var(--mv-white);
  transform: translateY(-2px);
}

.mv-inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--mv-black);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-inline-cta:hover {
  color: var(--mv-green-dark);
  transform: translateX(4px);
}



.mv-btn--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--mv-muted);
}

.mv-btn--ghost:hover,
.mv-btn--ghost:focus-visible {
  background: var(--mv-white-2);
  border-color: var(--mv-border-strong);
  color: var(--mv-black);
  transform: translateY(-2px);
}




/* =========================================================
   HEADER
   Used by header.php, delivered later.
========================================================= */

.mv-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9990;
  height: var(--mv-header-height);
  display: grid;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--mv-border);
  backdrop-filter: blur(18px);
  transition:
    height 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.admin-bar .mv-header {
  top: 32px;
}

.mv-header.is-scrolled {
  height: var(--mv-header-height-small);
  border-color: var(--mv-border-strong);
  background: rgba(255, 255, 255, 0.98);
}

.mv-header__inner {
  width: min(100%, var(--mv-max));
  margin-inline: auto;
  padding-inline: var(--mv-pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
}

.mv-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.mv-header__logo {
  width: auto;
  height: 38px;
  max-width: 176px;
  object-fit: contain;
}

.mv-header__wordmark {
  color: var(--mv-black);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.mv-header__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  min-width: 0;
}

.mv-header__nav a {
  color: rgba(10, 10, 10, 0.62);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-header__nav a:hover,
.mv-header__nav a.is-active {
  color: var(--mv-black);
  transform: translateY(-1px);
}

.mv-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mv-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--mv-green);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-header__cta:hover {
  background: var(--mv-black);
  border-color: var(--mv-black);
  color: var(--mv-white);
  transform: translateY(-2px);
}

.mv-header__toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  cursor: pointer;
}

.mv-header__toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--mv-black);
  border-radius: 99px;
  transition:
    top 220ms ease,
    transform 220ms ease,
    background-color 220ms ease;
}

.mv-header__toggle span:first-child {
  top: 15px;
}

.mv-header__toggle span:last-child {
  top: 24px;
}

body.mv-drawer-open .mv-header__toggle span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

body.mv-drawer-open .mv-header__toggle span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mv-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9980;
  background: rgba(10, 10, 10, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.mv-drawer-open .mv-drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mv-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 9995;
  width: min(440px, calc(100vw - 20px));
  background: var(--mv-white);
  border-left: 1px solid var(--mv-border);
  transform: translateX(104%);
  transition: transform 300ms var(--mv-ease);
}

.admin-bar .mv-drawer {
  top: 32px;
}

body.mv-drawer-open .mv-drawer {
  transform: translateX(0);
}

.mv-drawer__inner {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 24px;
}

.mv-drawer__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--mv-border);
  color: var(--mv-muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-drawer__nav {
  display: grid;
  align-content: start;
}

.mv-drawer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  border-bottom: 1px solid var(--mv-border);
  color: var(--mv-black);
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-drawer__nav a:hover,
.mv-drawer__nav a.is-active {
  color: var(--mv-green-dark);
  transform: translateX(4px);
}

.mv-drawer__bottom {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--mv-border);
}

.mv-drawer__bottom a {
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

/* =========================================================
   REVEAL AND TEXT ANIMATIONS
========================================================= */

.mv-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms var(--mv-ease);
}

.mv-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mv-reveal:nth-child(2) {
  transition-delay: 50ms;
}

.mv-reveal:nth-child(3) {
  transition-delay: 90ms;
}

.mv-reveal:nth-child(4) {
  transition-delay: 130ms;
}

.mv-split .mv-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.mv-split .mv-word span {
  display: inline-block;
  transform: translateY(112%);
  opacity: 0;
  transition:
    transform 850ms var(--mv-ease),
    opacity 650ms ease;
}

.mv-split.is-visible .mv-word span {
  transform: translateY(0);
  opacity: 1;
}

.mv-tick-title {
  visibility: hidden;
}

.mv-tick-title.is-tick-ready {
  visibility: visible;
}

.mv-tick-title .mv-tick-word {
  display: inline-block;
  white-space: nowrap;
}

.mv-tick-title .mv-tick-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.22em);
  transition:
    opacity 80ms linear,
    transform 160ms var(--mv-ease);
  will-change: opacity, transform;
}

.mv-tick-title.is-ticking .mv-tick-char {
  opacity: 1;
  transform: translateY(0);
}

.mv-tick-title .mv-tick-char[data-space="true"] {
  width: 0.26em;
}

/* =========================================================
   01 HERO
========================================================= */

.mv-hero {
  min-height: 100svh;
  padding: clamp(116px, 10vw, 156px) 0 0;
  background: var(--mv-white);
  color: var(--mv-text);
}

.admin-bar .mv-hero {
  padding-top: clamp(138px, 11vw, 176px);
}

.mv-hero__title {
  max-width: 900px;
  margin: 0;
  color: var(--mv-text);
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.mv-hero__lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--mv-muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.58;
}

.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mv-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.mv-hero__trust li {
  padding: 9px 12px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white-2);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 650;
}

.mv-hero__nav-row {
  margin-top: clamp(40px, 7vw, 76px);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
  background: var(--mv-white-2);
}

.mv-hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 70px;
  overflow-x: auto;
}

.mv-hero__nav-inner a {
  color: var(--mv-muted);
  font-size: 14px;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-hero__nav-inner a:hover {
  color: var(--mv-black);
  transform: translateY(-1px);
}

/* =========================================================
   01B SCROLL HERO
   Sticky "spotlight text" reveal, followed by a CTA panel.
   Pure CSS (position: sticky + background-clip: text, no JS,
   no ScrollTrigger). Everything is scoped under .mv-scroll-hero
   so it can never leak onto the real <header>/<main>/ul/li
   used by the rest of the site.
========================================================= */

.mv-scroll-hero {
  --mv-sh-start: 50vh;
  --mv-sh-space: clamp(48px, 8vw, 96px);
  --mv-sh-dimmed: color-mix(in oklch, #fff, transparent 80%);
  position: relative;
  background: #050505;
  color: var(--mv-white);
  overflow-x: clip;
}

.mv-scroll-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.6;
  pointer-events: none;
}

/* Only .mv-scroll-hero__title is sticky. The row itself is a plain
   (non-sticky) block whose height is set by the 7 stacked <li>s,
   which is what bounds how long the title can stay stuck — avoiding
   a fragile sticky-inside-sticky setup. */
.mv-scroll-hero__sticky {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: calc(var(--mv-sh-start) - 0.5lh) var(--mv-pad) 0;
  line-height: 1.15;
  margin-bottom: var(--mv-sh-space);
  white-space: nowrap;
}

.mv-scroll-hero__title {
  position: sticky;
  top: calc(var(--mv-sh-start) - 0.5lh);
  margin: 0;
  display: inline-block;
  height: fit-content;
  color: var(--mv-white);
  font-family: var(--mv-font);
  font-size: clamp(20px, 3.4vw, 56px);
  font-weight: 740;
  letter-spacing: -0.02em;
}

.mv-scroll-hero__list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
  font-family: var(--mv-font);
  font-size: clamp(20px, 3.4vw, 56px);
  font-weight: 740;
  letter-spacing: -0.02em;
}

.mv-scroll-hero__list li {
  background: linear-gradient(
    180deg,
    var(--mv-sh-dimmed) 0 calc(var(--mv-sh-start) - 0.5lh),
    var(--mv-green) calc(var(--mv-sh-start) - 0.55lh) calc(var(--mv-sh-start) + 0.55lh),
    var(--mv-sh-dimmed) calc(var(--mv-sh-start) + 0.5lh)
  );
  background-attachment: fixed;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.mv-scroll-hero__cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70vh;
  padding: clamp(48px, 8vw, 96px) var(--mv-pad);
  text-align: center;
}

.mv-scroll-hero__tagline {
  margin: 0;
  color: rgba(245, 245, 245, 0.82);
  font-family: var(--mv-font);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 620;
  line-height: 1.4;
}

.mv-scroll-hero__tagline a {
  color: var(--mv-green);
  text-decoration: none;
  text-underline-offset: 0.14em;
}

.mv-scroll-hero__tagline a:hover,
.mv-scroll-hero__tagline a:focus-visible {
  text-decoration: underline;
}

.mv-scroll-hero__social {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  left: clamp(20px, 3vw, 32px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(245, 245, 245, 0.8);
  opacity: 0.85;
  transition:
    opacity 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.mv-scroll-hero__social svg {
  width: 20px;
  height: 20px;
}

.mv-scroll-hero__social:hover,
.mv-scroll-hero__social:focus-visible {
  opacity: 1;
  border-color: var(--mv-green);
  color: var(--mv-green);
}

@supports (animation-timeline: view()) {
  .mv-scroll-hero__cta {
    view-timeline: --mv-sh-cta;
  }

  .mv-scroll-hero__cta-inner {
    animation: mv-sh-reveal both ease-in-out;
    animation-timeline: --mv-sh-cta;
    animation-range: entry 60%;
  }

  @keyframes mv-sh-reveal {
    0% {
      opacity: 0;
      transform: translateY(24px);
    }
  }
}

@media (max-width: 760px) {
  .mv-scroll-hero__sticky {
    flex-direction: column;
    align-items: center;
    text-align: center;
    white-space: normal;
    padding-top: calc(var(--mv-sh-start) - 1lh);
  }

  .mv-scroll-hero__title,
  .mv-scroll-hero__list {
    font-size: clamp(24px, 8vw, 40px);
  }

  .mv-scroll-hero__title {
    max-width: 90vw;
  }

  .mv-scroll-hero__social {
    width: 40px;
    height: 40px;
  }
}

/* =========================================================
   02 SOCIAL PROOF
========================================================= */

.mv-proof-strip {
  padding: 34px 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-proof-strip__label {
  margin: 0 0 18px;
  color: var(--mv-muted-2);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv-proof-strip__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 1px;
  border: 1px solid var(--mv-border);
  background: var(--mv-border);
}

.mv-proof-strip__logos span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 14px;
  font-weight: 720;
  text-align: center;
}

/* =========================================================
   03 DEVICE SHOWCASE
========================================================= */

.mv-device-showcase {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  color: var(--mv-text);
}

.mv-device-showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
}

.mv-device-showcase__copy {
  position: sticky;
  top: calc(var(--mv-header-height) + 40px);
  min-width: 0;
}

.mv-device-steps {
  display: grid;
  gap: 10px;
  margin-top: 36px;
}

.mv-device-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 18px;
  padding: 20px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.mv-device-step:hover,
.mv-device-step.is-active {
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
  transform: translateY(-2px);
}

.mv-device-step span {
  grid-row: span 2;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.1em;
}

.mv-device-step h3 {
  margin: 0;
  color: var(--mv-black);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mv-device-step p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 14px;
  line-height: 1.58;
}

.mv-devices {
  position: sticky;
  top: calc(var(--mv-header-height) + 38px);
  min-height: 640px;
  display: grid;
  place-items: center;
}

.mv-device {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--mv-border);
  background: var(--mv-white);
  transition:
    transform 700ms var(--mv-ease),
    opacity 500ms ease;
}

.mv-device--laptop {
  width: min(100%, 740px);
  border-radius: var(--mv-radius-lg);
  transform: translateY(60px) scale(0.94);
}

.mv-device-showcase.is-visible .mv-device--laptop,
.mv-device-showcase.is-device-active .mv-device--laptop {
  transform: translateY(0) scale(1);
}

.mv-device--phone {
  position: absolute;
  right: clamp(8px, 4vw, 56px);
  bottom: clamp(20px, 5vw, 72px);
  width: min(28%, 210px);
  border-radius: 30px;
  transform: translateY(110px) rotate(5deg) scale(0.9);
}

.mv-device-showcase.is-visible .mv-device--phone,
.mv-device-showcase.is-device-active .mv-device--phone {
  transform: translateY(0) rotate(3deg) scale(1);
}

.mv-device__chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid var(--mv-border);
  background: var(--mv-white-2);
}

.mv-device__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #d9d9d9;
}

.mv-device__chrome span:first-child {
  background: var(--mv-green);
}

.mv-device--laptop img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 700ms var(--mv-ease);
}

.mv-device--phone img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 700ms var(--mv-ease);
}

/* =========================================================
   04 SERVICES
========================================================= */

.mv-services {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 6vw, 76px);
}

.mv-service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--mv-green);
}

.mv-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  margin-bottom: auto;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.mv-service-card h3 {
  max-width: 340px;
  margin: 46px 0 12px;
  color: var(--mv-black);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.mv-service-card p {
  max-width: 360px;
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

.mv-industries {
  margin-top: clamp(58px, 8vw, 112px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-industries__intro {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

.mv-industries__intro h3 {
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.mv-industries__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mv-industries__tabs button {
  appearance: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-industries__tabs button:hover,
.mv-industries__tabs button.is-active {
  background: var(--mv-green);
  border-color: var(--mv-green);
  color: var(--mv-black);
  transform: translateY(-2px);
}

.mv-industries__panels {
  position: relative;
  margin-top: 24px;
}

.mv-industry-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  padding-top: 24px;
  border-top: 1px solid var(--mv-border);
}

.mv-industry-panel.is-active {
  display: grid;
}

.mv-industry-panel span {
  display: block;
  margin-bottom: 16px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.mv-industry-panel h4 {
  max-width: 720px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.mv-industry-panel p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--mv-muted);
  font-size: 16px;
  line-height: 1.72;
}

.mv-industry-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mv-industry-panel li {
  padding: 13px 14px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white-2);
  color: var(--mv-muted);
  font-size: 14px;
  font-weight: 650;
}

.mv-industry-panel .mv-inline-cta {
  grid-column: 1 / -1;
  margin-top: 6px;
}

/* =========================================================
   05 PROCESS
========================================================= */

.mv-process {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  color: var(--mv-text);
}

.mv-process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 6vw, 72px);
}

.mv-process-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-process-card:hover {
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
  transform: translateY(-4px);
}

.mv-process-card span {
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.mv-process-card h3 {
  margin: auto 0 14px;
  color: var(--mv-black);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.mv-process-card p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mv-process__note {
 max-width: 780px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white-2);
  text-align: center;
}

.mv-process__note p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.6;
}



/* =========================================================
   FRONT PAGE PRICING CTA
========================================================= */

.mv-front-pricing-cta {
  padding: clamp(66px, 8vw, 118px) 0;
  background: var(--mv-white);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-front-pricing-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background:
    linear-gradient(135deg, rgba(8, 224, 134, 0.12), rgba(255, 255, 255, 0) 48%),
    var(--mv-white-2);
}

.mv-front-pricing-cta__copy {
  min-width: 0;
}

.mv-front-pricing-cta__copy .mv-section-title {
  max-width: 820px;
  font-size: clamp(34px, 4.8vw, 72px);
}

.mv-front-pricing-cta__copy p:not(.mv-eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-front-pricing-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: min(100%, 240px);
}

.mv-front-pricing-cta__actions .mv-btn {
  width: 100%;
}

@media (max-width: 860px) {
  .mv-front-pricing-cta__inner {
    grid-template-columns: 1fr;
  }

  .mv-front-pricing-cta__actions {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .mv-front-pricing-cta__inner {
    padding: 22px;
    border-radius: var(--mv-radius);
  }
}



/* =========================================================
   06 WORK
========================================================= */

.mv-work {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-work__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}

.mv-work__head > p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 16px;
  line-height: 1.72;
}

.mv-work__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 44px);
}

.mv-work__filters button {
  appearance: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-work__filters button:hover,
.mv-work__filters button.is-active {
  background: var(--mv-green);
  border-color: var(--mv-green);
  color: var(--mv-black);
  transform: translateY(-2px);
}

.mv-work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mv-project-card.is-hidden,
.mv-project-card.is-load-hidden {
  display: none;
}

.mv-work__load {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
}

.mv-work__load.is-hidden {
  display: none;
}

.mv-work__load p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}



.mv-project-card {
  min-height: clamp(360px, 38vw, 580px);
}

.mv-project-card:nth-child(6n + 1),
.mv-project-card:nth-child(6n + 4) {
  grid-column: span 7;
}

.mv-project-card:nth-child(6n + 2),
.mv-project-card:nth-child(6n + 3) {
  grid-column: span 5;
}

.mv-project-card:nth-child(6n + 5),
.mv-project-card:nth-child(6n + 6) {
  grid-column: span 6;
}

.mv-project-card.is-hidden,
.mv-project-card.is-load-hidden {
  display: none;
}

.mv-project-card__button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  align-items: end;
  padding: 0;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
  color: var(--mv-black);
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 220ms var(--mv-ease),
    border-color 220ms ease;
}

.mv-project-card__button:hover,
.mv-project-card__button:focus-visible {
  border-color: var(--mv-green);
  transform: translateY(-5px);
}

.mv-project-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--mv-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--mv-black);
  font-size: 12px;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.mv-project-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--mv-white-3);
}

.mv-project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03) brightness(0.88);
  transform: scale(1.02);
  transition:
    transform 620ms var(--mv-ease),
    filter 520ms ease;
}

.mv-project-card__button:hover .mv-project-card__image img,
.mv-project-card__button:focus-visible .mv-project-card__image img {
  filter: grayscale(0) contrast(1.02) brightness(0.98) saturate(1.08);
  transform: scale(1.07);
}

.mv-project-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: min(calc(100% - 28px), 680px);
  margin: 14px;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--mv-radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.mv-project-card__category {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid var(--mv-green);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 11px;
  font-weight: 760;
}

.mv-project-card__content strong {
  max-width: 100%;
  color: var(--mv-black);
  font-size: clamp(30px, 4.2vw, 66px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.mv-project-card__content > span:last-child {
  max-width: 620px;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.58;
}

.mv-project-card__hover {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--mv-radius-pill);
  background: var(--mv-black);
  color: var(--mv-white);
  font-size: 13px;
  font-weight: 720;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mv-project-card__button:hover .mv-project-card__hover,
.mv-project-card__button:focus-visible .mv-project-card__hover {
  opacity: 1;
  transform: translateY(0);
}

.mv-work__foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* =========================================================
   PROJECT MODAL
========================================================= */

.mv-project-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  width: 100vw;
  height: 100dvh;
  display: none;
  background: var(--mv-white);
  color: var(--mv-black);
  overflow: hidden;
}

.admin-bar .mv-project-modal {
  top: 32px;
  height: calc(100dvh - 32px);
}

.mv-project-modal.is-open {
  display: block;
}

.mv-project-modal__backdrop {
  position: fixed;
  inset: 0;
  background: var(--mv-white);
}

.mv-project-modal__dialog {
  position: relative;
  z-index: 1;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 58vw) minmax(420px, 42vw);
  background: var(--mv-white);
}

.admin-bar .mv-project-modal__dialog {
  height: calc(100dvh - 32px);
}

.mv-project-modal__close {
  position: fixed;
  top: 96px;
  right: 28px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mv-black);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-black);
  color: var(--mv-white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.admin-bar .mv-project-modal__close {
  top: 104px;
}

.mv-project-modal__close:hover {
  background: var(--mv-green);
  color: var(--mv-black);
  transform: rotate(90deg);
}

.mv-project-modal__media {
  height: 100dvh;
  background:
    linear-gradient(135deg, rgba(8, 224, 134, 0.04), rgba(255, 255, 255, 0) 42%),
    var(--mv-white-2);
  border-right: 1px solid var(--mv-border);
  overflow-x: hidden;
  overflow-y: auto;
  padding: clamp(18px, 2vw, 30px);
}

.admin-bar .mv-project-modal__media {
  height: calc(100dvh - 32px);
}

.mv-project-modal__media img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain !important;
  object-position: top center;
  filter: contrast(1.02) brightness(0.98) saturate(1.05);
  transition: opacity 160ms ease;
}

.mv-project-modal__media::-webkit-scrollbar {
  width: 8px;
}

.mv-project-modal__media::-webkit-scrollbar-track {
  background: var(--mv-white-2);
}

.mv-project-modal__media::-webkit-scrollbar-thumb {
  background: var(--mv-green);
  border-radius: var(--mv-radius-pill);
}

.mv-project-modal__body {
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(76px, 8vw, 116px) clamp(26px, 5vw, 72px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.admin-bar .mv-project-modal__body {
  height: calc(100dvh - 32px);
}

.mv-project-modal__body::-webkit-scrollbar {
  width: 8px;
}

.mv-project-modal__body::-webkit-scrollbar-track {
  background: var(--mv-white-2);
}

.mv-project-modal__body::-webkit-scrollbar-thumb {
  background: var(--mv-green);
}

.mv-project-modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--mv-muted);
}

.mv-project-modal__meta span {
  padding: 8px 10px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white-2);
  font-size: 12px;
  font-weight: 700;
}

.mv-project-modal__body h3 {
  max-width: 760px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(42px, 5.8vw, 96px);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.mv-project-modal__body > p {
  max-width: 640px;
  margin: 0;
  color: var(--mv-muted);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.62;
}

.mv-project-modal__before-after {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mv-project-modal__before-after article {
  padding: 18px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white-2);
}

.mv-project-modal__before-after span {
  display: block;
  margin-bottom: 10px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv-project-modal__before-after p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 14px;
  line-height: 1.62;
}

.mv-project-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mv-project-modal__tags span {
  padding: 9px 11px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 12px;
  font-weight: 680;
}

.mv-project-modal__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 520px;
}

.mv-project-modal__thumbs button {
  appearance: none;
  flex: 0 0 86px;
  width: 86px;
  height: 62px;
  padding: 5px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-sm);
  background: var(--mv-white);
  cursor: pointer;
  overflow: hidden;
  opacity: 0.62;
  transition:
    opacity 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.mv-project-modal__thumbs button:hover,
.mv-project-modal__thumbs button.is-active {
  opacity: 1;
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
  transform: translateY(-2px);
}

.mv-project-modal__thumbs img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  filter: grayscale(1) contrast(1.03) brightness(0.94);
  transform: scale(1);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.mv-project-modal__thumbs button:hover img,
.mv-project-modal__thumbs button.is-active img {
  filter: grayscale(0) contrast(1.02) brightness(0.98) saturate(1.08);
  transform: scale(1);
}

.mv-project-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.mv-project-modal__actions [hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .mv-project-modal__thumbs {
    max-width: 100%;
  }

  .mv-project-modal__thumbs button {
    flex-basis: 78px;
    width: 78px;
    height: 56px;
    padding: 4px;
  }
}

@media (max-width: 520px) {
  .mv-project-modal__thumbs button {
    flex-basis: 70px;
    width: 70px;
    height: 50px;
  }
}



/* =========================================================
   07 TRUST
========================================================= */

.mv-trust {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  color: var(--mv-text);
}

.mv-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(36px, 6vw, 74px);
}

.mv-trust-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-trust-card span {
  color: var(--mv-green);
  font-size: 56px;
  font-weight: 760;
  line-height: 0.7;
}

.mv-trust-card h3 {
  margin: auto 0 12px;
  color: var(--mv-black);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mv-trust-card p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

/* =========================================================
   08 ABOUT
========================================================= */

.mv-about {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
}

.mv-about__media {
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02) brightness(0.96);
}

.mv-about__copy {
  min-width: 0;
}

.mv-about__copy p:not(.mv-eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-about__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.mv-about__facts span {
  padding: 9px 12px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 650;
}

/* =========================================================
   09 AUDIT
========================================================= */

.mv-audit {
  padding: clamp(70px, 9vw, 132px) 0;
  background: var(--mv-black);
  color: var(--mv-white);
}

.mv-audit .mv-eyebrow {
  color: var(--mv-green);
}

.mv-audit .mv-section-title {
  color: var(--mv-white);
}

.mv-audit__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.mv-audit__copy p:not(.mv-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-audit__card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--mv-radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.mv-audit__card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--mv-green);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-audit__card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.mv-audit__card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

/* =========================================================
   10 FAQ
========================================================= */

.mv-faq-section {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
}

.mv-faq-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.mv-faq-section__copy {
  position: sticky;
  top: calc(var(--mv-header-height) + 38px);
}

.mv-faq {
  display: grid;
  gap: 10px;
}

.mv-faq__item {
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
  overflow: hidden;
}

.mv-faq__item button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--mv-black);
  text-align: left;
  cursor: pointer;
}

.mv-faq__item button span {
  font-size: 18px;
  font-weight: 740;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.mv-faq__item button strong {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease;
}

.mv-faq__item.is-open button strong {
  transform: rotate(45deg);
}

.mv-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.mv-faq__item.is-open .mv-faq__answer {
  grid-template-rows: 1fr;
}

.mv-faq__answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.72;
}

.mv-faq__item.is-open .mv-faq__answer > p {
  padding-bottom: 22px;
}

/* =========================================================
   11 CONTACT
========================================================= */

.mv-contact {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.74fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.mv-contact__copy p:not(.mv-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-contact__links {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 28px;
}

.mv-contact__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.mv-contact__links a:hover {
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
  transform: translateX(4px);
}

.mv-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-form__row {
  display: grid;
  gap: 8px;
}

.mv-form label {
  color: var(--mv-muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mv-form input,
.mv-form textarea,
.mv-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
  color: var(--mv-black);
  padding: 13px 14px;
  outline: 0;
  font-size: 15px;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-form textarea {
  min-height: 148px;
  resize: vertical;
}

.mv-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--mv-black) 50%),
    linear-gradient(135deg, var(--mv-black) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 21px,
    calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.mv-form input::placeholder,
.mv-form textarea::placeholder {
  color: var(--mv-muted-3);
}

.mv-form input:focus,
.mv-form textarea:focus,
.mv-form select:focus {
  border-color: var(--mv-green);
  background: var(--mv-white-2);
}

.mv-form__submit {
  width: 100%;
  margin-top: 4px;
}

.mv-form__note {
  margin: 0;
  color: var(--mv-muted);
  font-size: 13px;
  line-height: 1.58;
}

/* =========================================================
   12 FUTURE READY
========================================================= */

.mv-future {
  padding: clamp(72px, 10vw, 138px) 0;
  background: var(--mv-white);
}

.mv-future__inner {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.mv-future .mv-section-title {
  max-width: 1120px;
  font-size: clamp(34px, 5.2vw, 82px);
}

.mv-future__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mv-future__grid article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
}

.mv-future__grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.mv-future__grid h3 {
  margin: 0 0 10px;
  color: var(--mv-black);
  font-size: 24px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.04em;
}

.mv-future__grid p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

/* =========================================================
   FOOTER
   Used by footer.php, delivered later.
========================================================= */

.mv-footer {
  background: var(--mv-white);
  color: var(--mv-black);
  border-top: 1px solid var(--mv-border);
}

.mv-footer__shell {
  width: min(100%, var(--mv-max));
  margin-inline: auto;
  padding: clamp(32px, 5vw, 66px) var(--mv-pad) clamp(24px, 4vw, 38px);
}

.mv-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: clamp(26px, 4vw, 48px);
  border-bottom: 1px solid var(--mv-border);
}

.mv-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.mv-footer__logo img {
  width: auto;
  height: clamp(32px, 4vw, 50px);
  max-width: 210px;
  object-fit: contain;
}

.mv-footer__email {
  color: var(--mv-black);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-footer__email:hover {
  color: var(--mv-green-dark);
  transform: translateX(3px);
}

.mv-footer__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.34fr) minmax(220px, 0.44fr) minmax(170px, 0.3fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(34px, 5vw, 66px) 0;
  border-bottom: 1px solid var(--mv-border);
}

.mv-footer__label {
  display: block;
  margin: 0 0 16px;
  color: var(--mv-muted);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mv-footer__brief h3 {
  max-width: 640px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(26px, 3.2vw, 50px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.mv-footer__brief p,
.mv-footer__contact p {
  max-width: 450px;
  margin: 16px 0 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

.mv-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid var(--mv-green);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-footer__cta:hover {
  background: var(--mv-black);
  border-color: var(--mv-black);
  color: var(--mv-white);
  transform: translateY(-2px);
}

.mv-footer__nav,
.mv-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv-footer__nav a,
.mv-footer__contact a {
  width: fit-content;
  padding: 5px 0;
  color: var(--mv-black);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.mv-footer__nav a:hover,
.mv-footer__contact a:hover {
  color: var(--mv-green-dark);
  transform: translateX(4px);
}

.mv-footer__social-grid {
  display: grid;
  grid-template-columns: repeat(2, 48px);
  gap: 10px;
}

.mv-footer__social-grid a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--mv-black);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-black);
  color: var(--mv-white);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-footer__social-grid a:hover {
  background: var(--mv-green);
  border-color: var(--mv-green);
  color: var(--mv-black);
  transform: translateY(-3px);
}

.mv-footer__social-grid svg {
  width: 21px;
  height: 21px;
}

.mv-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 22px;
}

.mv-footer__bottom p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .mv-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mv-header__nav {
    display: none;
  }

  .mv-header__toggle {
    display: inline-flex;
  }

  .mv-device-showcase__inner,
  .mv-about__inner,
  .mv-audit__inner,
  .mv-faq-section__inner,
  .mv-contact__inner {
    grid-template-columns: 1fr;
  }

  .mv-device-showcase__copy,
  .mv-devices,
  .mv-faq-section__copy {
    position: relative;
    top: auto;
  }

  .mv-devices {
    min-height: 560px;
  }

  .mv-services__grid,
  .mv-process__grid,
  .mv-trust__grid,
  .mv-future__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-work__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mv-project-card:nth-child(n) {
    grid-column: span 6;
  }

  .mv-footer__content {
    grid-template-columns: 1fr 1fr;
  }

  .mv-footer__brief {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .mv-project-modal {
    overflow-y: auto;
  }

  .mv-project-modal__dialog {
    min-height: 100dvh;
    height: auto;
    grid-template-columns: 1fr;
  }

  .admin-bar .mv-project-modal__dialog {
    min-height: calc(100dvh - 32px);
    height: auto;
  }

    .mv-project-modal__media {
    height: 62dvh;
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--mv-border);
    padding: 12px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .admin-bar .mv-project-modal__media {
    height: 62dvh;
  }
}

  .mv-project-modal__body {
    height: auto;
    min-height: auto;
    overflow: visible;
    padding: 54px 22px 34px;
  }

  .admin-bar .mv-project-modal__body {
    height: auto;
  }

  .mv-project-modal__close {
    top: 82px;
    right: 18px;
  }

  .admin-bar .mv-project-modal__close {
    top: 82px;
  }

  .mv-project-modal__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .mv-section-title {
    font-size: clamp(34px, 8vw, 62px);
    line-height: 0.98;
  }

  .mv-hero__title {
    font-size: clamp(48px, 11vw, 88px);
  }

  .mv-proof-strip__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mv-industry-panel {
    grid-template-columns: 1fr;
  }

  .mv-services__grid,
  .mv-process__grid,
  .mv-trust__grid,
  .mv-future__grid {
    grid-template-columns: 1fr;
  }

  .mv-work__grid {
    grid-template-columns: 1fr;
  }

  .mv-project-card:nth-child(n) {
    grid-column: auto;
  }

  .mv-project-card {
    min-height: 430px;
  }

  .mv-project-card__content strong {
    font-size: clamp(30px, 9vw, 52px);
  }

  .mv-project-modal__before-after {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  .admin-bar .mv-header {
    top: 46px;
  }

  .admin-bar .mv-drawer {
    top: 46px;
  }

  .admin-bar .mv-project-modal {
    top: 46px;
    height: calc(100dvh - 46px);
  }

  .admin-bar .mv-project-modal__dialog {
    min-height: calc(100dvh - 46px);
  }
}

@media (max-width: 720px) {
  :root {
    --mv-pad: 22px;
  }

  .mv-header {
    height: 66px;
  }

  .mv-header.is-scrolled {
    height: 60px;
  }

  .mv-header__logo {
    height: 32px;
    max-width: 150px;
  }

  .mv-header__cta {
    display: none;
  }

  .mv-hero {
    padding-top: 92px;
  }

  .admin-bar .mv-hero {
    padding-top: 120px;
  }

  .mv-hero__title {
    font-size: clamp(44px, 13vw, 74px);
    letter-spacing: -0.066em;
  }

  .mv-hero__lead {
    font-size: 16px;
  }

  .mv-hero__actions,
  .mv-project-modal__actions {
    align-items: stretch;
  }

  .mv-btn {
    width: 100%;
  }

  .mv-devices {
    min-height: 480px;
  }

  .mv-device--phone {
    width: 32%;
    right: 8px;
  }

  .mv-device-step {
    grid-template-columns: 1fr;
  }

  .mv-proof-strip__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mv-industries {
    padding: 18px;
  }

  .mv-industry-panel h4 {
    font-size: clamp(30px, 9vw, 48px);
  }

  .mv-process__note {
    border-radius: var(--mv-radius);
    text-align: left;
  }

  .mv-project-card {
    min-height: 400px;
  }

  .mv-project-card__hover {
    display: none;
  }

  .mv-contact__links a {
    border-radius: var(--mv-radius);
  }

  .mv-footer__top,
  .mv-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mv-footer__content {
    grid-template-columns: 1fr;
  }

  .mv-footer__social-grid {
    grid-template-columns: repeat(4, 48px);
  }
}

@media (max-width: 520px) {
  .mv-section-title {
    font-size: clamp(30px, 10vw, 44px);
    letter-spacing: -0.052em;
  }

  .mv-hero__title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .mv-hero__nav-inner {
    min-height: 58px;
  }

  .mv-proof-strip__logos {
    grid-template-columns: 1fr;
  }

  .mv-service-card,
  .mv-process-card,
  .mv-trust-card {
    min-height: auto;
  }

  .mv-service-card h3 {
    margin-top: 42px;
  }

  .mv-devices {
    min-height: 400px;
  }

  .mv-device--phone {
    width: 34%;
    border-radius: 22px;
  }

  .mv-work__filters,
  .mv-industries__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .mv-work__filters button,
  .mv-industries__tabs button {
    flex: 0 0 auto;
  }

  .mv-project-card__content {
    width: calc(100% - 22px);
    margin: 11px;
    padding: 18px;
  }

  .mv-project-card__content strong {
    font-size: clamp(28px, 10vw, 42px);
  }

  .mv-project-modal__body h3 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .mv-footer__email {
    font-size: 13px;
  }

  .mv-footer__social-grid {
    grid-template-columns: repeat(2, 48px);
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .mv-reveal,
  .mv-split .mv-word span,
  .mv-tick-title .mv-tick-char {
    opacity: 1 !important;
    transform: none !important;
  }

  .mv-tick-title {
    visibility: visible !important;
  }

  .mv-project-card__image img,
  .mv-about__media img,
  .mv-project-modal__thumbs img {
    filter: none;
  }

  .mv-case-card,
  .mv-case-card__media img {
    filter: none !important;
  }

  .mv-scroll-hero__sticky,
  .mv-scroll-hero__title {
    position: static;
  }

  .mv-scroll-hero__list li:not(:last-child) {
    display: none;
  }

  .mv-scroll-hero__list li:last-child {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--mv-green);
  }
}




/* =========================================================
   PRICING PAGE
   page-cjenik.php
========================================================= */

.mv-pricing-page {
  background: var(--mv-white);
  color: var(--mv-black);
}

/* =========================================================
   PRICING HERO
========================================================= */

.mv-pricing-hero {
  padding: clamp(118px, 11vw, 174px) 0 clamp(74px, 9vw, 132px);
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.admin-bar .mv-pricing-hero {
  padding-top: clamp(138px, 12vw, 194px);
}

.mv-pricing-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
}

.mv-pricing-hero__copy {
  min-width: 0;
}

.mv-pricing-hero__title {
  max-width: 1040px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(52px, 8.4vw, 124px);
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.mv-pricing-hero__copy > p:not(.mv-eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--mv-muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
}

.mv-pricing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mv-pricing-hero__note {
  padding: clamp(22px, 3.4vw, 36px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
}

.mv-pricing-hero__note span {
  display: block;
  margin-bottom: 14px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-pricing-hero__note p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   PRICING PACKAGES
========================================================= */

.mv-pricing-packages {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(40px, 6vw, 78px);
  align-items: stretch;
}

.mv-price-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-price-card:hover {
  transform: translateY(-4px);
  border-color: var(--mv-green);
}

.mv-price-card.is-featured {
  border-color: var(--mv-green);
  background:
    linear-gradient(180deg, rgba(8, 224, 134, 0.1), rgba(255, 255, 255, 0) 34%),
    var(--mv-white);
}

.mv-price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  color: var(--mv-black);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
}

.mv-price-card__top {
  display: grid;
  gap: 14px;
  min-height: 230px;
}

.mv-price-card__label {
  display: block;
  width: fit-content;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv-price-card h3 {
  max-width: 340px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.mv-price-card__top p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.66;
}

.mv-price-card__price {
  padding: 22px 0;
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-price-card__price strong {
  display: block;
  color: var(--mv-black);
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.mv-price-card__price span {
  display: block;
  margin-top: 8px;
  color: var(--mv-muted);
  font-size: 13px;
  line-height: 1.45;
}

.mv-price-card__best {
  padding: 16px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white-2);
}

.mv-price-card__best span,
.mv-price-card__list > span {
  display: block;
  margin-bottom: 10px;
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv-price-card__best p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 14px;
  line-height: 1.62;
}

.mv-price-card__list {
  display: grid;
  gap: 10px;
}

.mv-price-card__list ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mv-price-card__list li {
  position: relative;
  padding-left: 22px;
  color: var(--mv-muted);
  font-size: 14px;
  line-height: 1.55;
}

.mv-price-card__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: var(--mv-radius-pill);
  background: var(--mv-green);
  transform: translateY(-50%);
}

.mv-price-card__list--muted {
  margin-top: auto;
  padding-top: 8px;
}

.mv-price-card__list--muted li {
  color: var(--mv-muted-2);
}

.mv-price-card__list--muted li::before {
  background: var(--mv-border-strong);
}

.mv-price-card > .mv-btn {
  width: 100%;
  margin-top: 4px;
}

/* =========================================================
   PRICING ADDONS
========================================================= */

.mv-pricing-addons {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.mv-pricing-addons__head {
  max-width: 980px;
}

.mv-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(38px, 6vw, 72px);
}

.mv-addon-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-addon-card:hover {
  transform: translateY(-4px);
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
}

.mv-addon-card h3 {
  max-width: 360px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.mv-addon-card strong {
  display: block;
  margin: auto 0 12px;
  color: var(--mv-green-dark);
  font-size: 22px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.035em;
}

.mv-addon-card p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================
   PRICING COMPARE
========================================================= */

.mv-pricing-compare {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 6vw, 72px);
}

.mv-compare-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-compare-card span {
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.mv-compare-card h3 {
  margin: auto 0 12px;
  color: var(--mv-black);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.mv-compare-card p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

/* =========================================================
   PRICING FAQ
========================================================= */

.mv-pricing-faq {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.mv-pricing-faq__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.mv-pricing-faq__copy {
  position: sticky;
  top: calc(var(--mv-header-height) + 38px);
}

/* =========================================================
   PRICING CONTACT
========================================================= */

.mv-pricing-contact {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
}

.mv-pricing-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.74fr);
  gap: clamp(38px, 7vw, 108px);
  align-items: start;
}

.mv-pricing-contact__copy p:not(.mv-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

/* =========================================================
   PRICING RESPONSIVE
========================================================= */

@media (max-width: 1280px) {
  .mv-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mv-price-card__top {
    min-height: 190px;
  }
}

@media (max-width: 1180px) {
  .mv-pricing-hero__inner,
  .mv-pricing-faq__inner,
  .mv-pricing-contact__inner {
    grid-template-columns: 1fr;
  }

  .mv-pricing-faq__copy {
    position: relative;
    top: auto;
  }
}

@media (max-width: 920px) {
  .mv-addons-grid,
  .mv-compare-grid {
    grid-template-columns: 1fr;
  }

  .mv-addon-card,
  .mv-compare-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .mv-pricing-hero {
    padding-top: 96px;
  }

  .admin-bar .mv-pricing-hero {
    padding-top: 124px;
  }

  .mv-pricing-hero__title {
    font-size: clamp(42px, 13vw, 72px);
    letter-spacing: -0.064em;
  }

  .mv-pricing-hero__actions {
    align-items: stretch;
  }

  .mv-pricing-grid {
    grid-template-columns: 1fr;
  }

  .mv-price-card {
    padding: 22px;
  }

  .mv-price-card__badge {
    position: static;
    width: fit-content;
    margin-bottom: -4px;
  }

  .mv-price-card__top {
    min-height: auto;
  }

  .mv-price-card h3 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .mv-price-card__price strong {
    font-size: clamp(36px, 12vw, 54px);
  }
}

@media (max-width: 520px) {
  .mv-pricing-hero__title {
    font-size: clamp(40px, 14vw, 60px);
  }

  .mv-pricing-hero__note,
  .mv-price-card,
  .mv-addon-card,
  .mv-compare-card {
    border-radius: var(--mv-radius);
  }

  .mv-price-card__best {
    padding: 14px;
  }
}










/* =========================================================
   INSTAGRAM FEED
========================================================= */

.mv-instagram {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-instagram__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.mv-instagram__head .mv-section-title {
  max-width: 920px;
}

.mv-instagram__feed {
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
  padding: clamp(14px, 2vw, 24px);
}

/* Smash Balloon feed styling */
.mv-instagram__feed #sb_instagram {
  width: 100% !important;
  padding-bottom: 0 !important;
}

.mv-instagram__feed #sb_instagram,
.mv-instagram__feed #sb_instagram * {
  font-family: var(--mv-font) !important;
}

.mv-instagram__feed #sb_instagram .sbi_photo {
  border-radius: var(--mv-radius) !important;
  overflow: hidden !important;
  filter: grayscale(1) contrast(1.03) brightness(0.9);
  transition:
    filter 320ms ease,
    transform 320ms var(--mv-ease);
}

.mv-instagram__feed #sb_instagram .sbi_photo:hover {
  filter: grayscale(0) contrast(1.02) brightness(0.98) saturate(1.08);
  transform: translateY(-4px);
}

.mv-instagram__feed #sb_instagram #sbi_load {
  padding-top: 24px !important;
}

.mv-instagram__feed #sb_instagram #sbi_load .sbi_load_btn,
.mv-instagram__feed #sb_instagram #sbi_load .sbi_follow_btn a {
  border-radius: var(--mv-radius-pill) !important;
  font-weight: 760 !important;
  box-shadow: none !important;
}

.mv-instagram__feed #sb_instagram #sbi_load .sbi_load_btn {
  background: var(--mv-black) !important;
  color: var(--mv-white) !important;
}

.mv-instagram__feed #sb_instagram #sbi_load .sbi_follow_btn a {
  background: var(--mv-green) !important;
  color: var(--mv-black) !important;
}

.mv-instagram__fallback {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px dashed var(--mv-border-strong);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
}

.mv-instagram__fallback p {
  max-width: 620px;
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

@media (max-width: 760px) {
  .mv-instagram__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mv-instagram__head .mv-btn {
    width: 100%;
  }

  .mv-instagram__feed {
    padding: 10px;
    border-radius: var(--mv-radius);
  }
}



/* =========================================================
   ABOUT PAGE
   page-o-nama.php
========================================================= */

.mv-about-page {
  background: var(--mv-white);
  color: var(--mv-black);
}

/* =========================================================
   ABOUT HERO
========================================================= */

.mv-about-hero {
  position: relative;
  padding: clamp(120px, 11vw, 178px) 0 clamp(74px, 9vw, 136px);
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
  overflow: hidden;
}

.admin-bar .mv-about-hero {
  padding-top: clamp(140px, 12vw, 198px);
}

.mv-about-hero::before {
  content: "";
  position: absolute;
  inset: auto -14vw -22vw auto;
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(8, 224, 134, 0.14), rgba(8, 224, 134, 0) 62%);
  pointer-events: none;
}

.mv-about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.mv-about-hero__copy {
  min-width: 0;
}

.mv-about-hero__title {
  max-width: 1040px;
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(52px, 8vw, 122px);
  font-weight: 760;
  line-height: 0.88;
  letter-spacing: -0.074em;
  text-wrap: balance;
}

.mv-about-hero__copy > p:not(.mv-eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--mv-muted);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.66;
}

.mv-about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.mv-about-hero__media {
  position: relative;
  min-height: clamp(560px, 56vw, 760px);
}

.mv-about-hero__media figure {
  margin: 0;
}

.mv-about-hero__portrait {
  position: absolute;
  inset: 0 auto auto 10%;
  width: min(76%, 500px);
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
}

.mv-about-hero__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5.35;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.96);
  transition:
    filter 380ms ease,
    transform 680ms var(--mv-ease);
}

.mv-about-hero__portrait:hover img {
  filter: grayscale(0.2) contrast(1.02) brightness(0.98);
  transform: scale(1.035);
}

.mv-about-hero__card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
}

.mv-about-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-about-hero__card--one {
  right: 0;
  bottom: 12%;
  width: min(48%, 300px);
  transform: rotate(3deg);
}

.mv-about-hero__card--one img {
  aspect-ratio: 4 / 3;
}

.mv-about-hero__card--two {
  left: 0;
  bottom: 0;
  width: min(52%, 330px);
  transform: rotate(-4deg);
}

.mv-about-hero__card--two img {
  aspect-ratio: 4 / 3.05;
}

/* =========================================================
   ABOUT INTRO
========================================================= */

.mv-about-intro {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
}

.mv-about-intro__sticky {
  position: sticky;
  top: calc(var(--mv-header-height) + 40px);
  min-width: 0;
}

.mv-about-intro__text {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.mv-about-intro__text > p {
  max-width: 780px;
  margin: 0;
  color: var(--mv-muted);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.62;
  letter-spacing: -0.015em;
}

.mv-about-intro__text > p:first-child {
  color: var(--mv-black);
  font-weight: 560;
}

.mv-about-intro__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mv-about-intro__facts span {
  padding: 9px 12px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
}

/* =========================================================
   ABOUT IMAGE BAND
========================================================= */

.mv-about-image-band {
  padding: clamp(36px, 6vw, 80px) 0;
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-image-band__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.mv-about-image-band figure {
  position: relative;
  margin: 0;
  min-height: clamp(320px, 36vw, 560px);
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
}

.mv-about-image-band figure:nth-child(2) {
  margin-top: clamp(34px, 5vw, 78px);
}

.mv-about-image-band figure:nth-child(3) {
  margin-top: clamp(74px, 8vw, 132px);
}

.mv-about-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.02) brightness(0.96);
  transition:
    transform 720ms var(--mv-ease),
    filter 420ms ease;
}

.mv-about-image-band figure:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.02) brightness(0.99) saturate(1.04);
}

/* =========================================================
   ABOUT PRINCIPLES
========================================================= */

.mv-about-principles {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(38px, 6vw, 76px);
}

.mv-about-principle-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-about-principle-card:hover {
  transform: translateY(-4px);
  border-color: var(--mv-green);
  background: var(--mv-green-soft);
}

.mv-about-principle-card span {
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.11em;
}

.mv-about-principle-card h3 {
  max-width: 390px;
  margin: auto 0 14px;
  color: var(--mv-black);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.mv-about-principle-card p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================================
   ABOUT METHOD
========================================================= */

.mv-about-method {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-method__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
}

.mv-about-method__copy {
  position: sticky;
  top: calc(var(--mv-header-height) + 40px);
  min-width: 0;
}

.mv-about-method__copy p:not(.mv-eyebrow) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-about-method__copy .mv-btn {
  margin-top: 28px;
}

.mv-about-method__steps {
  display: grid;
  gap: 12px;
}

.mv-about-method-step {
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(84px, 0.22fr) minmax(0, 1fr);
  gap: 18px clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white-2);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mv-about-method-step:hover {
  transform: translateY(-3px);
  border-color: var(--mv-green);
  background: var(--mv-white);
}

.mv-about-method-step span {
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mv-about-method-step h3 {
  margin: 0;
  color: var(--mv-black);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.mv-about-method-step p {
  grid-column: 2;
  max-width: 640px;
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.72;
}

/* =========================================================
   ABOUT WORKSPACE
========================================================= */

.mv-about-workspace {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white-2);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-workspace__inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
}

.mv-about-workspace__image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-white);
}

.mv-about-workspace__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(0.04) contrast(1.02) brightness(0.96);
  transition:
    transform 720ms var(--mv-ease),
    filter 420ms ease;
}

.mv-about-workspace__image:hover img {
  transform: scale(1.045);
  filter: grayscale(0) contrast(1.02) brightness(0.99) saturate(1.04);
}

.mv-about-workspace__copy {
  min-width: 0;
}

.mv-about-workspace__copy p:not(.mv-eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

/* =========================================================
   ABOUT VALUES
========================================================= */

.mv-about-values {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
  border-bottom: 1px solid var(--mv-border);
}

.mv-about-values__inner {
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-lg);
  background:
    linear-gradient(135deg, rgba(8, 224, 134, 0.12), rgba(255, 255, 255, 0) 46%),
    var(--mv-white-2);
}

.mv-about-values__inner > .mv-section-title {
  max-width: 980px;
}

.mv-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: clamp(34px, 5vw, 64px);
}

.mv-about-values__grid article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius);
  background: var(--mv-white);
}

.mv-about-values__grid span {
  color: var(--mv-green-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.mv-about-values__grid h3 {
  margin: auto 0 12px;
  color: var(--mv-black);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.052em;
}

.mv-about-values__grid p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 15px;
  line-height: 1.68;
}

/* =========================================================
   ABOUT CTA
========================================================= */

.mv-about-cta {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-black);
  color: var(--mv-white);
}

.mv-about-cta .mv-eyebrow {
  color: var(--mv-green);
}

.mv-about-cta .mv-section-title {
  max-width: 980px;
  color: var(--mv-white);
}

.mv-about-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
}

.mv-about-cta__inner p:not(.mv-eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
}

.mv-about-cta__actions {
  display: grid;
  gap: 10px;
}

.mv-about-cta__actions .mv-btn {
  width: 100%;
}

.mv-about-cta__actions .mv-btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--mv-white);
}

.mv-about-cta__actions .mv-btn--secondary:hover,
.mv-about-cta__actions .mv-btn--secondary:focus-visible {
  background: var(--mv-white);
  border-color: var(--mv-white);
  color: var(--mv-black);
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
  .mv-about-hero__inner,
  .mv-about-intro__inner,
  .mv-about-method__inner,
  .mv-about-workspace__inner,
  .mv-about-cta__inner {
    grid-template-columns: 1fr;
  }

  .mv-about-intro__sticky,
  .mv-about-method__copy {
    position: relative;
    top: auto;
  }

  .mv-about-hero__media {
    min-height: clamp(520px, 76vw, 740px);
    max-width: 720px;
  }

  .mv-about-principles__grid,
  .mv-about-values__grid {
    grid-template-columns: 1fr;
  }

  .mv-about-principle-card,
  .mv-about-values__grid article {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .mv-about-image-band__grid {
    grid-template-columns: 1fr;
  }

  .mv-about-image-band figure,
  .mv-about-image-band figure:nth-child(2),
  .mv-about-image-band figure:nth-child(3) {
    min-height: 420px;
    margin-top: 0;
  }

  .mv-about-workspace__image img {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 760px) {
  .mv-about-hero {
    padding-top: 96px;
  }

  .admin-bar .mv-about-hero {
    padding-top: 124px;
  }

  .mv-about-hero__title {
    font-size: clamp(42px, 13vw, 72px);
    letter-spacing: -0.064em;
  }

  .mv-about-hero__actions {
    align-items: stretch;
  }

  .mv-about-hero__actions .mv-btn {
    width: 100%;
  }

  .mv-about-hero__media {
    min-height: 560px;
  }

  .mv-about-hero__portrait {
    left: 0;
    width: 82%;
  }

  .mv-about-hero__card--one {
    right: 0;
    bottom: 16%;
    width: 50%;
  }

  .mv-about-hero__card--two {
    left: 4%;
    bottom: 0;
    width: 54%;
  }

  .mv-about-intro__text > p {
    font-size: 17px;
  }

  .mv-about-method-step {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .mv-about-method-step p {
    grid-column: auto;
  }

  .mv-about-image-band figure,
  .mv-about-image-band figure:nth-child(2),
  .mv-about-image-band figure:nth-child(3) {
    min-height: 360px;
  }

  .mv-about-values__inner {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .mv-about-hero__media {
    min-height: 500px;
  }

  .mv-about-hero__portrait {
    width: 88%;
  }

  .mv-about-hero__card--one {
    width: 56%;
    bottom: 14%;
  }

  .mv-about-hero__card--two {
    width: 60%;
  }

  .mv-about-image-band figure,
  .mv-about-image-band figure:nth-child(2),
  .mv-about-image-band figure:nth-child(3) {
    min-height: 300px;
    border-radius: var(--mv-radius);
  }

  .mv-about-workspace__image,
  .mv-about-values__inner {
    border-radius: var(--mv-radius);
  }

  .mv-about-cta__actions {
    width: 100%;
  }
}

/* =========================================================
   05B CASE STUDIES
   Curated highlight cards above the full Radovi archive.
   Reuses the same eyebrow/heading/filter/load-more system
   as the rest of the page (see .mv-work below).
========================================================= */

.mv-case-studies {
  padding: clamp(88px, 12vw, 176px) 0;
  background: var(--mv-white);
}

.mv-case-studies__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}

.mv-case-studies__head > p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 16px;
  line-height: 1.72;
}

.mv-case-studies__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 4vw, 44px);
}

.mv-case-studies__filters button {
  appearance: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.mv-case-studies__filters button:hover,
.mv-case-studies__filters button.is-active {
  background: var(--mv-green);
  border-color: var(--mv-green);
  color: var(--mv-black);
  transform: translateY(-2px);
}

.mv-case-studies__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.mv-case-card.is-case-hidden {
  display: none;
}

.mv-case-card.mv-reveal {
  transform: translateY(36px) scale(0.98);
  filter: blur(6px);
  transition:
    opacity 750ms var(--mv-ease),
    transform 750ms var(--mv-ease),
    filter 750ms var(--mv-ease);
}

.mv-case-card.mv-reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.mv-case-card__button {
  appearance: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.mv-case-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: var(--mv-radius);
  overflow: hidden;
  background: var(--mv-white-3);
}

.mv-case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 620ms var(--mv-ease);
}

.mv-case-card.is-visible .mv-case-card__media img {
  transform: scale(1);
}

.mv-case-card__button:hover .mv-case-card__media img,
.mv-case-card__button:focus-visible .mv-case-card__media img {
  transform: scale(1.035);
}

.mv-case-card__tags {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.mv-case-card__tags span {
  padding: 7px 12px;
  border: 1px solid var(--mv-border);
  border-radius: var(--mv-radius-pill);
  background: var(--mv-white);
  color: var(--mv-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.1);
  transition: transform 220ms ease;
}

.mv-case-card__button:hover .mv-case-card__tags span,
.mv-case-card__button:focus-visible .mv-case-card__tags span {
  transform: translateY(-2px);
}

.mv-case-card__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mv-case-card__title {
  color: var(--mv-text);
  font-size: 15px;
  font-weight: 700;
}

.mv-case-card__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--mv-muted);
  font-size: 13px;
  font-weight: 680;
  transition:
    color 200ms ease,
    transform 220ms var(--mv-ease);
}

.mv-case-card__arrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1px;
  background: var(--mv-green-dark);
  transition: width 260ms var(--mv-ease);
}

.mv-case-card__button:hover .mv-case-card__arrow,
.mv-case-card__button:focus-visible .mv-case-card__arrow {
  color: var(--mv-green-dark);
  transform: translate(2px, -2px);
}

.mv-case-card__button:hover .mv-case-card__arrow::after,
.mv-case-card__button:focus-visible .mv-case-card__arrow::after {
  width: 100%;
}

.mv-case-studies__load {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 34px;
}

.mv-case-studies__load.is-hidden {
  display: none;
}

.mv-case-studies__load p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 980px) {
  .mv-case-studies__head {
    grid-template-columns: 1fr;
  }

  .mv-case-studies__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mv-case-card:nth-child(3) {
    grid-column: span 2;
  }

  .mv-case-card:nth-child(3) .mv-case-card__media {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .mv-case-studies__grid {
    grid-template-columns: 1fr;
  }

  .mv-case-card:nth-child(3) .mv-case-card__media {
    max-width: none;
    margin-inline: 0;
  }
}

/* =========================================================
   INTERACTIVE MAVROS HERO
========================================================= */

.mv-interactive-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(122px, 11vw, 172px) 0 clamp(64px, 8vw, 112px);
  overflow: hidden;
  background: var(--mv-white);
  color: var(--mv-black);
  isolation: isolate;
}

.admin-bar .mv-interactive-hero {
  padding-top: clamp(144px, 12vw, 194px);
}


/* Background grid */

.mv-interactive-hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(10, 10, 10, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.035) 1px,
      transparent 1px
    );

  background-size: 64px 64px;

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.8) 65%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      to bottom,
      #000 0%,
      rgba(0, 0, 0, 0.8) 65%,
      transparent 100%
    );
}

.mv-interactive-hero::after {
  content: "";
  position: absolute;
  top: 4%;
  right: -15%;
  z-index: -1;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(8, 224, 134, 0.14) 0%,
      rgba(8, 224, 134, 0.045) 38%,
      transparent 70%
    );

  filter: blur(28px);
}


/* Container */

.mv-interactive-hero__container {
  position: relative;
}


/* Technical metadata */

.mv-interactive-hero__meta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;

  margin-bottom: clamp(44px, 6vw, 82px);
  padding-bottom: 14px;

  border-bottom: 1px solid var(--mv-border-strong);

  color: var(--mv-muted-2);
  font-family: var(--mv-font-mono);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-interactive-hero__meta span:nth-child(2) {
  text-align: center;
}

.mv-interactive-hero__meta span:last-child {
  text-align: right;
}


/* Main split layout */

.mv-interactive-hero__layout {
  display: grid;
  grid-template-columns:
    minmax(340px, 0.82fr)
    minmax(520px, 1.18fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.mv-interactive-hero__copy {
  min-width: 0;
}


/* Heading */

.mv-interactive-hero__title {
  max-width: 760px;
  margin: 0;

  color: var(--mv-black);
  font-size: clamp(52px, 6.1vw, 104px);
  font-weight: 800;
  line-height: 0.89;
  letter-spacing: -0.072em;
  text-wrap: balance;
}

.mv-interactive-hero__title span {
  display: block;
  color: var(--mv-green-dark);
}


/* Lead */

.mv-interactive-hero__lead {
  max-width: 610px;
  margin: clamp(26px, 3vw, 40px) 0 0;

  color: var(--mv-muted);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
}


/* Actions */

.mv-interactive-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}


/* Details */

.mv-interactive-hero__details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 70px);
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
}

.mv-interactive-hero__details > div {
  min-width: 0;
  padding: 16px 14px 17px 0;
  border-right: 1px solid var(--mv-border);
}

.mv-interactive-hero__details > div:not(:first-child) {
  padding-left: 14px;
}

.mv-interactive-hero__details > div:last-child {
  border-right: 0;
}

.mv-interactive-hero__details span {
  display: block;
  margin-bottom: 8px;

  color: var(--mv-green-dark);
  font-family: var(--mv-font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.mv-interactive-hero__details p {
  margin: 0;
  color: var(--mv-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}


/* Visual */

.mv-interactive-hero__visual {
  position: relative;
  min-width: 0;
  padding: 20px 0 34px;
}

.mv-interactive-frame {
  position: relative;
  width: 100%;
  overflow: hidden;

  border: 1px solid var(--mv-border-strong);
  border-radius: var(--mv-radius-lg);
  background: var(--mv-black);

  box-shadow:
    0 38px 90px rgba(10, 10, 10, 0.16),
    0 10px 28px rgba(10, 10, 10, 0.08);
}

.mv-interactive-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -14px 18px 16px -14px;

  border: 1px solid rgba(8, 224, 134, 0.55);
  border-radius: var(--mv-radius-lg);
  pointer-events: none;
}


/* Frame bars */

.mv-interactive-frame__top,
.mv-interactive-frame__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 42px;
  padding: 0 14px;

  background: var(--mv-black);
  color: rgba(255, 255, 255, 0.56);

  font-family: var(--mv-font-mono);
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-interactive-frame__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mv-interactive-frame__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mv-interactive-frame__status {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mv-interactive-frame__status > span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;

  background: var(--mv-green);

  box-shadow:
    0 0 0 4px rgba(8, 224, 134, 0.09),
    0 0 14px rgba(8, 224, 134, 0.55);

  animation: mvInteractiveStatus 2.2s ease-in-out infinite;
}

@keyframes mvInteractiveStatus {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.82);
  }
}


/* Player */

.mv-interactive-frame__player {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #050505;
}

.mv-interactive-frame__player mockup-player {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
}


/* Loading state before custom element is initialized */

.mv-interactive-frame__player mockup-player:not(:defined) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;

  background:
    linear-gradient(
      105deg,
      #070707 28%,
      #151515 46%,
      #070707 64%
    );

  background-size: 220% 100%;
  animation: mvInteractiveLoading 1.5s linear infinite;
}

@keyframes mvInteractiveLoading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -20% 0;
  }
}


/* Caption below frame */

.mv-interactive-hero__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 16px 4px 0;

  color: var(--mv-muted-2);
  font-family: var(--mv-font-mono);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   INTERACTIVE HERO RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

  .mv-interactive-hero__layout {
    grid-template-columns:
      minmax(300px, 0.8fr)
      minmax(440px, 1.2fr);
    gap: 44px;
  }

  .mv-interactive-hero__title {
    font-size: clamp(50px, 6.4vw, 82px);
  }

}


@media (max-width: 980px) {

  .mv-interactive-hero {
    min-height: auto;
  }

  .mv-interactive-hero__layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .mv-interactive-hero__copy {
    max-width: 800px;
  }

  .mv-interactive-hero__title {
    max-width: 880px;
    font-size: clamp(58px, 10.5vw, 104px);
  }

  .mv-interactive-hero__lead {
    max-width: 680px;
  }

  .mv-interactive-hero__visual {
    width: 100%;
  }

}


@media (max-width: 720px) {

  .mv-interactive-hero {
    padding-top: 106px;
    padding-bottom: 72px;
  }

  .admin-bar .mv-interactive-hero {
    padding-top: 132px;
  }

  .mv-interactive-hero__meta {
    grid-template-columns: 1fr auto;
    gap: 12px;
    margin-bottom: 42px;
  }

  .mv-interactive-hero__meta span:nth-child(2) {
    display: none;
  }

  .mv-interactive-hero__title {
    font-size: clamp(45px, 13.5vw, 72px);
    line-height: 0.91;
    letter-spacing: -0.066em;
  }

  .mv-interactive-hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .mv-interactive-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mv-interactive-hero__actions .mv-btn {
    width: 100%;
  }

  .mv-interactive-hero__details {
    grid-template-columns: 1fr;
  }

  .mv-interactive-hero__details > div,
  .mv-interactive-hero__details > div:not(:first-child) {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--mv-border);
  }

  .mv-interactive-hero__details > div:last-child {
    border-bottom: 0;
  }

  .mv-interactive-hero__layout {
    gap: 46px;
  }

  .mv-interactive-frame {
    border-radius: var(--mv-radius);
  }

  .mv-interactive-frame::before {
    inset: -8px 9px 9px -8px;
    border-radius: var(--mv-radius);
  }

  .mv-interactive-frame__top,
  .mv-interactive-frame__bottom {
    padding-inline: 10px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .mv-interactive-frame__top > span:last-child {
    display: none;
  }

  .mv-interactive-hero__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

}


@media (prefers-reduced-motion: reduce) {

  .mv-interactive-frame__status > span,
  .mv-interactive-frame__player mockup-player:not(:defined) {
    animation: none;
  }

}