:root {
  --mm-navy-950: #031c34;
  --mm-navy-900: #052b50;
  --mm-navy-800: #073c6c;
  --mm-blue-700: #0b568e;
  --mm-blue-100: #e7f1f8;
  --mm-blue-050: #f3f8fc;
  --mm-orange: #f7931e;
  --mm-orange-dark: #dc7610;
  --mm-orange-soft: #fff1df;
  --mm-green: #22c763;
  --mm-white: #fff;
  --mm-ink: #19334d;
  --mm-muted: #5d7185;
  --mm-border: #dce7f0;
  --mm-shadow: 0 18px 55px rgba(4, 38, 69, .11);
  --mm-shadow-sm: 0 10px 28px rgba(4, 38, 69, .09);
  --mm-radius-lg: 26px;
  --mm-radius: 16px;
  --mm-radius-sm: 10px;
  --mm-container: 1180px;
  --mm-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--mm-ink);
  background: var(--mm-white);
  font-family: var(--mm-font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mm-blue-700); text-decoration: none; }
a:hover { color: var(--mm-orange-dark); }
button,
input,
textarea,
select { font: inherit; }
button { cursor: pointer; }
h1,
h2,
h3,
h4,
p { margin-top: 0; }
h1,
h2,
h3,
h4 { color: var(--mm-navy-900); line-height: 1.16; letter-spacing: -.035em; }
h1 { font-size: clamp(2.45rem, 5.5vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.28rem; }
ul,
ol { margin-top: 0; }
::selection { background: var(--mm-orange); color: #fff; }

.container { width: min(calc(100% - 40px), var(--mm-container)); margin-inline: auto; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus,
.skip-link:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  top: 12px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  color: var(--mm-white);
  background: var(--mm-navy-950);
  border-radius: 8px;
}
.icon { width: 1.2em; height: 1.2em; fill: currentColor; flex: 0 0 auto; }
.svg-icon {
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  flex: 0 0 auto;
  color: inherit;
  background-color: currentColor;
  -webkit-mask: var(--mm-icon) center / contain no-repeat;
  mask: var(--mm-icon) center / contain no-repeat;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid var(--mm-orange);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #ff9e2b, var(--mm-orange-dark));
  box-shadow: 0 10px 25px rgba(247, 147, 30, .24);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(247, 147, 30, .32);
}
.button:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
button:focus-visible { outline: 3px solid rgba(247, 147, 30, .55); outline-offset: 3px; }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .82rem; }
.button--whatsapp { border-color: var(--mm-green); background: var(--mm-green); box-shadow: 0 10px 25px rgba(34, 199, 99, .23); }
.button--whatsapp:hover { background: #19ad53; box-shadow: 0 14px 28px rgba(34, 199, 99, .32); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); box-shadow: none; backdrop-filter: blur(8px); }
.button--ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.16); }
.button--outline { color: var(--mm-navy-900); border-color: var(--mm-border); background: #fff; box-shadow: none; }
.button--outline:hover { color: var(--mm-navy-900); border-color: var(--mm-orange); background: var(--mm-orange-soft); }
.button--light { color: var(--mm-navy-900); border-color: #fff; background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.button--light:hover { color: var(--mm-navy-900); background: var(--mm-orange-soft); }
.button--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--mm-orange-dark); font-weight: 800; }
.text-link .icon { transition: transform .2s ease; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link--large { font-size: 1.02rem; }

.site-topbar { color: #dceafa; background: var(--mm-navy-950); font-size: .75rem; }
.site-topbar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-topbar p,
.site-topbar a { display: flex; align-items: center; gap: 7px; margin: 0; color: inherit; }
.site-topbar a:hover { color: #fff; }
.site-topbar__links { display: flex; gap: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: #fff;
  background: rgba(5, 43, 80, .96);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
body.admin-bar .site-header { top: 32px; }
.site-header.is-scrolled { background: rgba(3, 28, 52, .98); box-shadow: 0 12px 34px rgba(3, 28, 52, .2); }
.site-header__inner { min-height: 86px; display: flex; align-items: center; gap: 30px; }
.site-branding { flex: 0 0 auto; }
.site-logo,
.custom-logo-link { display: block; }
.site-logo img,
.custom-logo { width: auto; height: 62px; object-fit: contain; }
.primary-navigation { margin-left: auto; }
.primary-navigation .menu,
.primary-navigation ul { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.primary-navigation li { position: relative; }
.nav-link,
.primary-navigation a {
  display: block;
  padding: 12px 11px;
  color: rgba(255,255,255,.88);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.nav-link:hover,
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a { color: #fff; }
.primary-navigation .current-menu-item > a::after,
.primary-navigation a:hover::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--mm-orange);
}
.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  display: block;
  visibility: hidden;
  opacity: 0;
  padding: 10px;
  border-radius: 12px;
  background: var(--mm-navy-950);
  box-shadow: var(--mm-shadow);
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: none; }
.primary-navigation .sub-menu a { padding: 9px 12px; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; padding: 8px; color: #fff; border: 0; background: transparent; }
.menu-toggle .icon { width: 28px; height: 28px; }
.menu-toggle__close { display: none; }
.site-header.is-menu-open .menu-toggle__open { display: none; }
.site-header.is-menu-open .menu-toggle__close { display: inline-flex; }

.hero { position: relative; min-height: 640px; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--mm-navy-950) 0%, var(--mm-navy-900) 48%, #0a5488 100%); }
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 90px; background: linear-gradient(to top, rgba(3,28,52,.36), transparent); pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(5px); pointer-events: none; }
.hero__glow--one { width: 520px; height: 520px; right: -170px; top: -190px; background: rgba(56, 164, 221, .18); }
.hero__glow--two { width: 380px; height: 380px; left: 35%; bottom: -260px; background: rgba(247, 147, 30, .16); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.26fr) minmax(350px, .74fr); align-items: center; gap: 32px; min-height: 640px; padding-block: 58px; }
.hero__content { max-width: 790px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; color: var(--mm-orange-dark); font-size: .76rem; font-weight: 900; letter-spacing: .105em; text-transform: uppercase; }
.eyebrow--light { color: #ffb45b; }
.hero h1 { max-width: 790px; margin-bottom: 27px; color: #fff; font-size: clamp(2.8rem, 4.15vw, 4rem); line-height: 1.13; letter-spacing: -.025em; }
.hero__lead { max-width: 650px; margin-bottom: 30px; color: #d7e8f7; font-size: clamp(1.03rem, 1.8vw, 1.22rem); line-height: 1.7; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 13px 24px; margin: 30px 0 0; padding: 0; list-style: none; color: #ddecf9; font-size: .82rem; font-weight: 700; }
.hero__proof li { display: flex; align-items: center; gap: 7px; }
.hero__proof .icon { color: #66e39b; }
.hero__visual { position: relative; align-self: center; min-height: 500px; display: flex; align-items: center; justify-content: center; }
.hero__image-wrap { position: relative; width: min(100%, 525px); }
.hero__image-wrap::before { content: ""; position: absolute; inset: 16% 4% 5%; z-index: -1; border: 1px solid rgba(255,255,255,.18); border-radius: 50% 50% 28% 28%; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.03)); }
.hero__image-wrap img { width: 100%; max-height: 545px; object-fit: contain; object-position: center; filter: drop-shadow(0 30px 32px rgba(0,0,0,.18)); }
.hero-badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: 11px; min-width: 190px; padding: 12px 15px; color: var(--mm-ink); border: 1px solid rgba(255,255,255,.8); border-radius: 13px; background: rgba(255,255,255,.93); box-shadow: 0 18px 35px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.hero-badge > span { width: 39px; height: 39px; display: grid; place-items: center; color: #fff; border-radius: 10px; background: var(--mm-orange); }
.hero-badge strong,
.hero-badge small { display: block; line-height: 1.3; }
.hero-badge strong { color: var(--mm-navy-900); font-size: .79rem; }
.hero-badge small { color: var(--mm-muted); font-size: .68rem; }
.hero-badge--top { top: 60px; right: -8px; }
.hero-badge--bottom { bottom: 54px; left: -18px; }

.authority-strip { position: relative; z-index: 5; color: #fff; background: var(--mm-orange); }
.authority-strip__grid { min-height: 130px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: stretch; }
.authority-strip__highlight { position: relative; display: flex; flex-direction: column; justify-content: center; padding-right: 60px; }
.authority-strip__highlight::after { content: ""; position: absolute; top: 0; right: 0; width: 100vw; height: 100%; z-index: -1; background: var(--mm-navy-900); }
.authority-strip__highlight strong { font-size: clamp(1.35rem, 2.4vw, 2.1rem); line-height: 1.15; }
.authority-strip__highlight span { color: #c7ddee; font-size: .82rem; }
.authority-strip__copy { display: grid; grid-template-columns: .62fr 1.38fr; align-items: center; gap: 30px; padding: 24px 0 24px 55px; }
.authority-strip__copy strong { font-size: 1.22rem; line-height: 1.25; }
.authority-strip__copy p { margin: 0; font-size: .82rem; line-height: 1.6; }

.section { padding-block: clamp(72px, 9vw, 118px); }
.section--white { background: #fff; }
.section--soft { background: var(--mm-blue-050); }
.section-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-heading--left { margin-left: 0; text-align: left; }
.section-heading .eyebrow { justify-content: center; }
.section-heading--left .eyebrow { justify-content: flex-start; }
.section-heading h2 { margin-bottom: 16px; }
.section-heading > p:not(.eyebrow) { max-width: 680px; margin: 0 auto 18px; color: var(--mm-muted); }
.section-heading--left > p:not(.eyebrow) { margin-left: 0; }
.heading-line { width: 64px; height: 5px; margin: 24px auto 0; border-radius: 5px; background: var(--mm-orange); }
.section-heading--left .heading-line { margin-left: 0; }
.section-heading--light h2 { color: #fff; }
.section-heading--light > p:not(.eyebrow) { color: #c9deef; }
.section-cta { margin-top: 42px; text-align: center; }

.split-intro { display: grid; grid-template-columns: .87fr 1.13fr; gap: clamp(45px, 7vw, 90px); align-items: start; }
.split-intro .section-heading { margin-bottom: 0; }
.split-intro__copy { padding-top: 14px; }
.split-intro__copy p { color: var(--mm-muted); font-size: 1.05rem; line-height: 1.85; }
.split-intro__copy p:first-child { color: var(--mm-ink); font-size: 1.16rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { display: grid; grid-template-columns: 58px 1fr; gap: 16px; min-height: 172px; padding: 24px; border: 1px solid var(--mm-border); border-radius: var(--mm-radius); background: #fff; box-shadow: 0 8px 24px rgba(4,38,69,.04); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card:hover { transform: translateY(-5px); border-color: #bfd4e5; box-shadow: var(--mm-shadow-sm); }
.feature-card__icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--mm-blue-700); border-radius: 14px; background: var(--mm-blue-100); }
.feature-card__icon .svg-icon { width: 28px; height: 28px; }
.feature-card h3 { margin: 3px 0 8px; font-size: 1.05rem; letter-spacing: -.02em; }
.feature-card p { margin: 0; color: var(--mm-muted); font-size: .85rem; line-height: 1.65; }

.services-section { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--mm-navy-950), var(--mm-navy-800)); }
.services-section::before { content: ""; position: absolute; width: 500px; height: 500px; top: -300px; right: -180px; border-radius: 50%; background: rgba(61, 160, 215, .16); }
.services-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.services-grid > * { min-width: 0; }
.service-card { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; min-height: 340px; padding: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--mm-radius); background: rgba(255,255,255,.97); box-shadow: 0 20px 45px rgba(0,0,0,.13); transition: transform .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(247,147,30,.6); }
.service-card__icon { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 24px; color: var(--mm-navy-900); border-radius: 18px; background: linear-gradient(145deg, #e9f3fa, #cfe3f2); }
.service-card__icon .svg-icon { width: 32px; height: 32px; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { flex: 1; color: var(--mm-muted); font-size: .9rem; line-height: 1.7; }
.service-card .text-link { flex-wrap: wrap; }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin: 0; padding: 0; list-style: none; }
.process-grid::before { content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--mm-blue-100), var(--mm-orange), var(--mm-blue-100)); }
.process-card { position: relative; z-index: 1; padding: 0 14px; text-align: center; }
.process-card > span { position: absolute; top: -10px; right: calc(50% - 55px); width: 27px; height: 27px; display: grid; place-items: center; color: #fff; border: 3px solid #fff; border-radius: 50%; background: var(--mm-orange); box-shadow: 0 5px 12px rgba(247,147,30,.28); font-size: .59rem; font-weight: 900; }
.process-card__icon { width: 88px; height: 88px; display: grid; place-items: center; margin: 0 auto 24px; color: var(--mm-navy-900); border: 8px solid #fff; border-radius: 50%; background: var(--mm-blue-100); box-shadow: 0 0 0 1px var(--mm-border), var(--mm-shadow-sm); }
.process-card__icon .svg-icon { width: 32px; height: 32px; }
.process-card h3 { margin-bottom: 9px; font-size: 1.08rem; }
.process-card p { margin: 0; color: var(--mm-muted); font-size: .87rem; }

.coverage-section { position: relative; overflow: hidden; padding-block: clamp(75px, 9vw, 115px); color: #fff; background: linear-gradient(125deg, #0a4f82, var(--mm-navy-900)); }
.coverage-section::after { content: ""; position: absolute; inset: 0; opacity: .25; background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1px); background-size: 24px 24px; pointer-events: none; }
.coverage-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.coverage-visual { position: relative; min-height: 470px; display: grid; place-items: center; align-content: center; gap: 18px; }
.coverage-map-wrap { position: relative; width: min(100%, 430px); min-height: 390px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.13), rgba(255,255,255,.025) 67%, transparent 68%); }
.coverage-map-wrap::before,
.coverage-map-wrap::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.coverage-map-wrap::before { inset: 34px; border: 1px dashed rgba(255,255,255,.17); }
.coverage-map-wrap::after { width: 11px; height: 11px; right: 47px; top: 92px; background: var(--mm-orange); box-shadow: 0 0 0 7px rgba(247,147,30,.14); }
.coverage-map-wrap img { position: relative; z-index: 1; width: min(78%, 330px); max-height: 345px; object-fit: contain; filter: drop-shadow(0 20px 24px rgba(0,0,0,.24)); }
.coverage-map-caption { position: relative; z-index: 2; min-width: 260px; display: flex; align-items: center; gap: 12px; margin: -40px 0 0; padding: 13px 17px; color: var(--mm-ink); border: 1px solid rgba(255,255,255,.8); border-radius: 13px; background: rgba(255,255,255,.96); box-shadow: 0 16px 32px rgba(0,0,0,.2); }
.coverage-map-caption > .svg-icon { width: 35px; height: 35px; color: var(--mm-orange); }
.coverage-map-caption strong,
.coverage-map-caption span { display: block; line-height: 1.35; }
.coverage-map-caption strong { color: var(--mm-navy-900); font-size: .8rem; }
.coverage-map-caption span { color: var(--mm-muted); font-size: .69rem; }
.coverage-content h2 { color: #fff; }
.coverage-content > p:not(.eyebrow) { color: #d6e7f4; font-size: 1.03rem; }
.check-list { display: grid; gap: 13px; margin: 28px 0 32px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: #d8e8f4; font-size: .91rem; }
.check-list li > .icon { width: 22px; height: 22px; margin-top: 3px; padding: 4px; color: #fff; border-radius: 50%; background: var(--mm-green); }
.check-list strong { color: #fff; }

.carousel { position: relative; padding-inline: 54px; }
.client-track { display: flex; gap: 18px; overflow-x: auto; padding: 8px 4px 20px; scroll-behavior: smooth; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #c8d8e5 transparent; }
.client-logo { min-width: 190px; height: 126px; display: grid; place-items: center; padding: 20px; overflow: hidden; scroll-snap-align: start; border: 1px solid var(--mm-border); border-radius: 14px; background: #fff; }
.client-logo img { width: 100%; height: 82px; object-fit: contain; filter: grayscale(1); opacity: .78; transition: filter .25s ease, opacity .25s ease; }
.client-logo:hover img { filter: grayscale(0); opacity: 1; }
.client-logo strong { color: var(--mm-navy-900); text-align: center; }
.carousel__button { position: absolute; top: 50%; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--mm-navy-900); border: 1px solid var(--mm-border); border-radius: 50%; background: #fff; box-shadow: var(--mm-shadow-sm); transform: translateY(-50%); }
.carousel__button:hover { color: #fff; border-color: var(--mm-orange); background: var(--mm-orange); }
.carousel__button--prev { left: 0; }
.carousel__button--next { right: 0; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { position: relative; padding: 30px; border: 1px solid var(--mm-border); border-radius: var(--mm-radius); background: #fff; box-shadow: var(--mm-shadow-sm); }
.testimonial-card__quote { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 20px; color: #fff; border-radius: 14px; background: var(--mm-orange); }
.testimonial-card__text { min-height: 135px; color: var(--mm-muted); font-size: .93rem; font-style: italic; }
.testimonial-card__person { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--mm-border); }
.testimonial-card__person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testimonial-card__person strong,
.testimonial-card__person span { display: block; line-height: 1.35; }
.testimonial-card__person strong { color: var(--mm-navy-900); }
.testimonial-card__person span { color: var(--mm-muted); font-size: .78rem; }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.posts-grid--two { grid-template-columns: repeat(2, 1fr); }
.post-card { overflow: hidden; border: 1px solid var(--mm-border); border-radius: var(--mm-radius); background: #fff; box-shadow: 0 10px 34px rgba(4,38,69,.07); transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--mm-shadow); }
.post-card__image { height: 220px; display: block; overflow: hidden; background: var(--mm-blue-100); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.post-card:hover .post-card__image img { transform: scale(1.04); }
.post-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--mm-blue-700); background: linear-gradient(145deg, var(--mm-blue-100), #f7fbfe); }
.post-card__placeholder .icon { width: 52px; height: 52px; }
.post-card__body { padding: 25px; }
.post-card__category { display: inline-flex; margin-bottom: 13px; padding: 5px 10px; color: var(--mm-orange-dark); border-radius: 30px; background: var(--mm-orange-soft); font-size: .67rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.post-card__category:hover { color: var(--mm-navy-900); }
.post-card__title { margin-bottom: 10px; font-size: 1.28rem; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--mm-orange-dark); }
.post-card__meta { margin-bottom: 12px; color: var(--mm-muted); font-size: .73rem; }
.post-card__body > p { color: var(--mm-muted); font-size: .87rem; line-height: 1.7; }
.post-meta__item { display: inline-flex; align-items: center; gap: 6px; }
.post-meta__item + .post-meta__item { margin-left: 18px; }

.faq-section { background: linear-gradient(145deg, #fff, var(--mm-blue-050)); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid var(--mm-border); border-radius: 13px; background: #fff; box-shadow: 0 5px 18px rgba(4,38,69,.04); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 22px; color: var(--mm-navy-900); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; border-radius: 50%; background: var(--mm-orange); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details > div { padding: 0 22px 20px; }
.faq-list details p { margin: 0; color: var(--mm-muted); font-size: .9rem; }

.payment-strip { padding-block: 27px; color: var(--mm-navy-900); border-block: 1px solid #c9d9e7; background: #dfeaf3; }
.payment-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.payment-strip strong,
.payment-strip span { display: block; }
.payment-strip strong { font-size: 1.05rem; }
.payment-strip span { color: var(--mm-muted); font-size: .78rem; }
.payment-strip ul { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; margin: 0; padding: 0; list-style: none; }
.payment-strip li { padding: 7px 12px; color: var(--mm-navy-800); border: 1px solid rgba(5,43,80,.12); border-radius: 8px; background: rgba(255,255,255,.72); font-size: .72rem; font-weight: 900; }

.contact-section { position: relative; overflow: hidden; padding-block: clamp(80px, 10vw, 125px); color: #fff; background: linear-gradient(130deg, var(--mm-navy-950), var(--mm-navy-800)); }
.contact-section::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(rgba(255,255,255,.7) 1px, transparent 1px); background-size: 26px 26px; }
.contact-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px, 8vw, 100px); align-items: center; }
.contact-content h2 { color: #fff; }
.contact-content > p:not(.eyebrow) { color: #c9deef; font-size: 1.04rem; }
.contact-list { display: grid; gap: 19px; margin: 34px 0 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; color: #d7e7f3; }
.contact-list li > .icon { width: 42px; height: 42px; padding: 11px; color: #fff; border-radius: 12px; background: rgba(255,255,255,.1); }
.contact-list strong,
.contact-list a { display: block; color: #fff; }
.contact-list strong { margin-bottom: 2px; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-list span { font-size: .89rem; }
.contact-form-wrap { padding: clamp(25px, 4vw, 42px); color: var(--mm-ink); border: 1px solid rgba(255,255,255,.65); border-radius: var(--mm-radius-lg); background: rgba(255,255,255,.98); box-shadow: 0 30px 70px rgba(0,0,0,.2); }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; margin-bottom: 6px; color: var(--mm-navy-900); font-size: .78rem; font-weight: 800; }
.form-field label span { color: #c74721; }
.form-field input,
.form-field textarea,
.form-field select { width: 100%; padding: 12px 14px; color: var(--mm-ink); border: 1px solid #ccdbe7; border-radius: 9px; background: #fff; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--mm-blue-700); box-shadow: 0 0 0 4px rgba(11,86,142,.09); }
.form-privacy { display: flex; align-items: center; gap: 8px; margin: -2px 0 0; color: var(--mm-muted); font-size: .72rem; }
.form-honeypot { position: absolute; left: -9999px; }
.form-alert { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 12px 14px; border-radius: 9px; font-size: .82rem; font-weight: 700; }
.form-alert--success { color: #0d6834; background: #e4f8ec; }
.form-alert--error { color: #9b321f; background: #ffebe7; }

.site-footer { color: #bcd0e1; background: #021728; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .75fr .85fr 1.2fr; gap: 48px; padding-block: 70px; }
.site-logo--footer img { height: 68px; }
.footer-brand p { max-width: 310px; margin: 22px 0; font-size: .84rem; }
.footer-column h2 { margin-bottom: 20px; color: #fff; font-size: 1rem; letter-spacing: -.01em; }
.footer-menu,
.footer-contact ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-menu a,
.footer-contact a { color: #bcd0e1; font-size: .82rem; }
.footer-menu a:hover,
.footer-contact a:hover { color: #fff; }
.footer-column > .menu { margin: 0; padding: 0; list-style: none; }
.footer-column > .menu a { color: #bcd0e1; font-size: .82rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; }
.footer-contact li .icon { margin-top: 5px; color: var(--mm-orange); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; border-radius: 10px; background: rgba(255,255,255,.09); }
.social-links a:hover { color: #fff; background: var(--mm-orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom__inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-bottom p { margin: 0; font-size: .72rem; }
.footer-bottom a { color: #fff; font-weight: 800; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; align-items: center; gap: 9px; min-height: 50px; padding: 10px 17px 10px 13px; color: #fff; border: 3px solid #fff; border-radius: 30px; background: var(--mm-green); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: .78rem; font-weight: 900; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { color: #fff; background: #19ad53; transform: translateY(-3px); }
.floating-whatsapp .icon { width: 26px; height: 26px; }
.back-to-top { position: fixed; right: 25px; bottom: 88px; z-index: 890; width: 42px; height: 42px; display: grid; place-items: center; visibility: hidden; opacity: 0; color: #fff; border: 0; border-radius: 50%; background: var(--mm-navy-900); box-shadow: var(--mm-shadow-sm); transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: none; }

.page-hero { color: #fff; background: linear-gradient(130deg, var(--mm-navy-950), var(--mm-blue-700)); }
.page-hero--compact { padding-block: 75px; }
.page-hero h1 { max-width: 920px; margin-bottom: 12px; color: #fff; font-size: clamp(2.2rem, 5vw, 4rem); }
.page-hero p:not(.eyebrow),
.page-hero__description { max-width: 720px; margin: 0; color: #cee0ee; }
.content-with-sidebar,
.single-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 42px; align-items: start; }
.sidebar { display: grid; gap: 22px; }
.widget { padding: 24px; border: 1px solid var(--mm-border); border-radius: var(--mm-radius); background: #fff; box-shadow: 0 7px 25px rgba(4,38,69,.05); }
.widget-title { margin-bottom: 18px; font-size: 1.08rem; }
.widget ul { margin: 0; padding: 0; list-style: none; }
.widget li { display: flex; justify-content: space-between; padding-block: 8px; border-bottom: 1px solid #edf2f6; font-size: .84rem; }
.widget li:last-child { border-bottom: 0; }
.widget--cta { color: #d5e6f4; border: 0; background: linear-gradient(145deg, var(--mm-navy-900), var(--mm-blue-700)); }
.widget--cta h2 { color: #fff; }
.widget--cta p { font-size: .85rem; }
.widget--cta__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 17px; color: #fff; border-radius: 13px; background: var(--mm-orange); }
.search-form { display: flex; overflow: hidden; border: 1px solid var(--mm-border); border-radius: 9px; background: #fff; }
.search-field { min-width: 0; flex: 1; padding: 11px 13px; border: 0; outline: 0; }
.search-submit { width: 46px; display: grid; place-items: center; color: #fff; border: 0; background: var(--mm-orange); }
.navigation.pagination { margin-top: 42px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 7px; }
.nav-links .page-numbers { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 11px; color: var(--mm-navy-900); border: 1px solid var(--mm-border); border-radius: 8px; background: #fff; font-size: .8rem; font-weight: 800; }
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover { color: #fff; border-color: var(--mm-orange); background: var(--mm-orange); }
.empty-state { padding: 60px 30px; text-align: center; border: 1px dashed #bdcfdd; border-radius: var(--mm-radius); background: var(--mm-blue-050); }
.empty-state > .icon { width: 50px; height: 50px; color: var(--mm-blue-700); }

.page-content,
.single-main { max-width: 900px; }
.page-featured-image,
.single-featured-image { overflow: hidden; margin: 0 0 42px; border-radius: var(--mm-radius); box-shadow: var(--mm-shadow-sm); }
.entry-content { color: #324b62; font-size: 1.04rem; line-height: 1.85; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { margin-top: 2.1em; font-size: 2rem; }
.entry-content h3 { margin-top: 1.8em; font-size: 1.5rem; }
.entry-content a { text-decoration: underline; text-decoration-color: rgba(247,147,30,.5); text-underline-offset: 3px; }
.entry-content blockquote { margin: 34px 0; padding: 22px 28px; color: var(--mm-navy-900); border-left: 5px solid var(--mm-orange); border-radius: 0 12px 12px 0; background: var(--mm-orange-soft); font-size: 1.12rem; font-weight: 600; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th,
.entry-content td { padding: 10px 12px; border: 1px solid var(--mm-border); text-align: left; }
.single-header { padding-block: 78px; color: #fff; background: linear-gradient(130deg, var(--mm-navy-950), var(--mm-blue-700)); }
.single-header__inner { max-width: 920px; }
.single-header h1 { margin-bottom: 22px; color: #fff; font-size: clamp(2.35rem, 5.6vw, 4.65rem); }
.single-header__excerpt { max-width: 800px; color: #d0e2ef; font-size: 1.08rem; }
.single-header__meta { display: flex; flex-wrap: wrap; gap: 10px 22px; color: #d5e5f1; font-size: .78rem; }
.single-header__meta .post-meta__item + .post-meta__item { margin-left: 0; }
.single-footer { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--mm-border); }
.tag-links { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-links a { padding: 6px 10px; color: var(--mm-muted); border-radius: 7px; background: var(--mm-blue-050); font-size: .74rem; }
.post-navigation { margin-top: 34px; }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; }
.post-navigation a { display: block; padding: 18px; border: 1px solid var(--mm-border); border-radius: 11px; }
.post-navigation span,
.post-navigation strong { display: block; }
.post-navigation span { color: var(--mm-muted); font-size: .72rem; }
.post-navigation strong { color: var(--mm-navy-900); font-size: .88rem; }
.comments-area { margin-top: 50px; }
.comments-title { font-size: 1.6rem; }
.comment-list { padding: 0; list-style: none; }
.comment-body { margin-bottom: 18px; padding: 22px; border: 1px solid var(--mm-border); border-radius: 12px; }
.comment-author img { border-radius: 50%; }
.comment-respond input:not([type="submit"]),
.comment-respond textarea { width: 100%; padding: 11px 13px; border: 1px solid var(--mm-border); border-radius: 8px; }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; }
.form-submit input { padding: 12px 22px; color: #fff; border: 0; border-radius: 9px; background: var(--mm-orange); font-weight: 800; }
.error-page { min-height: 680px; display: grid; place-items: center; padding-block: 80px; background: var(--mm-blue-050); }
.error-page__inner { max-width: 720px; text-align: center; }
.error-code { display: block; color: var(--mm-blue-100); font-size: clamp(7rem, 20vw, 12rem); font-weight: 900; line-height: .9; letter-spacing: -.08em; }
.error-page__actions { margin: 28px 0; }
.error-page .search-form { max-width: 470px; margin: 0 auto; }

@media (max-width: 1120px) {
  .site-header__inner { gap: 18px; }
  .primary-navigation a { padding-inline: 8px; font-size: .75rem; }
  .header-cta { display: none; }
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: 28px; }
  .hero h1 { font-size: clamp(2.65rem, 5vw, 3.55rem); }
  .hero__visual { min-height: 465px; }
  .hero-badge--top { right: 0; }
  .hero-badge--bottom { left: 0; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .9fr; }
  .footer-contact { grid-column: span 3; }
}

@media (max-width: 900px) {
  body.admin-bar .site-header { top: 46px; }
  .site-topbar__links a:first-child { display: none; }
  .site-header__inner { min-height: 76px; }
  .site-logo img,
  .custom-logo { height: 55px; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .primary-navigation { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - 112px); overflow-y: auto; visibility: hidden; opacity: 0; margin: 0; padding: 16px 20px 24px; border-top: 1px solid rgba(255,255,255,.1); background: var(--mm-navy-950); transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-header.is-menu-open .primary-navigation { visibility: visible; opacity: 1; transform: none; }
  .primary-navigation .menu,
  .primary-navigation ul { display: block; }
  .primary-navigation a { padding: 13px 10px; font-size: .9rem; border-bottom: 1px solid rgba(255,255,255,.07); }
  .primary-navigation a::after { display: none; }
  .primary-navigation .sub-menu { position: static; visibility: visible; opacity: 1; display: block; padding: 0 0 0 15px; box-shadow: none; transform: none; }
  .hero__grid { grid-template-columns: 1fr; min-height: auto; padding-block: 70px 0; }
  .hero__content { max-width: 720px; text-align: center; margin-inline: auto; }
  .hero__content .eyebrow { justify-content: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions,
  .hero__proof { justify-content: center; }
  .hero__visual { width: min(100%, 570px); min-height: 430px; margin: 10px auto 0; }
  .hero-badge--top { top: 60px; }
  .authority-strip__grid { grid-template-columns: 1fr; }
  .authority-strip__highlight { min-height: 105px; padding-right: 0; text-align: center; }
  .authority-strip__highlight::after { right: 50%; transform: translateX(50%); }
  .authority-strip__copy { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; text-align: center; }
  .split-intro,
  .faq-grid,
  .coverage-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .split-intro { gap: 35px; }
  .split-intro .section-heading,
  .faq-grid .section-heading { max-width: 760px; text-align: center; margin-inline: auto; }
  .split-intro .section-heading .eyebrow,
  .faq-grid .section-heading .eyebrow { justify-content: center; }
  .split-intro .heading-line,
  .faq-grid .heading-line { margin-left: auto; }
  .features-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 22px; }
  .process-grid::before { display: none; }
  .coverage-grid { gap: 25px; }
  .coverage-visual { width: min(100%, 510px); max-width: 510px; margin: 0 auto; }
  .contact-grid { gap: 50px; }
  .contact-content { max-width: 680px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card__text { min-height: auto; }
  .content-with-sidebar,
  .single-layout { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: repeat(2, 1fr); }
  .sidebar .widget--cta { grid-column: span 2; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 30px), var(--mm-container)); }
  .site-topbar__inner { justify-content: center; }
  .site-topbar__inner > p { display: none; }
  .site-topbar__links { width: 100%; justify-content: center; }
  .hero__grid { padding-top: 55px; }
  .hero h1 { font-size: clamp(2.25rem, 10.2vw, 3.25rem); line-height: 1.14; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; justify-content: center; text-align: left; }
  .hero__visual { min-height: 350px; }
  .hero-badge { min-width: 168px; padding: 10px; }
  .hero-badge--top { top: 30px; right: -5px; }
  .hero-badge--bottom { bottom: 30px; left: -5px; }
  .features-grid,
  .services-grid,
  .posts-grid,
  .posts-grid--two,
  .process-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .service-card { min-height: 0; }
  .process-grid { gap: 42px; }
  .coverage-content { text-align: center; }
  .coverage-content .eyebrow { justify-content: center; }
  .check-list { text-align: left; }
  .carousel { padding-inline: 43px; }
  .client-logo { min-width: 165px; }
  .payment-strip__inner { flex-direction: column; text-align: center; }
  .payment-strip ul { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom__inner { min-height: 90px; flex-direction: column; justify-content: center; text-align: center; gap: 4px; }
  .sidebar { grid-template-columns: 1fr; }
  .sidebar .widget--cta { grid-column: auto; }
  .post-navigation .nav-links { grid-template-columns: 1fr; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { width: 58px; height: 58px; justify-content: center; padding: 0; border-radius: 50%; }
  .back-to-top { right: 28px; bottom: 88px; }
}

@media (max-width: 480px) {
  .site-logo img,
  .custom-logo { height: 48px; max-width: 180px; }
  .section { padding-block: 66px; }
  .hero__visual { min-height: 315px; }
  .hero-badge { display: none; }
  .feature-card { grid-template-columns: 48px 1fr; padding: 20px; }
  .feature-card__icon { width: 46px; height: 46px; }
  .service-card { padding: 24px; }
  .coverage-map-wrap { min-height: 330px; }
  .coverage-map-wrap img { width: min(78%, 285px); max-height: 300px; }
  .coverage-map-caption { margin-top: -33px; }
  .contact-form-wrap { border-radius: 18px; }
  .page-hero--compact,
  .single-header { padding-block: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
