/* Moonwest Fixit — ChatGPT premium concept v2.4 */

:root {
  --mwf-black: #000000;
  --mwf-bg: #000000;
  --mwf-surface: #0f0f0f;
  --mwf-card: #141414;
  --mwf-card-hover: #1a1a1a;
  --mwf-border: rgba(255, 255, 255, 0.1);
  --mwf-border-strong: rgba(201, 162, 39, 0.35);
  --mwf-text: #f5f5f7;
  --mwf-muted: #9a9a9a;
  --mwf-gold: #c9a227;
  --mwf-gold-light: #e8c96a;
  --mwf-gold-dark: #9a7b1a;
  --mwf-gold-gradient: linear-gradient(180deg, #e8c96a 0%, #b8911f 100%);
  --mwf-dubai: #5d89ba;
  --mwf-accent-link: #5d89ba;
  --mwf-accent-soft: rgba(93, 137, 186, 0.12);
  --mwf-whatsapp: #c9a227;
  --mwf-whatsapp-hover: #b8911f;
  --mwf-success: #c9a227;
  --mwf-radius: 12px;
  --mwf-radius-lg: 16px;
  --mwf-shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.55);
  --mwf-container: 1120px;
  --mwf-header-height: 72px;
  --mwf-sticky-height: 56px;
  --mwf-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mwf-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Theme shell — match WoodMart wrapper to dark UI */
body.moonwest-fixit-page .website-wrapper,
body.moonwest-fixit-page .wd-page-content,
body.moonwest-fixit-page .main-page-wrapper {
  background: var(--mwf-bg) !important;
}

body.moonwest-fixit-page .wd-content-area {
  background: transparent;
}

/* Theme isolation inside WoodMart */
.moonwest-fixit-main {
  color: var(--mwf-text);
  background: var(--mwf-bg);
  font-family: var(--mwf-font);
  font-size: 1.0625rem;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  padding-top: var(--mwf-header-height);
  padding-bottom: calc(var(--mwf-sticky-height) + 20px + env(safe-area-inset-bottom, 0px));
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ——— Site header ——— */
.mwf-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--mwf-border);
}

.mwf-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--mwf-header-height);
}

.mwf-brand {
  display: inline-flex;
  text-decoration: none;
  flex-shrink: 0;
  align-items: center;
}

.mwf-brand-mark {
  display: block;
  width: auto;
  height: 26px;
  max-width: 190px;
}

@media (min-width: 980px) {
  .mwf-brand-mark {
    height: 28px;
    max-width: 190px;
  }
}

.mwf-brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mwf-brand-top {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--mwf-gold);
}

.mwf-brand-sub {
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: #fff;
  margin-top: 2px;
}

.mwf-site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

@media (min-width: 980px) {
  .mwf-site-nav {
    display: flex;
  }
}

.mwf-site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s var(--mwf-ease);
}

.mwf-site-nav a:hover,
.mwf-site-nav a[aria-current="page"] {
  color: var(--mwf-gold-light);
}

.mwf-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mwf-header-mark {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--mwf-border-strong);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mwf-gold);
}

@media (min-width: 980px) {
  .mwf-header-mark {
    display: inline-flex;
  }
}

.mwf-header-cta {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.8125rem;
}

@media (max-width: 720px) {
  .mwf-header-cta {
    display: none;
  }
}

.moonwest-fixit-main *,
.moonwest-fixit-main *::before,
.moonwest-fixit-main *::after {
  box-sizing: border-box;
}

.mwf-container {
  width: min(100% - 32px, var(--mwf-container));
  margin-inline: auto;
}

.mwf-section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.mwf-section-head h2 {
  margin: 0 0 12px;
}

.mwf-section-head p {
  margin: 0;
  color: var(--mwf-muted);
  font-size: 1.05rem;
}

.mwf-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mwf-muted);
  margin-bottom: 16px;
}

