:root {
  --mm-primary: #0f6fb3;
  --mm-primary-dark: #074b7d;
  --mm-secondary: #53b947;
  --mm-secondary-dark: #2e8d28;
  --mm-accent: #17a2ff;
  --mm-text: #102436;
  --mm-muted: #5f6f7b;
  --mm-bg: #f5fbff;
  --mm-white: #ffffff;
  --mm-border: #d9e8f2;
  --mm-shadow: 0 8px 24px rgba(17, 79, 117, 0.09);
  --mm-radius: 22px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--mm-text);
  background: linear-gradient(180deg, #f8fdff 0%, #eef9ff 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.megamove-landing {
  overflow: hidden;
}

.mm-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */

.mm-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 111, 179, 0.12);
  box-shadow: 0 8px 24px rgba(15, 111, 179, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.mm-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mm-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.mm-logo img {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.mm-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.mm-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--mm-primary-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background: rgba(15, 111, 179, 0.07);
  border: 1px solid rgba(15, 111, 179, 0.14);
  transition: 0.2s ease;
  white-space: nowrap;
}

.mm-nav a:hover {
  color: #ffffff;
  background: var(--mm-primary);
  border-color: var(--mm-primary);
  transform: translateY(-1px);
}

/* HERO */

.mm-hero {
  position: relative;
  min-height: 520px;
  background-image: url("img/megamove baner 1.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.mm-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.86) 36%,
      rgba(255, 255, 255, 0.14) 100%
    );
}

.mm-hero-mobile-visual {
  display: none;
}

.mm-hero-content {
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
}

.mm-hero-text {
  max-width: 640px;
}

.mm-badge {
  display: inline-block;
  padding: 10px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(83, 185, 71, 0.14);
  color: #24711f;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mm-hero h1 {
  margin: 0 0 8px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--mm-primary-dark);
}

.mm-hero h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--mm-text);
}

.mm-hero p {
  margin: 0;
  font-size: 18px;
  color: #33444f;
}

/* GLOBAL SECTIONS */

section {
  padding: 42px 0;
}

.mm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mm-card,
.mm-closing-box,
.mm-disclaimer-box {
  background: var(--mm-white);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
}

.mm-card {
  padding: 26px;
}

.mm-card-soft {
  background: linear-gradient(180deg, #f7fff5 0%, #ffffff 100%);
}

.mm-card-highlight {
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 100%);
}

.mm-card h2,
.mm-card h3,
.mm-card h4,
.mm-closing-box h2,
.mm-disclaimer-box h3 {
  margin-top: 0;
  color: var(--mm-primary-dark);
}

.mm-card h2 {
  font-size: 30px;
  line-height: 1.22;
  margin-bottom: 14px;
}

.mm-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.mm-card h4 {
  font-size: 18px;
  line-height: 1.25;
  margin-top: 18px;
  margin-bottom: 10px;
}

.mm-card p {
  color: #425462;
}

.mm-card p:last-child {
  margin-bottom: 0;
}

.mm-section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 24px;
}

.mm-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mm-secondary);
}

.mm-section-head h2 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.18;
  color: var(--mm-primary-dark);
}

.mm-section-head p {
  margin: 0;
  color: var(--mm-muted);
  font-size: 17px;
}

.mm-note {
  font-style: italic;
}

/* LISTS */

.mm-check-list,
.mm-ingredient-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm-check-list li,
.mm-ingredient-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 11px;
  color: #33444f;
}

.mm-check-list li:last-child,
.mm-ingredient-card ul li:last-child {
  margin-bottom: 0;
}

.mm-check-list li::before,
.mm-ingredient-card ul li::before {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
  color: var(--mm-secondary);
}

/* BENEFITS */

.mm-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mm-benefit-item {
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
  border: 1px solid #d7ebf7;
  border-radius: 18px;
  padding: 17px 18px 17px 48px;
  min-height: 100%;
  position: relative;
  color: #24343f;
  font-weight: 600;
  box-shadow: 0 7px 16px rgba(15, 111, 179, 0.06);
}

.mm-benefit-item::before {
  content: "✔";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(180deg, #69d85d 0%, #46af38 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  position: absolute;
  top: 15px;
  left: 14px;
  box-shadow: 0 8px 14px rgba(70, 175, 56, 0.25);
}

/* BANNER */

.mm-banner-section {
  padding-top: 0;
  padding-bottom: 0;
}

.mm-wide-banner {
  width: 100%;
  border-radius: 26px;
  border: 1px solid #d7ebf7;
  box-shadow: var(--mm-shadow);
}

/* INGREDIENTS */

.mm-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.mm-ingredient-card {
  height: 100%;
}

.mm-ingredient-card-wide {
  grid-column: 1 / -1;
}

/* INFOGRAPHIC */

.mm-infographic {
  background:
    radial-gradient(circle at top left, rgba(83, 185, 71, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(23, 162, 255, 0.13), transparent 36%),
    linear-gradient(180deg, #f5fcff 0%, #ecf8ff 100%);
}

.mm-timeline {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  position: relative;
}

.mm-timeline::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 37px;
  width: 4px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--mm-primary), var(--mm-secondary));
}

.mm-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: stretch;
}

.mm-timeline-number {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mm-primary) 0%, var(--mm-accent) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(15, 111, 179, 0.28);
  border: 5px solid #ffffff;
}

