body.mw-site {
  --red: #E63946;
  --red-hover: #d12b39;
  --ink: #16181D;
  --ink-soft: #22252C;
  --text: #1A1D23;
  --muted: #5C636E;
  --line: #EAEAEC;
  --bg: #FFFFFF;
  --bg-soft: #F6F6F7;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px -18px rgba(20, 22, 26, .25);
  --shadow-sm: 0 4px 20px -12px rgba(20, 22, 26, .35);
  --container: 1160px;
}

body.mw-site *,
body.mw-site *::before,
body.mw-site *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body.mw-site {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.mw-site h1,
body.mw-site h2,
body.mw-site h3,
body.mw-site h4 {
  font-family: 'Archivo', sans-serif;
  line-height: 1.08;
  letter-spacing: -.02em;
}

body.mw-site a {
  color: inherit;
  text-decoration: none;
}

body.mw-site img {
  max-width: 100%;
  display: block;
}

body.mw-site .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

body.mw-site .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

body.mw-site .btn:active {
  transform: translateY(1px);
}

body.mw-site .btn-red {
  background: var(--red);
  color: #fff;
}

body.mw-site .btn-red:hover {
  background: var(--red-hover);
}

body.mw-site .btn-dark {
  background: var(--ink);
  color: #fff;
}

body.mw-site .btn-dark:hover {
  background: #000;
}

body.mw-site .btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

body.mw-site .btn-ghost:hover {
  border-color: var(--ink);
}

body.mw-site .btn svg {
  width: 18px;
  height: 18px;
}

body.mw-site .site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

body.mw-site .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

body.mw-site .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.03em;
  min-width: 0;
}

body.mw-site .brand b {
  color: var(--red);
}

body.mw-site .brand-text {
  display: block;
  line-height: 1.05;
}

body.mw-site .brand-text__line {
  display: block;
}

body.mw-site .brand-text__line--accent {
  color: var(--red);
}

body.mw-site .nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

body.mw-site .nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: color .15s;
}

body.mw-site .nav-links a:hover {
  color: var(--ink);
}

body.mw-site .nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

body.mw-site .nav-call {
  padding: 12px 22px;
  font-size: 15px;
}

body.mw-site .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

body.mw-site .menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .25s;
  border-radius: 2px;
}

body.mw-site .hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

body.mw-site .hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd3d7 0%, #ffe3e5 40%, rgba(255, 227, 229, 0) 72%);
}

body.mw-site .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 78px 0 84px;
}

body.mw-site .hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
}

body.mw-site .reviews {
  padding: 28px 0 8px;
  background: var(--bg);
}

body.mw-site .reviews__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

body.mw-site .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

body.mw-site .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

body.mw-site .hero h1 {
  font-weight: 900;
  font-size: clamp(38px, 5.4vw, 62px);
}

body.mw-site .hero h1 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 30em;
  margin: 22px 0 32px;
}

body.mw-site .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.mw-site .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  list-style: none;
}

body.mw-site .hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
}

body.mw-site .hero-trust svg {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex: none;
}

body.mw-site .hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

body.mw-site .hero-media {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  border-radius: 26px;
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(230, 57, 70, .14) 0%, rgba(230, 57, 70, 0) 55%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 10px;
  position: relative;
}

body.mw-site .hero-media::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .55) inset;
}

body.mw-site .hero-media__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

body.mw-site .hero-media--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6c727c;
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(230, 57, 70, .10) 0%, rgba(230, 57, 70, 0) 60%),
    #fff;
}

body.mw-site .hero-media--empty svg {
  width: 52px;
  height: 52px;
}

body.mw-site .hero-media--empty span {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
}

body.mw-site .hero-badge {
  position: absolute;
  right: 0;
  top: 20px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

body.mw-site .hero-badge b {
  font-family: 'Archivo', sans-serif;
  font-size: 30px;
  display: block;
  line-height: 1;
}

body.mw-site .hero-badge span {
  font-size: 12px;
  color: #c9ccd2;
  letter-spacing: .06em;
  text-transform: uppercase;
}

body.mw-site .ribbon {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  border-block: 1px solid #000;
}

body.mw-site .ribbon-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
}

