/* ===== RESET / GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

body {
  background: #05070b;
  color: #f5f6fa;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== LAYOUT ===== */

.mv-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mv-container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

.mv-header {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: radial-gradient(circle at top left, #101522 0, #05070b 60%);
}

.mv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.mv-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mv-logo-main {
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
}

.mv-logo-sub {
  font-size: 10px;
  color: #a8b0c7;
}

.mv-nav {
  display: flex;
  gap: 18px;
  font-size: 13px;
}

.mv-nav a {
  text-decoration: none;
  color: #c6cad9;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.mv-nav a:hover,
.mv-nav a.active {
  color: #ffffff;
  border-bottom-color: #31d2ff;
}

.mv-header-contact {
  font-size: 13px;
  color: #e5e8f3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mv-header-contact a {
  color: inherit;
  text-decoration: none;
}

/* Burger */

.mv-burger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

.mv-burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  margin-bottom: 4px;
}

/* Mobile menu */

.mv-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 230px;
  height: 100vh;
  background: #05070b;
  border-left: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 70px;
  padding-left: 22px;
  transition: right 0.3s ease;
  z-index: 100;
}

.mv-mobile-menu a {
  text-decoration: none;
  color: #f5f6fa;
  font-size: 14px;
}

.mv-mobile-menu.open {
  right: 0;
}

/* ===== MAIN WRAPPER ===== */

.mv-main {
  flex: 1;
  padding: 18px 0 20px;
}

/* ===== HERO ===== */

.mv-hero {
  margin-bottom: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 18px 18px 20px;
  background: linear-gradient(135deg, #07101d 0, #05070b 60%, #071118 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 22px;
}

.mv-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #31d2ff;
}

.mv-hero-left h1 {
  font-size: 26px;
  line-height: 1.3;
  margin-top: 6px;
}

.mv-hero-text {
  font-size: 13px;
  color: #c5cbda;
  margin-top: 10px;
  max-width: 520px;
}

.mv-hero-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mv-meta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #95f1ff;
}

.mv-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 12px;
  font-size: 12px;
  color: #c5cbda;
}

.mv-hero-right {
  display: flex;
  align-items: stretch;
}

.mv-hero-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.mv-hero-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  min-height: 180px;
}

.mv-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-hero-card-strip {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  font-size: 11px;
  color: #d7dde9;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  padding: 7px 12px;
}

.mv-hero-card-strip i {
  margin-right: 4px;
}

/* ===== BUTTONS ===== */

.mv-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.mv-btn-primary {
  background: #31d2ff;
  color: #05070b;
  border-color: #31d2ff;
  box-shadow: 0 10px 26px rgba(49,210,255,0.45);
}

.mv-btn-primary:hover {
  background: #53ddff;
  border-color: #53ddff;
  transform: translateY(-1px);
}

.mv-btn-outline {
  background: transparent;
  color: #f5f6fa;
  border-color: rgba(255,255,255,0.3);
}

.mv-btn-outline:hover {
  background: rgba(255,255,255,0.06);
}

/* ===== SECTIONS / HEADERS ===== */

.mv-section {
  margin-bottom: 16px;
}

.mv-section-head {
  margin-bottom: 10px;
}

.mv-section-head h2 {
  font-size: 18px;
  margin-bottom: 4px;
}

.mv-section-head p {
  font-size: 13px;
  color: #c5cbda;
}

/* ===== STRIP (3 items) ===== */

.mv-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.mv-strip-item {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 11px 12px 12px;
  background: #05070b;
  font-size: 13px;
  color: #c5cbda;
}

.mv-strip-item h2 {
  font-size: 14px;
  margin-bottom: 4px;
}

.mv-strip-item i {
  margin-right: 6px;
  color: #31d2ff;
}

/* ===== GRIDS ===== */

.mv-grid-4 {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}

.mv-grid-3 {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

/* Category cards */

.mv-cat-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 10px 10px 12px;
  font-size: 13px;
  color: #c5cbda;
}

.mv-cat-thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #080b12;
  margin-bottom: 6px;
  max-height: 160px;
}

.mv-cat-card h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

/* Product cards */

.mv-product-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #c5cbda;
}

.mv-product-card h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.mv-product-card ul {
  margin-left: 18px;
  margin-top: 6px;
}

/* ===== SPLIT (2 columns) ===== */