/* ——— Hero ——— */
.mwf-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  background: #000;
  color: var(--mwf-text);
  border-bottom: 1px solid var(--mwf-border);
}

.mwf-hero-premium {
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
}

.mwf-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 72% 42%, rgba(93, 137, 186, 0.22), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 162, 39, 0.08), transparent 55%);
  pointer-events: none;
}

.mwf-hero::before {
  display: none;
}

.mwf-accent-dubai {
  color: var(--mwf-dubai);
  text-shadow: 0 0 24px rgba(93, 137, 186, 0.35);
}

.mwf-home .mwf-hero h1,
.mwf-hero-service .mwf-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: #fff;
  max-width: 14ch;
}

.mwf-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.mwf-hero-badges li {
  position: relative;
  padding-left: 22px;
  font-size: 0.875rem;
  color: #ddd;
}

.mwf-hero-badges li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mwf-gold);
  font-weight: 700;
}

.mwf-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--mwf-border);
  font-size: 0.75rem;
  color: var(--mwf-muted);
}

.mwf-hero-features span {
  position: relative;
  padding-left: 18px;
}

.mwf-hero-features span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--mwf-gold);
}

.mwf-hero-visual-bg {
  position: absolute;
  inset: 8% 0 0;
  background: radial-gradient(circle at 50% 50%, rgba(93, 137, 186, 0.18), transparent 65%);
  border-radius: 50%;
}

.mwf-hero .mwf-container {
  position: relative;
  z-index: 1;
}

.mwf-hero-service .mwf-hero-visual .mwf-hero-picture img {
  width: min(100%, 560px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.mwf-kicker {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mwf-muted);
  margin: 0 0 16px;
}

.mwf-kicker a {
  color: var(--mwf-accent-link);
  text-decoration: none;
}

.mwf-kicker a:hover {
  text-decoration: underline;
}

.mwf-hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .mwf-hero-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 32px;
  }
}

.mwf-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mwf-hero-visual .mwf-hero-picture,
.mwf-hero-visual .mwf-hero-picture img {
  width: min(100%, 560px);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: drop-shadow(0 28px 64px rgba(93, 173, 226, 0.12));
}

@media (max-width: 899px) {
  .mwf-hero-visual {
    order: -1;
    max-width: 420px;
    margin-inline: auto;
  }

  .mwf-hero-cinematic {
    min-height: auto;
    padding: 48px 0 64px;
  }
}

.mwf-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  color: #fff;
  max-width: none;
}

.mwf-subheadline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 0 20px;
  color: rgba(244, 245, 247, 0.88);
  font-weight: 400;
}

.mwf-trust-line {
  font-size: 1rem;
  font-weight: 500;
  color: var(--mwf-muted);
  margin: 0 0 32px;
}

.mwf-hero .mwf-trust-line {
  margin-bottom: 36px;
}

.mwf-cta-hero {
  gap: 16px;
}

/* ——— Trust bar ——— */
.mwf-trust-bar {
  background: var(--mwf-surface);
  border-block: 1px solid var(--mwf-border);
  padding: 18px 0;
}

.mwf-trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 0.8125rem;
  color: var(--mwf-muted);
  letter-spacing: 0.01em;
}

.mwf-trust-bar-inner span::before {
  content: "·";
  margin-right: 28px;
  color: var(--mwf-border-strong);
}

.mwf-trust-bar-inner span:first-child::before {
  display: none;
}

/* ——— Sections ——— */
.mwf-section {
  padding: 80px 0;
  border-top: 1px solid var(--mwf-border);
}

.mwf-section-alt {
  background: var(--mwf-surface);
}

.mwf-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 12px;
  color: #fff;
}

.mwf-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: #fff;
}

/* ——— Grid ——— */
.mwf-grid {
  display: grid;
  gap: 20px;
}