body.mw-site .ribbon-track span {
  display: inline-flex;
  align-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 0;
}

body.mw-site .ribbon-track .dot {
  color: var(--red);
  padding: 0 26px;
  font-size: 14px;
}

body.mw-site section {
  padding: 92px 0;
}

body.mw-site .section-head {
  max-width: 620px;
  margin-bottom: 52px;
}

body.mw-site .section-head.center {
  margin-inline: auto;
  text-align: center;
}

body.mw-site .section-head h2 {
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
}

body.mw-site .section-head p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
}

body.mw-site .about {
  background: #fff;
}

body.mw-site .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.mw-site .about-copy h2 {
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
}

body.mw-site .about-copy h2 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .about-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
}

body.mw-site .about-list {
  list-style: none;
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

body.mw-site .about-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-weight: 500;
}

body.mw-site .about-list svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: none;
  margin-top: 2px;
}

body.mw-site .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

body.mw-site .stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

body.mw-site .stat b {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 44px;
  color: var(--red);
  line-height: 1;
  display: block;
}

body.mw-site .stat span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: var(--ink);
}

body.mw-site .stat small {
  color: var(--muted);
  font-size: 14px;
}

body.mw-site .offer {
  background: var(--bg-soft);
}

body.mw-site .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

body.mw-site .card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}

body.mw-site .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

body.mw-site .card .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffe6e8;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

body.mw-site .card:hover .ic {
  background: var(--red);
}

body.mw-site .card .ic svg {
  width: 27px;
  height: 27px;
  color: var(--red);
  transition: color .2s;
}

body.mw-site .card:hover .ic svg {
  color: #fff;
}

body.mw-site .card h3 {
  font-size: 20px;
  font-weight: 700;
}

body.mw-site .card p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15.5px;
}

body.mw-site .about-block {
  background: #fff;
}

body.mw-site .about-block__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

body.mw-site .about-block__grid--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
}

body.mw-site .about-block__media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--bg-soft);
}

body.mw-site .about-block__media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

body.mw-site .about-block__copy h2 {
  font-weight: 900;
  font-size: clamp(30px, 4vw, 44px);
}

body.mw-site .about-block__copy h2 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .about-block__copy .lead {
  font-size: 17.5px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 44em;
}

body.mw-site .about-block__list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15.5px;
}

body.mw-site .about-block__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

body.mw-site .about-block__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
  margin-top: 7px;
}

body.mw-site .about-block__cta {
  margin-top: 26px;
}

body.mw-site .why {
  background: var(--bg-soft);
}

body.mw-site .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

body.mw-site .why-copy h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
}

body.mw-site .why-copy h2 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .why-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 18px;
}

body.mw-site .why-copy .btn {
  margin-top: 28px;
}

body.mw-site .why-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
}

body.mw-site .why-panel h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.mw-site .why-panel h3 .tag {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #ffe6e8;
  display: grid;
  place-items: center;
  flex: none;
}

body.mw-site .why-panel h3 .tag svg {
  width: 20px;
  height: 20px;
  color: var(--red);
}

body.mw-site .plus-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

body.mw-site .plus-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

body.mw-site .plus-list .chk {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 1px;
}

body.mw-site .plus-list .chk svg {
  width: 15px;
  height: 15px;
  color: #fff;
}

body.mw-site .plus-list b {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  display: block;
}

body.mw-site .plus-list span {
  font-size: 14.5px;
  color: var(--muted);
}

body.mw-site .faq {
  background: #fff;
}

body.mw-site .faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

body.mw-site .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

body.mw-site .faq-item[open] {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

body.mw-site .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 17.5px;
}

body.mw-site .faq-item summary::-webkit-details-marker {
  display: none;
}

body.mw-site .faq-item .plus {
  width: 26px;
  height: 26px;
  flex: none;
  position: relative;
}

body.mw-site .faq-item .plus::before,
body.mw-site .faq-item .plus::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: .25s;
}

