/* ============================================================
   MOWYWIU — css/style.css
   Mobile-first, card layout, #FFD60A + #000
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

/* ── ROOT VARIABLES ── */
:root {
  --mow-yellow: #FFD60A;
  --mow-black:  #000000;
  --mow-white:  #ffffff;
  --mow-gray:   #f4f4f2;
  --mow-gray2:  #e8e8e4;
  --mow-txt:    #1a1a1a;
  --mow-sub:    #555550;
  --mow-radius: 14px;
  --mow-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --mow-shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --mow-sidebar-w: 220px;
  --mow-font-head: 'Montserrat', sans-serif;
  --mow-font-body: 'Open Sans', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mow-font-body);
  color: var(--mow-txt);
  background: var(--mow-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--mow-font-head); line-height: 1.15; }
p { line-height: 1.7; }

/* ── SECTION TITLE ── */
.mow-section-title {
  font-family: var(--mow-font-head);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--mow-black);
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.mow-wave {
  width: 160px;
  height: 12px;
  display: block;
}

/* ============================================================
   SIDEBAR (desktop)
   ============================================================ */
.mow-sidebar {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: var(--mow-sidebar-w);
  height: 100vh;
  background: var(--mow-black);
  z-index: 100;
  flex-direction: column;
  padding: 2rem 1.4rem;
  border-right: 3px solid var(--mow-yellow);
  overflow-y: auto;
}
.mow-sidebar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255,214,10,0.2);
  padding-bottom: 1.5rem;
}
.mow-sidebar__brand {
  font-family: var(--mow-font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--mow-yellow);
  letter-spacing: 0.02em;
}
.mow-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mow-nav__link {
  font-family: var(--mow-font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mow-nav__link:hover {
  background: rgba(255,214,10,0.12);
  color: var(--mow-yellow);
}
.mow-nav__link--cta {
  margin-top: 1rem;
  background: var(--mow-yellow);
  color: var(--mow-black) !important;
  text-align: center;
  border-radius: 8px;
}
.mow-nav__link--cta:hover {
  background: #e6c000;
}

/* ============================================================
   TOPBAR (mobile)
   ============================================================ */
.mow-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--mow-black);
  border-bottom: 2px solid var(--mow-yellow);
  padding: 0 1rem;
  z-index: 200;
}
.mow-topbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mow-font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--mow-yellow);
}
.mow-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mow-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mow-yellow);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile menu overlay */
.mow-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--mow-black);
  z-index: 300;
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 2rem 2rem;
  gap: 0.5rem;
}
.mow-mobile-menu.mow-mobile-menu--open {
  display: flex;
}
.mow-mobile-menu a {
  font-family: var(--mow-font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mow-white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,214,10,0.15);
  width: 100%;
  transition: color 0.2s;
}
.mow-mobile-menu a:hover { color: var(--mow-yellow); }
.mow-mobile-menu__close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 1.8rem;
  color: var(--mow-yellow);
  background: none;
  border: none;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.mow-main {
  padding-top: 56px;
}

/* ============================================================
   [HERO]
   ============================================================ */