.mwf-grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .mwf-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mwf-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mwf-two-col {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .mwf-two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ——— Cards ——— */
.mwf-card {
  background: var(--mwf-card);
  border: 1px solid var(--mwf-border);
  border-radius: var(--mwf-radius);
  padding: 32px;
  transition: transform 0.35s var(--mwf-ease), border-color 0.35s var(--mwf-ease), background 0.35s var(--mwf-ease);
}

.mwf-card:hover {
  border-color: var(--mwf-border-strong);
}

.mwf-service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.mwf-service-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--mwf-shadow-soft);
  background: var(--mwf-card-hover);
  border-color: var(--mwf-border-strong);
}

.mwf-service-icon-lg {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.mwf-service-icon-lg svg {
  width: 32px;
  height: 32px;
}

.mwf-service-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--mwf-text);
  opacity: 0.9;
}

.mwf-service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.mwf-service-card p {
  margin: 0;
  color: var(--mwf-muted);
  font-size: 0.9375rem;
  flex: 1;
}

.mwf-grid-services {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .mwf-grid-services {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwf-service-tile {
  text-decoration: none;
  color: inherit;
  text-align: center;
  padding: 24px 16px;
  min-height: 160px;
}

.mwf-service-tile h3 {
  font-size: 0.9375rem;
  margin: 12px 0 4px;
}

.mwf-service-tile p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--mwf-muted);
}

.mwf-service-tile .mwf-service-icon {
  margin-inline: auto;
}

.mwf-services {
  padding-top: 48px;
  border-top: 0;
}

/* ——— Buttons ——— */
.mwf-cta-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.mwf-cta-block .mwf-trust-line {
  flex: 1 1 100%;
  margin-bottom: 4px;
}

.mwf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s var(--mwf-ease), box-shadow 0.2s var(--mwf-ease), background 0.2s ease;
}

.mwf-btn:focus-visible {
  outline: 2px solid var(--mwf-accent);
  outline-offset: 3px;
}

.mwf-btn:hover {
  transform: translateY(-2px);
}

.mwf-btn:active {
  transform: translateY(0);
}

.mwf-btn-whatsapp,
.mwf-btn-gold {
  background: var(--mwf-gold-gradient);
  color: #000;
  font-weight: 700;
  border: 1px solid var(--mwf-gold-dark);
}

.mwf-btn-whatsapp:hover,
.mwf-btn-gold:hover {
  filter: brightness(1.05);
}

.mwf-btn-call {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--mwf-gold);
}

.mwf-btn-call:hover {
  background: rgba(201, 162, 39, 0.08);
  border-color: var(--mwf-gold-light);
}

.mwf-section .mwf-btn-call,
.mwf-final-cta .mwf-btn-call {
  background: transparent;
  color: #fff;
  border-color: var(--mwf-gold);
}

.mwf-btn-secondary {
  background: transparent;
  color: var(--mwf-text);
  border: 1px solid var(--mwf-border-strong);
}

.mwf-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #fff;
}

.mwf-btn-ghost {
  background: transparent;
  color: var(--mwf-accent);
  border: 1px solid var(--mwf-border-strong);
  min-height: 44px;
  padding: 10px 18px;
}

/* ——— Approval banner ——— */
.mwf-approval-banner {
  background: rgba(48, 209, 88, 0.08);
  border-block: 1px solid rgba(48, 209, 88, 0.2);
  padding: 16px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--mwf-success);
}

/* ——— How it works ——— */
.mwf-process-track {
  display: grid;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

@media (min-width: 768px) {
  .mwf-process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .mwf-process-track::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--mwf-border);
  }
}

.mwf-process-step {
  text-align: center;
  padding: 0 12px;
}

.mwf-process-num {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--mwf-gold);
  color: var(--mwf-gold);
  font-weight: 700;
  margin-bottom: 14px;
  background: #000;
  position: relative;
  z-index: 1;
}