body.mw-site .faq-item .plus::before {
  left: 5px;
  right: 5px;
  top: 12px;
  height: 2px;
}

body.mw-site .faq-item .plus::after {
  top: 5px;
  bottom: 5px;
  left: 12px;
  width: 2px;
}

body.mw-site .faq-item[open] .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

body.mw-site .faq-item .answer {
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 16px;
}

body.mw-site .cta-band {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 92px 0;
}

body.mw-site .cta-band::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #3a1116 0%, rgba(58, 17, 22, 0) 70%);
}

body.mw-site .cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

body.mw-site .cta-inner h2 {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 16em;
}

body.mw-site .cta-inner h2 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .cta-inner p {
  color: #c9ccd2;
  margin-top: 12px;
  font-size: 17px;
}

body.mw-site .contact {
  background: var(--bg-soft);
}

body.mw-site .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}

body.mw-site .contact-info {
  display: grid;
  gap: 14px;
  align-content: start;
}

body.mw-site .info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
}

body.mw-site .info-row .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffe6e8;
  display: grid;
  place-items: center;
  flex: none;
}

body.mw-site .info-row .ic svg {
  width: 22px;
  height: 22px;
  color: var(--red);
}

body.mw-site .info-row .ic svg path {
  fill: currentColor;
}

body.mw-site .info-row--whatsapp .ic {
  background: #25D366;
}

body.mw-site .info-row--whatsapp .ic svg {
  color: #fff;
}

body.mw-site .info-row h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
}

body.mw-site .info-row a,
body.mw-site .info-row p {
  color: var(--muted);
  font-size: 15.5px;
  margin-top: 3px;
}

body.mw-site .info-row a:hover {
  color: var(--red);
}

body.mw-site .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

body.mw-site #contactForm,
body.mw-site .mw-contact-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}

body.mw-site .field-grow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.mw-site .field-grow textarea {
  flex: 1;
  min-height: 130px;
}

body.mw-site .form-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

body.mw-site .form-card > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}

body.mw-site .field {
  margin-bottom: 16px;
}

body.mw-site .field label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 7px;
}

body.mw-site .field input,
body.mw-site .field textarea,
body.mw-site .field select {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

body.mw-site .field input:focus,
body.mw-site .field textarea:focus,
body.mw-site .field select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, .13);
}

body.mw-site .field textarea {
  resize: vertical;
  min-height: 110px;
}

body.mw-site .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

body.mw-site .form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

body.mw-site .form-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}

body.mw-site .map-tile {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
  margin-top: 4px;
}

body.mw-site .map-tile iframe {
  width: 100%;
  height: 168px;
  border: 0;
  display: block;
}

body.mw-site .map-tile .cap {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}

body.mw-site .map-tile .cap svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  flex: none;
}

body.mw-site .footer {
  background: var(--ink);
  color: #c9ccd2;
  padding: 64px 0 26px;
}

body.mw-site .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: none;
}

body.mw-site .footer .brand {
  color: #fff;
  margin-bottom: 16px;
  display: inline-block;
}

body.mw-site .footer .brand b {
  font-weight: 900;
  color: var(--red);
}

body.mw-site .footer-brand-text {
  display: inline-block;
}

body.mw-site .footer p {
  font-size: 14.5px;
  line-height: 1.7;
}

body.mw-site .footer h4 {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

body.mw-site .footer ul {
  list-style: none;
  display: grid;
  gap: 11px;
}

body.mw-site .footer ul a {
  font-size: 14.5px;
  color: #c9ccd2;
  transition: color .15s;
}

body.mw-site .footer ul a:hover {
  color: var(--red);
}

body.mw-site .footer .data span {
  color: #8b929c;
}

body.mw-site .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #2a2d34;
  font-size: 13.5px;
}

@media (min-width: 761px) {
  body.mw-site .footer-bottom {
    flex-wrap: nowrap;
  }

  body.mw-site .footer-bottom > span {
    white-space: nowrap;
  }

  body.mw-site .footer-links {
    margin-inline: auto;
    justify-content: center;
  }

  body.mw-site .footer-bottom .powered {
    white-space: nowrap;
  }
}