.mow-hero {
  background: var(--mow-black);
  color: var(--mow-white);
  padding: 60px 1.2rem 60px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mow-hero__decor-num {
  position: absolute;
  top: -0.2em;
  right: -0.05em;
  font-family: var(--mow-font-head);
  font-size: clamp(6rem, 20vw, 16rem);
  font-weight: 900;
  color: rgba(255,214,10,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.mow-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.mow-hero__eyebrow {
  font-family: var(--mow-font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mow-yellow);
  margin-bottom: 1rem;
}
.mow-hero__title {
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 900;
  color: var(--mow-white);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.mow-hero__title span { color: var(--mow-yellow); }
.mow-hero__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-weight: 500;
}
.mow-hero__btn {
  display: inline-block;
  background: var(--mow-yellow);
  color: var(--mow-black);
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: var(--mow-radius);
  transition: background 0.2s, transform 0.15s;
  width: 100%;
  text-align: center;
}
.mow-hero__btn:hover {
  background: #e6c000;
  transform: translateY(-2px);
}
.mow-hero__img-wrap {
  position: relative;
  z-index: 1;
  border-radius: var(--mow-radius);
  overflow: hidden;
  clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
}
.mow-hero__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ============================================================
   [TRUST]
   ============================================================ */
.mow-trust {
  background: var(--mow-yellow);
  padding: 80px 1.2rem;
  position: relative;
  overflow: hidden;
}
.mow-trust .mow-section-title { color: var(--mow-black); }
.mow-trust__decor {
  position: absolute;
  right: -0.08em; top: -0.15em;
  font-family: var(--mow-font-head);
  font-size: clamp(5rem,18vw,13rem);
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  pointer-events: none;
  line-height: 1;
}
.mow-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.mow-trust__tile {
  background: var(--mow-black);
  border-radius: var(--mow-radius);
  padding: 1.6rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  box-shadow: var(--mow-shadow-lg);
}
.mow-trust__num {
  font-family: var(--mow-font-head);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--mow-yellow);
  line-height: 1;
}
.mow-trust__lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================================
   [ADVANTAGES]
   ============================================================ */
.mow-advantages {
  padding: 80px 1.2rem;
  background: var(--mow-white);
}
.mow-adv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mow-adv__card {
  background: var(--mow-gray);
  border-radius: var(--mow-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--mow-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.mow-adv__card:hover {
  box-shadow: var(--mow-shadow-lg);
  transform: translateY(-3px);
}
.mow-adv__icon {
  margin-bottom: 1rem;
}
.mow-adv__card h3 {
  font-family: var(--mow-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mow-adv__card p {
  font-size: 0.88rem;
  color: var(--mow-sub);
}

/* ============================================================
   [SERVICES]
   ============================================================ */
.mow-services {
  padding: 80px 1.2rem;
  background: var(--mow-black);
  color: var(--mow-white);
  position: relative;
  overflow: hidden;
}
.mow-services .mow-section-title { color: var(--mow-white); }
.mow-services__decor {
  position: absolute;
  right: -0.05em; top: -0.2em;
  font-family: var(--mow-font-head);
  font-size: clamp(6rem,20vw,14rem);
  font-weight: 900;
  color: rgba(255,214,10,0.05);
  pointer-events: none;
  line-height: 1;
}
.mow-services__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
  font-style: italic;
}
.mow-services__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mow-srv__item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,214,10,0.15);
  border-radius: var(--mow-radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.mow-srv__item:hover { border-color: var(--mow-yellow); }
.mow-srv__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 94% 100%, 0 100%);
}
.mow-srv__body {
  padding: 1.4rem;
}
.mow-srv__body h3 {
  font-family: var(--mow-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mow-yellow);
  margin-bottom: 0.5rem;
}
.mow-srv__body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.mow-srv__price {
  display: inline-block;
  background: var(--mow-yellow);
  color: var(--mow-black);
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 30px;
}

/* ============================================================
   [HOW-IT-WORKS]
   ============================================================ */
.mow-hiw {
  padding: 80px 1.2rem;
  background: var(--mow-gray);
}
.mow-hiw__steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mow-hiw__step {
  background: var(--mow-white);
  border-radius: var(--mow-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--mow-shadow);
  border-left: 4px solid var(--mow-yellow);
  position: relative;
}
.mow-hiw__num {
  font-family: var(--mow-font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  position: absolute;
  top: 0.6rem; right: 1rem;
}
.mow-hiw__step h3 {
  font-family: var(--mow-font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.mow-hiw__step p {
  font-size: 0.88rem;
  color: var(--mow-sub);
}

/* ============================================================
   [TIMELINE]
   ============================================================ */
.mow-timeline {
  padding: 80px 1.2rem;
  background: var(--mow-white);
}
.mow-tl__track {
  position: relative;
  padding-left: 2rem;
}
.mow-tl__track::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 3px;
  background: var(--mow-yellow);
  border-radius: 2px;
}
.mow-tl__item {
  position: relative;
  padding: 0 0 2rem 1.8rem;
}
.mow-tl__dot {
  position: absolute;
  left: -1.95rem; top: 0.2rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--mow-yellow);
  border: 3px solid var(--mow-white);
  box-shadow: 0 0 0 3px var(--mow-yellow);
}
.mow-tl__dot--last {
  background: var(--mow-black);
  box-shadow: 0 0 0 3px var(--mow-black);
}
.mow-tl__day {
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mow-yellow);
  background: var(--mow-black);
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.4rem;
}
.mow-tl__content p {
  font-size: 0.9rem;
  color: var(--mow-sub);
}

/* ============================================================
   [ABOUT]
   ============================================================ */
.mow-about {
  padding: 80px 1.2rem;
  background: var(--mow-black);
  color: var(--mow-white);
  position: relative;
  overflow: hidden;
}
.mow-about .mow-section-title { color: var(--mow-white); }
.mow-about__decor {
  position: absolute;
  left: -0.1em; bottom: -0.15em;
  font-family: var(--mow-font-head);
  font-size: clamp(5rem,18vw,13rem);
  font-weight: 900;
  color: rgba(255,214,10,0.04);
  pointer-events: none;
  line-height: 1;
}
.mow-about__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mow-about__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
}
.mow-about__img-wrap {
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  overflow: hidden;
  border-radius: 4px;
}
.mow-about__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* ============================================================
   [TEAM]
   ============================================================ */
.mow-team {
  padding: 80px 1.2rem;
  background: var(--mow-gray);
}
.mow-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mow-team__card {
  background: var(--mow-white);
  border-radius: var(--mow-radius);
  padding: 2rem 1.4rem;
  box-shadow: var(--mow-shadow);
  text-align: left;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: box-shadow 0.2s;
}
.mow-team__card:hover { box-shadow: var(--mow-shadow-lg); }
.mow-team__avatar {
  flex-shrink: 0;
}
.mow-team__card h3 {
  font-family: var(--mow-font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.mow-team__card span {
  font-size: 0.82rem;
  color: var(--mow-sub);
}

/* ============================================================
   [MATERIALS]
   ============================================================ */
.mow-materials {
  padding: 80px 1.2rem;
  background: var(--mow-white);
}
.mow-mat__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mow-mat__text p {
  font-size: 0.95rem;
  color: var(--mow-sub);
  margin-bottom: 1.2rem;
}
.mow-mat__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mow-mat__list li {
  font-size: 0.88rem;
  color: var(--mow-txt);
  padding-left: 1.4rem;
  position: relative;
}
.mow-mat__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 10px; height: 10px;
  background: var(--mow-yellow);
  border-radius: 2px;
}
.mow-mat__img-wrap {
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
  overflow: hidden;
  border-radius: 4px;
}
.mow-mat__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* ============================================================
   [SEASONAL]
   ============================================================ */
.mow-seasonal {
  padding: 80px 1.2rem;
  background: var(--mow-yellow);
}
.mow-seasonal .mow-section-title { color: var(--mow-black); }
.mow-seas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mow-seas__card {
  background: var(--mow-black);
  border-radius: var(--mow-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--mow-shadow-lg);
}
.mow-seas__icon { margin-bottom: 1rem; }
.mow-seas__card h3 {
  font-family: var(--mow-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mow-yellow);
  margin-bottom: 0.5rem;
}
.mow-seas__card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.mow-seas__img-wrap {
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  overflow: hidden;
  border-radius: 6px;
}
.mow-seas__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ============================================================
   [REVIEWS] – masonry
   ============================================================ */
.mow-reviews {
  padding: 80px 1.2rem;
  background: var(--mow-black);
  color: var(--mow-white);
}
.mow-reviews .mow-section-title { color: var(--mow-white); }
.mow-rev__masonry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.mow-rev__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,214,10,0.12);
  border-radius: var(--mow-radius);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.2s;
}
.mow-rev__card:hover { border-color: var(--mow-yellow); }
.mow-rev__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  font-style: italic;
}
.mow-rev__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.mow-rev__author strong {
  display: block;
  font-family: var(--mow-font-head);
  font-size: 0.9rem;
  color: var(--mow-white);
}
.mow-rev__author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.mow-rev__stars {
  font-size: 0.9rem;
  color: var(--mow-yellow);
  letter-spacing: 2px;
}