.mwf-process-step strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.mwf-process-step span {
  display: block;
  font-size: 0.8125rem;
  color: var(--mwf-muted);
  line-height: 1.5;
}

.mwf-steps-grid,
.mwf-step-card {
  display: none;
}

/* ——— Proof placeholders ——— */
.mwf-proof-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .mwf-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mwf-proof-card {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background: var(--mwf-card);
  border: 1px dashed var(--mwf-border-strong);
  border-radius: var(--mwf-radius);
  color: var(--mwf-muted);
}

.mwf-proof-card strong {
  color: var(--mwf-text);
  margin-bottom: 8px;
}

.mwf-review-placeholder {
  border-style: dashed;
  opacity: 0.85;
}

.mwf-review-placeholder footer {
  color: var(--mwf-muted);
  font-style: italic;
}

/* ——— Tags / brands / areas ——— */
.mwf-tag-list,
.mwf-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mwf-tag-list li {
  background: var(--mwf-card);
  border: 1px solid var(--mwf-border);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--mwf-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.mwf-brands .mwf-tag-list li:hover,
.mwf-areas .mwf-tag-list li:hover {
  color: var(--mwf-text);
  border-color: var(--mwf-border-strong);
}

.mwf-brands-note,
.mwf-note {
  color: var(--mwf-muted);
  font-size: 0.9375rem;
  max-width: 720px;
  margin-bottom: 24px;
}

.mwf-check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mwf-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--mwf-muted);
}

.mwf-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 16px;
  height: 16px;
  background: var(--mwf-gold);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ——— FAQ ——— */
.mwf-faq-list {
  display: grid;
  gap: 12px;
}

.mwf-faq-item {
  background: var(--mwf-card);
  border: 1px solid var(--mwf-border);
  border-radius: var(--mwf-radius);
  overflow: hidden;
}

.mwf-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  padding: 18px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s ease;
}

.mwf-faq-item summary::-webkit-details-marker {
  display: none;
}

.mwf-faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--mwf-muted);
  transition: transform 0.25s var(--mwf-ease);
}

.mwf-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.mwf-faq-item summary:hover {
  background: rgba(255, 255, 255, 0.03);
}

.mwf-faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--mwf-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ——— Final CTA ——— */
.mwf-brand-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