body.mw-site .footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8b929c;
  flex-wrap: wrap;
}

body.mw-site .footer-links a {
  color: #c9ccd2;
  text-decoration: none;
}

body.mw-site .footer-links a:hover {
  color: var(--red);
}

body.mw-site .footer-bottom a {
  color: #c9ccd2;
}

body.mw-site .footer-bottom a:hover {
  color: #fff;
}

body.mw-site .footer-legal {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

body.mw-site .socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

body.mw-site .socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #22252c;
  display: grid;
  place-items: center;
  transition: background .2s;
}

body.mw-site .socials a:hover {
  background: var(--red);
}

body.mw-site .socials svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

body.mw-site .footer-bottom .powered {
  text-align: right;
  font-size: 13.5px;
  color: #8b929c;
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

body.mw-site .powered a {
  color: #c9ccd2;
  font-weight: 600;
}

body.mw-site .powered a:hover {
  color: var(--red);
}

body.mw-site .skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.mw-site .skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: var(--ink);
  color: #fff;
  z-index: 100;
  border-radius: 8px;
}

@media (max-width: 960px) {
  body.mw-site .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 0 64px;
  }

  body.mw-site .hero-visual {
    order: 0;
  }

  body.mw-site .about-grid,
  body.mw-site .contact-grid,
  body.mw-site .why-grid,
  body.mw-site .about-block__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  body.mw-site .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.mw-site .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  body.mw-site .nav {
    position: relative;
    gap: 12px;
  }

  body.mw-site .nav-links {
    display: none;
  }

  body.mw-site .nav-call {
    padding: 10px 12px;
    font-size: 14px;
  }

  body.mw-site .menu-toggle {
    display: block;
  }

  body.mw-site .nav-links.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.mw-site .nav-links.open li {
    width: 100%;
  }

  body.mw-site .nav-links.open a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    color: var(--ink);
  }

  body.mw-site section {
    padding: 64px 0;
  }

  body.mw-site .cta-band {
    padding: 64px 0;
  }

  body.mw-site .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  body.mw-site .two-col {
    grid-template-columns: 1fr;
  }

  body.mw-site .footer-grid {
    grid-template-columns: 1fr;
  }

  body.mw-site .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  body.mw-site .hero-badge {
    top: 8px;
  }

  /* Hero mobile layout */
  body.mw-site .hero-grid {
    gap: 26px;
    padding: 38px 0 48px;
  }

  body.mw-site .hero-media {
    max-width: none;
    width: 100%;
    aspect-ratio: 4/3;
    padding: 0;
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    background: #fff;
  }

  body.mw-site .hero-media::after {
    display: none;
  }

  body.mw-site .hero-media__img {
    border-radius: 18px;
  }

  body.mw-site .hero-badge {
    right: 10px;
    top: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  body.mw-site .hero-badge b {
    font-size: 22px;
  }
}

@media (max-width: 460px) {
  body.mw-site .offer-grid,
  body.mw-site .stats {
    grid-template-columns: 1fr;
  }

  body.mw-site .hero-trust {
    gap: 14px;
  }

  body.mw-site .brand {
    font-size: 17px;
  }

  body.mw-site .nav-call {
    padding: 10px 13px;
    font-size: 13px;
    gap: 7px;
  }

  body.mw-site .nav-call span {
    display: none;
  }

  body.mw-site .hero-media {
    border-radius: 16px;
  }

  body.mw-site .hero-media__img {
    border-radius: 16px;
  }
}

/* Floating call button (mobile) */
body.mw-site .call-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px -20px rgba(20, 22, 26, .45);
  z-index: 80;
}

body.mw-site .call-fab svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

body.mw-site .call-fab:active {
  transform: translateY(1px);
}