/* ============================================================
   [QUIZ-TEASER]
   ============================================================ */
.mow-quiz {
  padding: 80px 1.2rem;
  background: var(--mow-gray);
}
.mow-quiz__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mow-quiz__text h2 {
  font-family: var(--mow-font-head);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}
.mow-quiz__text p {
  font-size: 0.9rem;
  color: var(--mow-sub);
}
.mow-quiz__widget {
  background: var(--mow-white);
  border-radius: var(--mow-radius);
  padding: 2rem 1.4rem;
  box-shadow: var(--mow-shadow-lg);
  min-height: 180px;
}
.mow-quiz__step--hidden { display: none; }
.mow-quiz__q {
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.mow-quiz__opts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mow-quiz__opt {
  background: var(--mow-black);
  color: var(--mow-white);
  font-family: var(--mow-font-head);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  text-align: left;
  transition: background 0.2s;
  width: 100%;
}
.mow-quiz__opt:hover { background: #222; }
.mow-quiz__result-price {
  font-family: var(--mow-font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--mow-black);
  margin: 0.8rem 0;
}
.mow-quiz__result-note {
  font-size: 0.85rem;
  color: var(--mow-sub);
  margin-bottom: 1.2rem;
}
.mow-quiz__cta-btn {
  display: block;
  background: var(--mow-yellow);
  color: var(--mow-black);
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1rem;
  border-radius: var(--mow-radius);
  text-align: center;
  transition: background 0.2s;
}
.mow-quiz__cta-btn:hover { background: #e6c000; }

/* ============================================================
   [FAQ]
   ============================================================ */
.mow-faq {
  padding: 80px 1.2rem;
  background: var(--mow-white);
}
.mow-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.mow-faq__item {
  background: var(--mow-gray);
  border-radius: var(--mow-radius);
  overflow: hidden;
  box-shadow: var(--mow-shadow);
}
.mow-faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  font-family: var(--mow-font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mow-txt);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.mow-faq__q:hover {
  background: var(--mow-yellow);
  color: var(--mow-black);
}
.mow-faq__q.mow-faq--open {
  background: var(--mow-yellow);
  color: var(--mow-black);
}
.mow-faq__arrow {
  font-size: 0.75rem;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.mow-faq--open .mow-faq__arrow { transform: rotate(180deg); }
.mow-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.mow-faq__a.mow-faq__a--open {
  max-height: 400px;
  padding: 0 1.4rem 1.2rem;
}
.mow-faq__a p {
  font-size: 0.88rem;
  color: var(--mow-sub);
}

/* ============================================================
   [CTA BANNER]
   ============================================================ */
.mow-cta-banner {
  padding: 80px 1.2rem;
  background: var(--mow-yellow);
}
.mow-cta-banner__inner {
  background: var(--mow-black);
  border-radius: var(--mow-radius);
  overflow: hidden;
  box-shadow: var(--mow-shadow-lg);
  display: flex;
  flex-direction: column;
}
.mow-cta-banner__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}
.mow-cta-banner__text {
  padding: 2.4rem 1.8rem;
  text-align: left;
}
.mow-cta-banner__text h2 {
  font-family: var(--mow-font-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  color: var(--mow-white);
  margin-bottom: 0.6rem;
}
.mow-cta-banner__text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.6rem;
}
.mow-cta-banner__btn {
  display: block;
  background: var(--mow-yellow);
  color: var(--mow-black);
  font-family: var(--mow-font-head);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1.1rem;
  border-radius: var(--mow-radius);
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.mow-cta-banner__btn:hover { background: #e6c000; transform: translateY(-2px); }

/* ============================================================
   [CONTACTS]
   ============================================================ */
.mow-contacts {
  padding: 80px 1.2rem;
  background: var(--mow-gray);
}
.mow-contacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.mow-contacts__col h3 {
  font-family: var(--mow-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.mow-contacts__col p {
  font-size: 0.9rem;
  color: var(--mow-sub);
  margin-bottom: 0.9rem;
}
.mow-contacts__col a {
  color: var(--mow-black);
  font-weight: 600;
  transition: color 0.2s;
}
.mow-contacts__col a:hover { color: #7a6500; }
.mow-contacts__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--mow-radius);
  clip-path: polygon(0 0, 96% 0, 100% 4%, 100% 100%, 4% 100%, 0 96%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.mow-footer {
  background: var(--mow-black);
  color: var(--mow-white);
  padding: 3rem 1.2rem 1.5rem;
}
.mow-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.mow-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-family: var(--mow-font-head);
  font-weight: 900;
  color: var(--mow-yellow);
}
.mow-footer__left p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}
.mow-footer__left a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  transition: color 0.2s;
}
.mow-footer__left a:hover { color: var(--mow-yellow); }
.mow-footer__right h4 {
  font-family: var(--mow-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mow-yellow);
  margin-bottom: 1rem;
}
.mow-footer__right a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.mow-footer__right a:hover { color: var(--mow-yellow); }
.mow-footer__legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
}
.mow-footer__legal p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.mow-footer__legal a {
  color: rgba(255,214,10,0.6);
  text-decoration: underline;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.mow-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--mow-black);
  border-top: 3px solid var(--mow-yellow);
  padding: 1.2rem 1.4rem;
  z-index: 9999;
  display: none;
}
.mow-cookie.mow-cookie--visible { display: block; }
.mow-cookie p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.8rem;
}
.mow-cookie p a { color: var(--mow-yellow); text-decoration: underline; }
.mow-cookie__btns {
  display: flex;
  gap: 0.6rem;
}
.mow-cookie__btns button {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-family: var(--mow-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}
#cookieAccept {
  background: var(--mow-yellow);
  color: var(--mow-black);
}
#cookieDecline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ============================================================
   SCROLL COLOR TRANSITION
   ============================================================ */
.mow-main { transition: background-color 0.4s ease; }

/* ============================================================
   DESKTOP (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
  .mow-adv__grid { grid-template-columns: repeat(2, 1fr); }
  .mow-team__grid { grid-template-columns: repeat(2, 1fr); }
  .mow-trust__grid { grid-template-columns: repeat(4, 1fr); }
  .mow-rev__masonry { grid-template-columns: repeat(2, 1fr); }
  .mow-seas__grid { grid-template-columns: repeat(2, 1fr); }
  .mow-hero { flex-direction: row; align-items: center; padding: 80px 2.5rem; }
  .mow-hero__inner { flex: 1; }
  .mow-hero__img-wrap { flex: 1; }
  .mow-hero__img { height: 380px; }
  .mow-hero__btn { width: auto; }
  .mow-services__list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .mow-hiw__steps { display: grid; grid-template-columns: repeat(2, 1fr); }
  .mow-about__inner { flex-direction: row; }
  .mow-about__text { flex: 1; }
  .mow-about__img-wrap { flex: 1; }
  .mow-mat__inner { flex-direction: row; }
  .mow-mat__text { flex: 1; }
  .mow-mat__img-wrap { flex: 1; }
  .mow-contacts__grid { grid-template-columns: 1fr 1fr; }
  .mow-cta-banner__inner { flex-direction: row; }
  .mow-cta-banner__img { width: 45%; height: auto; clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%); }
  .mow-cta-banner__text { flex: 1; }
  .mow-quiz__inner { flex-direction: row; }
  .mow-quiz__text { flex: 1; }
  .mow-quiz__widget { flex: 1; }
}

/* ============================================================
   LARGE DESKTOP (min-width: 1100px)
   ============================================================ */
@media (min-width: 1100px) {
  .mow-sidebar { display: flex; }
  .mow-topbar { display: none; }
  .mow-mobile-menu { display: none !important; }
  .mow-main { margin-left: var(--mow-sidebar-w); padding-top: 0; }
  .mow-adv__grid { grid-template-columns: repeat(3, 1fr); }
  .mow-team__grid { grid-template-columns: repeat(3, 1fr); }
  .mow-rev__masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: masonry; }
  .mow-services__list { grid-template-columns: repeat(4, 1fr); }
  .mow-hiw__steps { grid-template-columns: repeat(5, 1fr); }
  section { padding-left: 3.5rem; padding-right: 3.5rem; }
}