.mv-split {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.mv-split-col h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

.mv-split-col p,
.mv-split-col li {
  font-size: 13px;
  color: #c5cbda;
  line-height: 1.8;
}

/* Lists */

.mv-list {
  margin-top: 4px;
  margin-left: 18px;
  line-height: 1.8;
}

.mv-list-ordered {
  margin-top: 4px;
  margin-left: 18px;
  line-height: 1.8;
}

/* ===== CONTACT STRIP (bottom) ===== */

.mv-contact-strip {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 12px 14px;
  background: linear-gradient(135deg, #06101a 0, #05070b 50%, #071219 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.mv-contact-strip h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

.mv-contact-strip p {
  font-size: 13px;
  color: #c5cbda;
}

.mv-contact-inline {
  text-align: right;
  font-size: 13px;
}

.mv-contact-inline p {
  margin-bottom: 4px;
}

.mv-contact-inline i {
  margin-right: 4px;
}

/* ===== PAGE HEAD ===== */

.mv-page-head {
  margin-bottom: 10px;
}

.mv-page-head h1 {
  font-size: 20px;
  margin-bottom: 4px;
}

.mv-page-head p {
  font-size: 13px;
  color: #c5cbda;
}

/* ===== CATALOG PAGE ===== */

.mv-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}

.mv-catalog-card {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #c5cbda;
  line-height: 1.8;
}

.mv-catalog-card h2 {
  font-size: 15px;
  margin-bottom: 4px;
}

.mv-catalog-card ul {
  margin-top: 4px;
  margin-left: 18px;
}

/* ===== NOTE BOX ===== */

.mv-note-box {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #c5cbda;
}

.mv-note-box h2 {
  font-size: 16px;
  margin-bottom: 4px;
}

/* ===== CONTACT PAGE ===== */

.mv-contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1.1fr);
  gap: 16px;
}

.mv-contact-panel {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 12px 12px 14px;
  font-size: 13px;
  color: #c5cbda;
}

.mv-contact-panel p {
  margin-bottom: 4px;
}

.mv-contact-note {
  margin-top: 6px;
  margin-bottom: 10px;
}

.mv-contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv-contact-panel label {
  font-size: 12px;
  color: #e7eaf4;
}

.mv-contact-panel input,
.mv-contact-panel textarea {
  font-size: 13px;
  padding: 7px 9px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #05070b;
  color: #f5f6fa;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mv-contact-panel textarea {
  resize: vertical;
  min-height: 110px;
}

.mv-contact-panel input:focus,
.mv-contact-panel textarea:focus {
  border-color: #31d2ff;
  box-shadow: 0 0 0 1px rgba(49,210,255,0.4);
}

.mv-map-panel {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ===== POLICY PAGES ===== */

.mv-page-simple {
  flex-direction: column;
}

.mv-main-simple {
  padding: 18px 0 20px;
}

.mv-policy-card {
  max-width: 820px;
  margin: 20px auto 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #05070b;
  padding: 16px 18px 18px;
  font-size: 13px;
  color: #c5cbda;
  line-height: 1.8;
}

.mv-policy-card h1 {
  font-size: 20px;
  margin-bottom: 4px;
}

.mv-policy-card h2 {
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 4px;
}

.mv-policy-card ul {
  margin-left: 18px;
}

/* ===== FOOTER ===== */

.mv-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0 14px;
  font-size: 11px;
  color: #8f94a3;
}

.mv-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mv-footer-links a {
  color: #cfd2dd;
  text-decoration: none;
  margin-left: 10px;
  font-size: 11px;
}

/* ===== COOKIE BANNER ===== */

#cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 320px;
  z-index: 200;
}

.cookie-box {
  background: #05070b;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px 12px;
  font-size: 12px;
  color: #e7e9f0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
}

.cookie-box button {
  margin-top: 8px;
  width: 100%;
  padding: 7px;
  border-radius: 999px;
  border: none;
  background: #31d2ff;
  color: #05070b;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* ===== REVEAL ANIMATION ===== */

.mv-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.mv-reveal.mv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .mv-nav {
    display: none;
  }

  .mv-header-inner {
    padding: 12px 0;
  }

  .mv-burger {
    display: block;
  }

  .mv-hero {
    grid-template-columns: minmax(0,1fr);
  }

  .mv-hero-right {
    order: -1;
  }

  .mv-strip {
    grid-template-columns: minmax(0,1fr);
  }

  .mv-grid-4 {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .mv-grid-3 {
    grid-template-columns: minmax(0,1fr);
  }

  .mv-split {
    grid-template-columns: minmax(0,1fr);
  }

  .mv-catalog-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .mv-contact-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .mv-contact-inline {
    text-align: left;
  }

  .mv-footer-inner {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .mv-container {
    width: 94%;
  }

  .mv-hero {
    padding: 14px 12px 15px;
  }

  .mv-hero-left h1 {
    font-size: 22px;
  }

  .mv-hero-text,
  .mv-section-head p,
  .mv-strip-item p {
    font-size: 12px;
  }

  .mv-grid-4,
  .mv-catalog-grid {
    grid-template-columns: minmax(0,1fr);
  }

  #cookie-banner {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