@media (max-width: 760px) {
  body.mw-site .call-fab {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.mw-site *,
  html {
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   PODSTRONY — komponenty (page hero, uslugi, kroki, cennik, obszar)
   ========================================================================== */

body.mw-site .nav-links a.is-active {
  color: var(--red);
}

/* --- Page hero + breadcrumb --- */
body.mw-site .page-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  padding: 0;
}

body.mw-site .page-hero::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd3d7 0%, #ffe3e5 40%, rgba(255, 227, 229, 0) 72%);
  pointer-events: none;
}

body.mw-site .breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
}

body.mw-site .breadcrumb a {
  color: var(--muted);
  transition: color .15s;
}

body.mw-site .breadcrumb a:hover {
  color: var(--red);
}

body.mw-site .breadcrumb span[aria-hidden] {
  color: #c3c6cc;
}

body.mw-site .page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0 68px;
}

body.mw-site .page-hero__grid--solo {
  grid-template-columns: 1fr;
  max-width: 760px;
  padding-bottom: 60px;
}

body.mw-site .page-hero__copy h1 {
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
}

body.mw-site .page-hero__copy h1 em {
  color: var(--red);
  font-style: normal;
}

body.mw-site .page-hero__copy .lead {
  font-size: 18.5px;
  color: var(--muted);
  max-width: 34em;
  margin: 20px 0 30px;
}

body.mw-site .page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

body.mw-site .page-hero__media {
  position: relative;
  display: flex;
  justify-content: center;
}

body.mw-site .page-hero__media img {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/11;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

body.mw-site .page-hero__media--scene {
  align-items: center;
}

body.mw-site .page-hero__media .scene {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/11;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(230, 57, 70, .12) 0%, rgba(230, 57, 70, 0) 55%),
    #fff;
  display: grid;
  place-items: center;
  padding: 20px;
}

body.mw-site .page-hero__media .scene svg {
  width: 100%;
  height: auto;
}

body.mw-site .page-hero__media .hero-badge {
  right: 8px;
  top: 16px;
}

/* --- Uslugi (oferta) --- */
body.mw-site .services-section {
  background: #fff;
}

body.mw-site .service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

body.mw-site .service-row {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 34px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

body.mw-site .service-row__side {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

body.mw-site .service-row__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #d4d6da;
  line-height: 1;
  padding-top: 6px;
}

body.mw-site .service-row__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #ffe6e8;
  display: grid;
  place-items: center;
  flex: none;
}

body.mw-site .service-row__icon svg {
  width: 28px;
  height: 28px;
  color: var(--red);
}

body.mw-site .service-row__body h3 {
  font-size: 22px;
  font-weight: 700;
}

body.mw-site .service-row__body p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 10px;
  max-width: 56em;
}

body.mw-site .service-row__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 16px;
}

body.mw-site .service-row__points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 500;
}

body.mw-site .service-row__points li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffe6e8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E63946' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px 11px;
  background-repeat: no-repeat;
  background-position: center;
  flex: none;
}

body.mw-site .services-section__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* --- Kroki (proces) --- */
body.mw-site .steps-section {
  background: var(--bg-soft);
}

body.mw-site .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

body.mw-site .step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

body.mw-site .step__num {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  background: var(--red);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

body.mw-site .step h3 {
  font-size: 18px;
  font-weight: 700;
}

body.mw-site .step p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

/* --- Cennik --- */
body.mw-site .page-intro {
  background: var(--bg-soft);
  padding: 0 0 8px;
}

body.mw-site .page-intro .breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
}

body.mw-site .page-intro .breadcrumb a {
  color: var(--muted);
  transition: color .15s;
}

body.mw-site .page-intro .breadcrumb a:hover {
  color: var(--red);
}

body.mw-site .page-intro .breadcrumb span[aria-hidden] {
  color: #c3c6cc;
}

body.mw-site .page-intro h1 {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 48px);
  margin-top: 18px;
}

body.mw-site .page-intro__lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 36em;
  margin: 12px 0 28px;
}

body.mw-site .pricing {
  background: #fff;
  padding-top: 8px;
}

