/* =========================================================
   Evjet Mobile Shell — independent mobile UI
   Desktop (.d-shell) untouched. Active ≤900px only.
   ========================================================= */

.m-shell {
  display: none !important;
}

@media (max-width: 900px) {
  .d-shell {
    display: none !important;
  }

  /* Neutralize legacy mobile shell padding from style.css */
  body:has(#mShell) {
    padding-bottom: 0 !important;
    background: var(--m-bg, #f3f5f7) !important;
  }

  .m-shell {
    display: flex !important;
    flex-direction: column;
    min-height: 100dvh;
    background: var(--m-bg, #f3f5f7);
    color: var(--ink, #0e1c2a);
    font-family: var(--font-body, "DM Sans", system-ui, sans-serif);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  :root {
    --m-bg: #f3f5f7;
    --m-surface: #ffffff;
    --m-ink: #0e1c2a;
    --m-muted: #5a6b7a;
    --m-line: rgba(14, 28, 42, 0.08);
    --m-teal: #1a7a62;
    --m-teal-deep: #145c4a;
    --m-radius: 20px;
    --m-radius-sm: 14px;
    --m-pad: 20px;
    --m-header-h: 64px;
    --m-header-h-compact: 56px;
    --m-tab-h: 64px;
    --m-shadow: 0 12px 32px rgba(14, 28, 42, 0.08);
    --m-shadow-lg: 0 20px 48px rgba(14, 28, 42, 0.12);
    --header-h: 64px;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--m-bg) !important;
    padding-bottom: 0 !important;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
  }

  body.m-menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  /* ---------- Header ---------- */
  .m-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--m-header-h);
    padding: 0 var(--m-pad);
    padding-top: env(safe-area-inset-top, 0px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid transparent;
    box-shadow: 0 1px 0 rgba(14, 28, 42, 0.06);
    transition: height 0.25s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: height;
  }

  .m-header.is-compact {
    height: var(--m-header-h-compact);
    box-shadow: 0 8px 24px rgba(14, 28, 42, 0.06);
  }

  .m-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
  }

  .m-header__mark {
    width: 36px;
    height: 36px;
    color: var(--m-teal);
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .m-header.is-compact .m-header__mark {
    width: 32px;
    height: 32px;
  }

  .m-header__mark svg {
    display: block;
    width: 100%;
    height: 100%;
  }

  .m-header__name {
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--m-ink);
  }

  .m-header__tag {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--m-muted);
    letter-spacing: 0.02em;
  }

  .m-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .m-icon-btn {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 14px;
    background: #eef2f4;
    color: var(--m-ink);
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, transform 0.2s;
  }

  .m-icon-btn:active {
    background: #e2e8ec;
    transform: scale(0.96);
  }

  .m-icon-btn--teal {
    background: rgba(26, 122, 98, 0.12);
    color: var(--m-teal-deep);
  }

  .m-burger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3.5px auto;
    background: currentColor;
    border-radius: 2px;
  }

  /* ---------- Drawer ---------- */
  .m-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    visibility: hidden;
  }

  .m-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .m-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 28, 42, 0.42);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .m-drawer.is-open .m-drawer__backdrop {
    opacity: 1;
  }

  .m-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 88vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -24px 0 64px rgba(14, 28, 42, 0.2);
    padding: calc(16px + env(safe-area-inset-top, 0px)) 20px
      calc(20px + env(safe-area-inset-bottom, 0px));
    transform: translate3d(105%, 0, 0);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .m-drawer.is-open .m-drawer__panel {
    transform: translate3d(0, 0, 0);
  }

  .m-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--m-line);
  }

  .m-drawer__title {
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 1.15rem;
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .m-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 0;
  }

  .m-drawer__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--m-ink);
    text-decoration: none;
    letter-spacing: -0.01em;
  }

  .m-drawer__link.is-active,
  .m-drawer__link:active {
    background: rgba(26, 122, 98, 0.1);
    color: var(--m-teal-deep);
  }

  .m-drawer__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin-top: 8px;
    padding: 0 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--m-teal) 0%, var(--m-teal-deep) 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.02rem;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(26, 122, 98, 0.35);
  }

  .m-drawer__foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--m-line);
  }

  .m-drawer__foot-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 64px;
    border-radius: 16px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--m-ink);
    background: #f4f6f8;
  }

  .m-drawer__foot-btn i {
    font-size: 1.2rem;
  }

  .m-drawer__foot-btn--wa {
    background: #ecf8f2;
    color: #128c7e;
  }

  .m-drawer__foot-btn--call {
    background: rgba(26, 122, 98, 0.1);
    color: var(--m-teal-deep);
  }

  /* ---------- Main ---------- */
  .m-main {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding-bottom: calc(var(--m-tab-h) + 20px + env(safe-area-inset-bottom, 0px));
    overflow-x: hidden;
  }

  .m-wrap {
    width: 100%;
    max-width: 100%;
    padding-inline: var(--m-pad);
    box-sizing: border-box;
  }

  .m-section {
    padding: 36px 0;
  }

  .m-section--tight {
    padding: 28px 0;
  }

  .m-head {
    margin-bottom: 20px;
  }

  .m-eyebrow {
    display: inline-block;
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--m-teal);
  }

  .m-head h2 {
    margin: 0 0 8px;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: clamp(1.45rem, 5.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--m-ink);
  }

  .m-head p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--m-muted);
  }

  .m-card {
    width: 100%;
    background: var(--m-surface);
    border-radius: var(--m-radius);
    box-shadow: var(--m-shadow);
    border: 1px solid var(--m-line);
    box-sizing: border-box;
  }

  .m-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
    border: 0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    transition: opacity 0.2s, transform 0.2s;
  }

  .m-btn:active {
    transform: scale(0.985);
    opacity: 0.92;
  }

  .m-btn--primary {
    background: linear-gradient(135deg, var(--m-teal) 0%, var(--m-teal-deep) 100%);
    color: #fff;
    box-shadow: 0 10px 28px rgba(26, 122, 98, 0.28);
  }

  .m-btn--ghost {
    background: #fff;
    color: var(--m-ink);
    border: 1.5px solid var(--m-line);
  }

  .m-btn--outline {
    background: transparent;
    color: var(--m-teal-deep);
    border: 1.5px solid rgba(26, 122, 98, 0.35);
  }

  .m-btn--wa {
    background: #25d366;
    color: #fff;
  }

  .m-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  /* ---------- Hero ---------- */
  .m-hero {
    padding: 8px 0 20px;
    position: relative;
  }

  .m-hero__slider {
    position: relative;
    width: 100%;
  }

  .m-hero__slide {
    display: none;
    opacity: 0;
  }

  .m-hero__slide.is-active {
    display: block;
    animation: mHeroIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes mHeroIn {
    from {
      opacity: 0;
      transform: translate3d(0, 12px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .m-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .m-hero__copy {
    min-height: 0;
  }

  .m-hero__brand {
    margin: 0;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--m-teal);
    letter-spacing: -0.01em;
  }

  .m-hero h1 {
    margin: 6px 0 10px;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: clamp(1.55rem, 6.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    color: var(--m-ink);
    max-width: 17ch;
  }

  .m-hero h1 span {
    color: var(--m-teal);
  }

  .m-hero__lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--m-muted);
  }

  .m-hero__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--m-radius);
    overflow: hidden;
    box-shadow: var(--m-shadow-lg);
    background: #dfe5ea;
  }

  .m-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14, 28, 42, 0.18) 100%);
    pointer-events: none;
  }

  .m-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .m-hero__slide.is-active .m-hero__media img {
    transform: scale(1);
  }

  .m-hero__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 18px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid var(--m-line);
    border-radius: 16px;
    box-shadow: var(--m-shadow);
  }

  .m-hero__arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: #eef2f4;
    color: var(--m-ink);
    font-size: 0.9rem;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }

  .m-hero__arrow:active {
    background: #e2e8ec;
    transform: scale(0.96);
  }

  .m-hero__index {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--m-muted);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .m-hero__index strong {
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--m-ink);
  }

  .m-hero__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
  }

  .m-hero__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 28, 42, 0.16);
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, width 0.2s;
  }

  .m-hero__dot.is-active {
    width: 22px;
    border-radius: 6px;
    background: var(--m-teal);
  }

  .m-hero__progress {
    margin-top: 10px;
    height: 3px;
    border-radius: 3px;
    background: rgba(14, 28, 42, 0.08);
    overflow: hidden;
  }

  .m-hero__progress span {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--m-teal), var(--m-teal-deep));
    transform-origin: left center;
  }

  .m-trust {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .m-trust li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 72px;
    padding: 10px 6px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--m-line);
    border-radius: var(--m-radius-sm);
    font-size: 0.68rem;
    font-weight: 650;
    line-height: 1.25;
    color: var(--m-ink);
    box-shadow: 0 4px 14px rgba(14, 28, 42, 0.04);
  }

  .m-trust i {
    font-size: 1rem;
    color: var(--m-teal);
  }

  /* ---------- Process ---------- */
  .m-process__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: mstep;
  }

  .m-process__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    width: 100%;
    padding: 18px;
    background: #fff;
    border-radius: var(--m-radius);
    border: 1px solid var(--m-line);
    box-shadow: var(--m-shadow);
    box-sizing: border-box;
    counter-increment: mstep;
  }

  .m-process__num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(26, 122, 98, 0.1);
    color: var(--m-teal-deep);
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-weight: 800;
    font-size: 0.85rem;
  }

  .m-process__item h3 {
    margin: 0 0 4px;
    font-size: 1.02rem;
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .m-process__item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--m-muted);
  }

  /* ---------- Services ---------- */
  .m-services__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .m-service {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 88px;
    padding: 16px 18px;
    background: #fff;
    border-radius: var(--m-radius);
    border: 1px solid var(--m-line);
    box-shadow: var(--m-shadow);
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
  }

  .m-service__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(26, 122, 98, 0.1);
    color: var(--m-teal);
    font-size: 1.15rem;
  }

  .m-service__body {
    flex: 1;
    min-width: 0;
  }

  .m-service__body h3 {
    margin: 0 0 4px;
    font-size: 0.98rem;
    font-weight: 750;
    letter-spacing: -0.02em;
  }

  .m-service__body p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--m-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .m-service__chev {
    flex-shrink: 0;
    color: var(--m-muted);
    opacity: 0.5;
  }

  /* ---------- About + stats ---------- */
  .m-about__text {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--m-muted);
  }

  .m-about__list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .m-about__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 550;
    line-height: 1.4;
    color: var(--m-ink);
  }

  .m-about__list i {
    margin-top: 2px;
    color: var(--m-teal);
    flex-shrink: 0;
  }

  .m-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 18px 0 0;
  }

  .m-stats__item {
    padding: 18px 16px;
    background: #fff;
    border-radius: var(--m-radius-sm);
    border: 1px solid var(--m-line);
    box-shadow: var(--m-shadow);
    text-align: center;
  }

  .m-stats__item strong {
    display: block;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--m-teal-deep);
    margin-bottom: 4px;
  }

  .m-stats__item span {
    font-size: 0.78rem;
    color: var(--m-muted);
    line-height: 1.3;
  }

  /* ---------- Quote form ---------- */
  .m-quote {
    background: linear-gradient(165deg, #0f2a24 0%, #145c4a 48%, #1a7a62 100%);
    color: #fff;
    border-radius: 0;
    padding: 40px 0;
  }

  .m-quote .m-eyebrow {
    color: rgba(255, 255, 255, 0.75);
  }

  .m-quote .m-head h2 {
    color: #fff;
  }

  .m-quote .m-head p {
    color: rgba(255, 255, 255, 0.78);
  }

  .m-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .m-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .m-field label {
    font-size: 0.82rem;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.88);
  }

  .m-field input,
  .m-field select,
  .m-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .m-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .m-field textarea {
    min-height: 120px;
    resize: vertical;
  }

  .m-field input::placeholder,
  .m-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
  }

  .m-field option {
    color: var(--m-ink);
    background: #fff;
  }

  .m-choices {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .m-choice {
    position: relative;
    min-height: 52px;
  }

  .m-choice input {
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
  }

  .m-choice span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
    min-height: 52px;
    padding: 10px 6px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
  }

  .m-choice input:checked + span {
    background: #fff;
    color: var(--m-teal-deep);
    border-color: #fff;
  }

  .m-km {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
  }

  .m-km.is-loading {
    border-color: rgba(255, 255, 255, 0.35);
    opacity: 0.9;
  }

  .m-km.is-ready {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
  }

  .m-form__note {
    margin: 4px 0 0;
    min-height: 1.2em;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .m-form .m-btn--primary {
    background: #fff;
    color: var(--m-teal-deep);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
    margin-top: 4px;
  }

  .m-field.is-hidden {
    display: none !important;
  }

  /* ---------- Gallery swipe ---------- */
  .m-gallery__viewport {
    width: 100%;
    overflow: hidden;
    border-radius: var(--m-radius);
    touch-action: pan-y;
  }

  .m-gallery__track {
    display: flex;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .m-gallery__track.is-dragging {
    transition: none;
  }

  .m-gallery__slide {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .m-gallery__slide img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--m-radius);
    background: #dfe5ea;
  }

  .m-gallery__slide figcaption {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(14, 28, 42, 0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 650;
  }

  .m-gallery__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
  }

  .m-gallery__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(14, 28, 42, 0.18);
    padding: 0;
    cursor: pointer;
  }

  .m-gallery__dot.is-active {
    background: var(--m-teal);
    transform: scale(1.15);
  }

  /* ---------- Blog ---------- */
  .m-blog__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .m-blog-card {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border-radius: var(--m-radius);
    border: 1px solid var(--m-line);
    box-shadow: var(--m-shadow);
    text-decoration: none;
    color: inherit;
  }

  .m-blog-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dfe5ea;
  }

  .m-blog-card__body {
    padding: 16px 18px 18px;
  }

  .m-blog-card time {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--m-muted);
  }

  .m-blog-card h3 {
    margin: 6px 0 8px;
    font-size: 1.05rem;
    font-weight: 750;
    letter-spacing: -0.02em;
    line-height: 1.3;
  }

  .m-blog-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--m-muted);
  }

  /* ---------- FAQ ---------- */
  .m-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .m-faq__item {
    width: 100%;
    background: #fff;
    border-radius: var(--m-radius-sm);
    border: 1px solid var(--m-line);
    box-shadow: var(--m-shadow);
    overflow: hidden;
  }

  .m-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    list-style: none;
  }

  .m-faq__item summary::-webkit-details-marker {
    display: none;
  }

  .m-faq__item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eef2f4;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--m-muted);
  }

  .m-faq__item[open] summary::after {
    content: "−";
  }

  .m-faq__item p {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--m-muted);
  }

  /* ---------- Footer ---------- */
  .m-footer {
    background: #0e1c2a;
    color: rgba(255, 255, 255, 0.88);
    padding: 36px 0 28px;
    margin: 0;
  }

  .m-footer__brand {
    margin-bottom: 20px;
  }

  .m-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none;
    color: #fff;
  }

  .m-footer__logo strong {
    display: block;
    font-family: var(--font-display, "Outfit", system-ui, sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
  }

  .m-footer__logo small {
    display: block;
    font-size: 0.72rem;
    opacity: 0.7;
  }

  .m-footer__brand > p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
  }

  .m-footer__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 24px;
  }

  .m-footer details {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .m-footer details:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .m-footer summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
  }

  .m-footer summary::-webkit-details-marker {
    display: none;
  }

  .m-footer summary::after {
    content: "+";
    opacity: 0.6;
  }

  .m-footer details[open] summary::after {
    content: "−";
  }

  .m-footer__links {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
  }

  .m-footer__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
  }

  .m-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.78rem;
  }

  .m-footer__legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
  }

  .m-footer__copy {
    margin: 12px 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
  }

  /* ---------- Tab bar ---------- */
  .m-tabbar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 200;
    height: var(--m-tab-h);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    padding: 6px;
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid rgba(14, 28, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(14, 28, 42, 0.16);
  }

  .m-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 100%;
    min-height: 48px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--m-muted);
    font-size: 0.62rem;
    font-weight: 650;
    -webkit-tap-highlight-color: transparent;
  }

  .m-tabbar__item i {
    font-size: 1.1rem;
  }

  .m-tabbar__item.is-active {
    color: var(--m-teal-deep);
    background: rgba(26, 122, 98, 0.1);
  }

  .m-tabbar__item--cta {
    color: #fff !important;
    background: linear-gradient(135deg, var(--m-teal), var(--m-teal-deep)) !important;
    box-shadow: 0 8px 20px rgba(26, 122, 98, 0.35);
  }

  .m-tabbar__item--cta span {
    font-size: 0.6rem;
  }

  /* Inner pages without full m-shell: chrome-only mode */
  body.m-chrome-only {
    padding-bottom: calc(var(--m-tab-h) + 28px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.m-chrome-only .site-top,
  body.m-chrome-only .whatsapp-float,
  body.m-chrome-only .app-tabbar,
  body.m-chrome-only .site-header {
    display: none !important;
  }

  body.m-chrome-only .m-shell--chrome {
    display: contents !important;
  }

  body.m-chrome-only .m-header {
    display: flex !important;
  }

  body.m-chrome-only .m-drawer {
    display: block !important;
  }

  body.m-chrome-only .m-tabbar {
    display: grid !important;
  }

  body.m-chrome-only main,
  body.m-chrome-only .page,
  body.m-chrome-only .content {
    padding-inline: var(--m-pad);
  }

  body.m-chrome-only .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: var(--m-pad) !important;
  }
}