@media (min-width: 768px) {
  .mwf-brand-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwf-brand-logos li {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  padding: 16px;
  border: 1px solid var(--mwf-border);
  border-radius: var(--mwf-radius);
  background: var(--mwf-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.mwf-brand-logos .mwf-brand-logo {
  height: 32px;
}

.mwf-brands-more {
  text-align: center;
  color: var(--mwf-muted);
  margin: 0 0 12px;
}

.mwf-areas-panel {
  position: relative;
  border: 1px solid var(--mwf-border);
  border-radius: var(--mwf-radius-lg);
  background: var(--mwf-card);
  padding: 32px 24px 24px;
  overflow: hidden;
}

.mwf-areas-skyline {
  height: 56px;
  margin-bottom: 20px;
  background:
    linear-gradient(to top, rgba(255, 255, 255, 0.06), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 80' fill='%23333'%3E%3Cpath d='M0 80V50h40v30H0zm60 0V35h25v45H60zm50 0V20h30v60h-30zm55 0V40h20v40h-20zm45 0V25h35v55h-35zm50 0V45h18v35h-18zm40 0V15h28v65h-28zm48 0V30h22v50h-22zm42 0V10h32v70h-32zm50 0V35h24v45h-24zm46 0V22h26v58h-26zm44 0V38h20v42h-20zm42 0V18h30v62h-30zm48 0V32h22v48h-22zm40 0V8h34v72h-34zm52 0V28h26v52h-26z'/%3E%3C/svg%3E") center / cover no-repeat;
  opacity: 0.55;
}

.mwf-areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .mwf-areas-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwf-areas-list li {
  font-size: 0.875rem;
  color: var(--mwf-muted);
}

.mwf-reviews-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .mwf-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .mwf-reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mwf-review-card {
  padding: 24px;
}

.mwf-stars {
  color: var(--mwf-gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.mwf-review-card p {
  margin: 0 0 16px;
  color: #ddd;
  font-size: 0.875rem;
  line-height: 1.6;
}

.mwf-review-card footer {
  font-size: 0.8125rem;
  color: var(--mwf-muted);
}

.mwf-final-cta {
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  border-top: 1px solid var(--mwf-border);
  padding: 72px 0;
}

.mwf-final-cta-inner {
  display: grid;
  gap: 28px;
  align-items: center;
  max-width: none;
  text-align: left;
}

@media (min-width: 900px) {
  .mwf-final-cta-inner {
    grid-template-columns: 1fr auto;
  }
}

.mwf-final-copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 8px;
}

.mwf-final-features {
  border-top: 0;
  padding-top: 12px;
  margin-top: 12px;
}

.mwf-final-actions {
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
}

.mwf-final-actions .mwf-btn {
  width: 100%;
}

/* ——— Prose / links ——— */
.mwf-prose p {
  color: var(--mwf-muted);
  max-width: 680px;
}

.mwf-link {
  color: var(--mwf-accent-link);
  font-weight: 500;
  text-decoration: none;
}

.mwf-link:hover {
  text-decoration: underline;
}

/* ——— Contact form ——— */
.mwf-form-wrap {
  background: var(--mwf-card);
  border: 1px solid var(--mwf-border);
  border-radius: var(--mwf-radius-lg);
  padding: 28px;
}

.mwf-form-wrap label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--mwf-text);
}

.mwf-form-wrap input,
.mwf-form-wrap select,
.mwf-form-wrap textarea,
.mwf-fallback-form input,
.mwf-fallback-form select {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  background: var(--mwf-bg);
  border: 1px solid var(--mwf-border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--mwf-text);
  font-family: inherit;
}

.mwf-form-wrap input:focus,
.mwf-form-wrap select:focus,
.mwf-form-wrap textarea:focus {
  outline: 2px solid var(--mwf-accent);
  outline-offset: 0;
  border-color: transparent;
}

.wpcf7 form .wpcf7-response-output {
  border-radius: 12px;
  margin-top: 16px;
}

.mwf-prose a.phone_click {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 10px;
}

/* ——— Sticky bar ——— */
.mwf-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--mwf-sticky-height);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--mwf-border);
}

.mwf-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: #fff;
  min-height: max(var(--mwf-sticky-height), 44px);
  transition: filter 0.2s ease;
  touch-action: manipulation;
}

.mwf-sticky-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}

.mwf-sticky-whatsapp {
  background: var(--mwf-gold-gradient);
  color: #000;
}

.mwf-sticky-call {
  background: var(--mwf-surface);
}

/* ——— Motion ——— */
.mwf-hero-content {
  animation: mwf-fade-up 0.8s var(--mwf-ease) both;
}

@keyframes mwf-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mwf-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--mwf-ease), transform 0.6s var(--mwf-ease);
  transition-delay: var(--mwf-reveal-delay, 0ms);
}

.mwf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mwf-reduced-motion .mwf-reveal,
.mwf-reduced-motion .mwf-hero-content,
.mwf-reduced-motion .mwf-hero::after {
  animation: none !important;
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

@media (min-width: 769px) {
  .mwf-sticky-bar {
    display: none;
  }

  .moonwest-fixit-main {
    padding-bottom: 0;
  }
}

/* Hide WooCommerce clutter on Fixit pages */
body.moonwest-fixit-page .wd-header-cart,
body.moonwest-fixit-page .wd-tools-element.wd-header-wishlist,
body.moonwest-fixit-page .wd-header-compare,
body.moonwest-fixit-page .wd-header-my-account {
  display: none !important;
}