body.mw-site .price-alert {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffe6e8;
  border: 1px solid #f6c9cd;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}

body.mw-site .price-alert__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red);
  display: grid;
  place-items: center;
  flex: none;
}

body.mw-site .price-alert__ic svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

body.mw-site .price-alert p {
  font-size: 15.5px;
  color: #7a2730;
  font-weight: 500;
}

body.mw-site .price-block {
  margin-bottom: 42px;
}

body.mw-site .price-block h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 28px);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

body.mw-site .price-block h2::before {
  content: "";
  width: 5px;
  height: 24px;
  border-radius: 3px;
  background: var(--red);
  flex: none;
}

body.mw-site .price-table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

body.mw-site .price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

body.mw-site .price-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: left;
  padding: 14px 18px;
}

body.mw-site .price-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  vertical-align: top;
}

body.mw-site .price-table tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

body.mw-site .price-table tbody td:nth-child(3) {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

body.mw-site .price-foot {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

/* --- Obszar dzialania (24h) --- */
body.mw-site .area {
  background: var(--bg-soft);
}

body.mw-site .area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

body.mw-site .area-copy h2 {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  margin-top: 4px;
}

body.mw-site .area-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-top: 16px;
}

body.mw-site .area-media {
  margin-top: 26px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

body.mw-site .area-media .scene svg {
  width: 100%;
  height: auto;
  display: block;
}

body.mw-site .area-lists h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}

body.mw-site .area-lists h3:not(:first-child) {
  margin-top: 28px;
}

body.mw-site .area-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.mw-site .area-chips li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .15s, color .15s;
}

body.mw-site .area-chips li:hover {
  border-color: var(--red);
  color: var(--red);
}

body.mw-site .area-chips--muted li {
  font-weight: 500;
  color: var(--muted);
}

/* --- Responsywnosc podstron --- */
@media (max-width: 960px) {
  body.mw-site .page-hero__grid,
  body.mw-site .area-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body.mw-site .page-hero__media {
    order: -1;
  }

  body.mw-site .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body.mw-site .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  body.mw-site .service-row__num {
    padding-top: 12px;
  }

  body.mw-site .price-table thead {
    display: none;
  }

  body.mw-site .price-table,
  body.mw-site .price-table tbody,
  body.mw-site .price-table tr,
  body.mw-site .price-table td {
    display: block;
    width: 100%;
  }

  body.mw-site .price-table tr {
    padding: 8px 4px;
    border-top: 1px solid var(--line);
  }

  body.mw-site .price-table tbody tr:first-child {
    border-top: none;
  }

  body.mw-site .price-table tbody td {
    border-top: none;
    padding: 6px 14px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  body.mw-site .price-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
    font-size: 13px;
  }

  body.mw-site .price-table tbody td:nth-child(3) {
    text-align: right;
  }
}

@media (max-width: 460px) {
  body.mw-site .steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FORMULARZ — honeypot, spinner (bez przeskoku) i nakladka sukcesu
   ========================================================================== */

body.mw-site .mw-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

body.mw-site .form-card {
  position: relative;
}

body.mw-site .mw-submit {
  position: relative;
}

body.mw-site .mw-submit .btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  animation: mw-spin .7s linear infinite;
}

body.mw-site .mw-submit.is-loading .btn-label {
  visibility: hidden;
}

body.mw-site .mw-submit.is-loading .btn-spinner {
  display: block;
}

body.mw-site .mw-submit[disabled] {
  cursor: progress;
  opacity: .92;
}

@keyframes mw-spin {
  to {
    transform: rotate(360deg);
  }
}

body.mw-site .mw-form-feedback {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

body.mw-site .mw-form-feedback.is-error {
  color: var(--red);
}

body.mw-site .form-success {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}

body.mw-site .form-card.is-sent .form-success {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.mw-site .form-success__ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffe6e8;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

body.mw-site .form-success__ic svg {
  width: 32px;
  height: 32px;
  color: var(--red);
}

body.mw-site .form-success h3 {
  font-size: 24px;
  font-weight: 800;
}

body.mw-site .form-success p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 26em;
}