.mm-timeline-content {
  background: #ffffff;
  border: 1px solid #d7ebf7;
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: var(--mm-shadow);
}

.mm-timeline-content h3 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--mm-primary-dark);
}

.mm-timeline-content p {
  margin: 0;
  color: #33444f;
  font-size: 17px;
  font-weight: 600;
}

/* FAQ */

.mm-faq {
  background: linear-gradient(180deg, #f8fdff 0%, #f0faff 100%);
}

.mm-faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.mm-faq-item {
  background: #ffffff;
  border: 1px solid #d7ebf7;
  border-radius: 18px;
  box-shadow: 0 7px 16px rgba(15, 111, 179, 0.06);
  overflow: hidden;
}

.mm-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 19px 58px 19px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--mm-primary-dark);
  position: relative;
}

.mm-faq-item summary::-webkit-details-marker {
  display: none;
}

.mm-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
  color: var(--mm-secondary);
}

.mm-faq-item[open] summary::after {
  content: "–";
}

.mm-faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: #425462;
}

/* CLOSING */

.mm-closing-box {
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(244,251,255,0.98) 100%);
}

.mm-closing-box h2 {
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.mm-closing-box p {
  color: #425462;
  margin-bottom: 0;
}

.mm-closing-box h3 {
  margin-top: 26px;
  margin-bottom: 18px;
  font-size: 24px;
  color: var(--mm-primary-dark);
}

.mm-closing-benefits .mm-benefit-center {
  grid-column: 1 / -1;
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mm-closing-message {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eefaf0 0%, #ffffff 100%);
  border: 1px solid #d8edd5;
}

.mm-closing-message strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  color: #2c7c25;
}

/* DISCLAIMER */

.mm-disclaimer {
  padding-top: 12px;
  padding-bottom: 48px;
}

.mm-disclaimer-box {
  padding: 24px 28px;
  border-left: 6px solid var(--mm-secondary);
  background: #ffffff;
}

.mm-disclaimer-box h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.mm-disclaimer-box p {
  margin: 0;
  color: #556873;
  font-size: 14px;
}

/* TABLET */

@media (max-width: 991px) {
  html {
    scroll-padding-top: 136px;
  }

  .mm-header-inner {
    min-height: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mm-nav {
    justify-content: center;
  }

  .mm-grid-2,
  .mm-ingredient-grid,
  .mm-benefit-grid {
    grid-template-columns: 1fr;
  }

  .mm-ingredient-card-wide {
    grid-column: auto;
  }

  .mm-closing-benefits .mm-benefit-center {
    grid-column: auto;
    max-width: 100%;
  }

  .mm-hero,
  .mm-hero-content {
    min-height: 500px;
  }

  .mm-hero h1 {
    font-size: 42px;
  }

  .mm-hero h2 {
    font-size: 28px;
  }

  .mm-section-head h2,
  .mm-closing-box h2 {
    font-size: 32px;
  }
}

/* MOBILE */

@media (max-width: 767px) {
  html {
    scroll-padding-top: 126px;
  }

  section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .mm-container {
    padding: 0 18px;
  }

  .mm-header {
    position: sticky;
    top: 0;
  }

  .mm-header-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .mm-logo img {
    height: 42px;
  }

  .mm-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .mm-nav::-webkit-scrollbar {
    display: none;
  }

  .mm-nav a {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 9px 14px;
    min-height: 34px;
  }

  .mm-hero {
    min-height: auto;
    background-image: none;
    background: #f5fbff;
  }

  .mm-hero-overlay {
    display: none;
  }

  .mm-hero-mobile-visual {
    display: block;
    width: 100%;
    height: 210px;
    background-image: url("img/megamove baner 2.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(15, 111, 179, 0.12);
  }

  .mm-hero-content {
    min-height: auto;
    display: block;
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .mm-hero-text {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 111, 179, 0.12);
    border-radius: 22px;
    padding: 22px 18px;
    box-shadow: 0 8px 22px rgba(15, 111, 179, 0.08);
  }

  .mm-badge {
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 14px;
  }

  .mm-hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .mm-hero h2 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .mm-hero p {
    font-size: 15px;
  }

  .mm-card {
    padding: 22px 18px;
  }

  .mm-card h2,
  .mm-card h3 {
    font-size: 24px;
  }

  .mm-section-head {
    margin-bottom: 20px;
  }

  .mm-section-head h2,
  .mm-closing-box h2 {
    font-size: 28px;
  }

  .mm-benefit-item {
    padding: 16px 16px 16px 46px;
  }

  .mm-timeline::before {
    left: 29px;
  }

  .mm-timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }

  .mm-timeline-number {
    width: 60px;
    height: 60px;
    font-size: 16px;
    border-width: 4px;
  }

  .mm-timeline-content {
    padding: 18px;
  }

  .mm-timeline-content h3 {
    font-size: 21px;
  }

  .mm-timeline-content p {
    font-size: 15px;
  }

  .mm-faq-item summary {
    font-size: 16px;
    padding: 18px 52px 18px 20px;
  }

  .mm-faq-item p {
    padding: 0 20px 18px;
  }

  .mm-closing-box {
    padding: 26px 18px;
  }

  .mm-closing-benefits .mm-benefit-center {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .mm-hero-mobile-visual {
    height: 205px;
    background-size: cover;
    background-position: center center;
  }
}